fix double-lock

Signed-off-by: Brian Goff <cpuguy83@gmail.com>
Upstream-commit: e386dfc33fc1fd5ed06496bd19f01a37c3c46341
Component: engine
This commit is contained in:
Brian Goff
2016-02-27 09:49:21 -05:00
parent f76950a71a
commit a63e28ad6f
2 changed files with 1 additions and 3 deletions
@@ -288,9 +288,7 @@ func (a *Driver) Remove(id string) error {
return err
}
if m != nil {
a.Lock()
delete(a.active, id)
a.Unlock()
}
return nil
}
@@ -12,7 +12,7 @@ import (
// Unmount the target specified.
func Unmount(target string) error {
if err := exec.Command("auplink", target, "flush").Run(); err != nil {
logrus.Errorf("Couldn't run auplink before unmount: %s", err)
logrus.Errorf("Couldn't run auplink before unmount %s: %s", target, err)
}
if err := syscall.Unmount(target, 0); err != nil {
return err