From 634fe87761add032fc5840edb6eac53ea4f019a5 Mon Sep 17 00:00:00 2001 From: Csaba Henk Date: Sun, 3 Feb 2008 20:13:32 +0000 Subject: [PATCH] lib/mount_bsd.c: get rid of all the hacks, we really need nothing just a forced unmount --- lib/mount_bsd.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/lib/mount_bsd.c b/lib/mount_bsd.c index 2e8c96f..c186ffc 100644 --- a/lib/mount_bsd.c +++ b/lib/mount_bsd.c @@ -235,17 +235,7 @@ static void do_unmount(char *dev, int fd) if (pid == -1) return; - if (pid) { - char c; - - /* - * This will get us banned by the kernel so if - * unmount(2) is waiting for us (ie., for an answer - * to DESTROY), then it will be interrupted and can - * go on. - */ - read(fd, &c, 1); - } else { + if (pid == 0) { close(fd); execvp(umount_cmd, (char **)argv); exit(1); -- 2.30.2