The patch titled autofs4: autofs4_follow_link false negative fix has been added to the -mm tree. Its filename is autofs4-autofs4_follow_link-false-negative-fix.patch See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: autofs4: autofs4_follow_link false negative fix From: Ian Kent <raven@xxxxxxxxxx> The check for an empty directory in the autofs4_follow_link method fails occassionally due to old dentrys. We had the same problem autofs4_revalidate ages ago. I thought we wouldn't need this in autofs4_follow_link, silly me. Signed-off-by: Ian Kent <raven@xxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxx> --- fs/autofs4/root.c | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN fs/autofs4/root.c~autofs4-autofs4_follow_link-false-negative-fix fs/autofs4/root.c --- a/fs/autofs4/root.c~autofs4-autofs4_follow_link-false-negative-fix +++ a/fs/autofs4/root.c @@ -359,7 +359,7 @@ static void *autofs4_follow_link(struct * don't try to mount it again. */ spin_lock(&dcache_lock); - if (!d_mountpoint(dentry) && list_empty(&dentry->d_subdirs)) { + if (!d_mountpoint(dentry) && __simple_empty(dentry)) { spin_unlock(&dcache_lock); status = try_to_fill_dentry(dentry, 0); _ Patches currently in -mm which might be from raven@xxxxxxxxxx are autofs4-needs-to-force-fail-return-revalidate.patch autofs4-autofs4_follow_link-false-negative-fix.patch autofs4-pending-flag-not-cleared-on-mount-fail.patch autofs-make-sure-all-dentries-refs-are-released-before-calling-kill_anon_super.patch vfs-destroy-the-dentries-contributed-by-a-superblock-on-unmounting.patch fs-kconfig-split-autofs.patch fs-kconfig-split-autofs4.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html