Merge pull request #1730 from dmcgowan/fix-usage-deadlock
Fix deadlock in overlay snapshotter
This commit is contained in:
commit
4701e122fe
@ -124,12 +124,13 @@ func (o *snapshotter) Usage(ctx context.Context, key string) (snapshot.Usage, er
|
|||||||
return snapshot.Usage{}, err
|
return snapshot.Usage{}, err
|
||||||
}
|
}
|
||||||
id, info, usage, err := storage.GetInfo(ctx, key)
|
id, info, usage, err := storage.GetInfo(ctx, key)
|
||||||
|
t.Rollback() // transaction no longer needed at this point.
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return snapshot.Usage{}, err
|
return snapshot.Usage{}, err
|
||||||
}
|
}
|
||||||
|
|
||||||
upperPath := o.upperPath(id)
|
upperPath := o.upperPath(id)
|
||||||
t.Rollback() // transaction no longer needed at this point.
|
|
||||||
|
|
||||||
if info.Kind == snapshot.KindActive {
|
if info.Kind == snapshot.KindActive {
|
||||||
du, err := fs.DiskUsage(upperPath)
|
du, err := fs.DiskUsage(upperPath)
|
||||||
|
Loading…
Reference in New Issue
Block a user