Hi Al, Today's linux-next merge of the vfs tree got a conflict in fs/autofs4/expire.c between commit a8985f3ac503b51c5abf8883fc4fb912e13b955c ("autofs4: fix incorrect return in autofs4_mount_busy()") from Linus' tree and commit 552b170bd50157881fc65d1a58ec73b225a2e9bf ("switch follow_down()") from the vfs tree. Just contextual changes. I fixed it up (see below) and can carry the fix as necessary. -- Cheers, Stephen Rothwell sfr@xxxxxxxxxxxxxxxx diff --cc fs/autofs4/expire.c index 3077d8f,f82e42e..0000000 --- a/fs/autofs4/expire.c +++ b/fs/autofs4/expire.c @@@ -70,10 -70,8 +70,10 @@@ static int autofs4_mount_busy(struct vf * Otherwise it's an offset mount and we need to check * if we can umount its mount, if there is one. */ - if (!d_mountpoint(dentry)) { - if (!d_mountpoint(path.dentry)) ++ if (!d_mountpoint(path.dentry)) { + status = 0; goto done; + } } /* Update the expiry counter if fs is busy */ -- To unsubscribe from this list: send the line "unsubscribe linux-next" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html