From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Kent Subject: [PATCH] autofs4 - fix missed case when changing to use struct path Date: Tue, 01 Sep 2009 11:26:22 +0800 Message-ID: <20090901032622.27252.19646.stgit@zeus.themaw.net> Mime-Version: 1.0 Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit Cc: autofs mailing list , linux-fsdevel , Kernel Mailing List , Al Viro , aaron@merfinllc.com, stefan@farestam.net To: Linus Torvalds , Andrew Morton Return-path: Received: from outbound.icp-qv1-irony-out1.iinet.net.au ([203.59.1.106]:30569 "EHLO outbound.icp-qv1-irony-out1.iinet.net.au" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751279AbZIAD0Y (ORCPT ); Mon, 31 Aug 2009 23:26:24 -0400 Sender: linux-fsdevel-owner@vger.kernel.org List-ID: In the recent change by Al Viro that changes verious subsystems to use "struct path" one case was missed in the autofs4 module which causes mounts to no longer expire. Signed-off-by: Ian Kent --- fs/autofs4/expire.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/fs/autofs4/expire.c b/fs/autofs4/expire.c index aa39ae8..3da18d4 100644 --- a/fs/autofs4/expire.c +++ b/fs/autofs4/expire.c @@ -77,7 +77,7 @@ static int autofs4_mount_busy(struct vfsmount *mnt, struct dentry *dentry) } /* Update the expiry counter if fs is busy */ - if (!may_umount_tree(mnt)) { + if (!may_umount_tree(path.mnt)) { struct autofs_info *ino = autofs4_dentry_ino(top); ino->last_used = jiffies; goto done;