diff --git a/lustre/llite/llite_lib.c b/lustre/llite/llite_lib.c index 3c0c61b1c45667b3c8ac27387cd6b66f2ca0ccef..6b99d14167fffd6d2f66ef3ff2835d177b7a209e 100644 --- a/lustre/llite/llite_lib.c +++ b/lustre/llite/llite_lib.c @@ -1958,9 +1958,19 @@ void ll_umount_begin(struct super_block *sb) /* Really, we'd like to wait until there are no requests outstanding, * and then continue. For now, we just invalidate the requests, - * schedule(), and hope. + * schedule() and sleep one second if needed, and hope. */ schedule(); +#ifdef HAVE_UMOUNTBEGIN_VFSMOUNT + if (atomic_read(&vfsmnt->mnt_count) > 2) { + cfs_schedule_timeout(CFS_TASK_INTERRUPTIBLE, + cfs_time_seconds(1)); + if (atomic_read(&vfsmnt->mnt_count) > 2) + LCONSOLE_WARN("Mount still busy with %d refs! You " + "may try to umount it a bit later\n", + atomic_read(&vfsmnt->mnt_count)); + } +#endif EXIT; }