From ad2abf89c364d5ec73fb12af63b053637d99d757 Mon Sep 17 00:00:00 2001 From: "Richard W.M. Jones" Date: Tue, 7 Dec 2010 16:15:32 +0000 Subject: [PATCH] umount-all: Add udev_settle after unmounting disks. This helps avoid an error on Ubuntu, but it's not clear if this is a real solution or just helps by adjusting the timing of some race condition. --- daemon/mount.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/daemon/mount.c b/daemon/mount.c index ccd07c6..250656a 100644 --- a/daemon/mount.c +++ b/daemon/mount.c @@ -324,6 +324,9 @@ do_umount_all (void) free_stringslen (mounts, size); + /* Without this, lvm_remove_all was failing on Ubuntu. */ + udev_settle (); + /* We've unmounted root now, so ... */ root_mounted = 0; -- 1.8.3.1