[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <21419.1188489384@redhat.com>
Date: Thu, 30 Aug 2007 16:56:24 +0100
From: David Howells <dhowells@...hat.com>
To: akpm@...l.org
Cc: dhowells@...hat.com, Christoph Hellwig <hch@...radead.org>,
linux-kernel@...r.kernel.org, Andreas Gruenbacher <agruen@...e.de>
Subject: Re: [FIX] mntput called before dput in afs
From: Andreas Gruenbacher <agruen@...e.de>
dput must be called before mntput here. Please consider for 2.6.24 and stable.
Signed-off-by: Andreas Gruenbacher <agruen@...e.de>
Acked-By: David Howells <dhowells@...hat.com>
---
fs/afs/mntpt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
--- a/fs/afs/mntpt.c
+++ b/fs/afs/mntpt.c
@@ -235,8 +235,8 @@ static void *afs_mntpt_follow_link(struc
err = do_add_mount(newmnt, nd, MNT_SHRINKABLE, &afs_vfsmounts);
switch (err) {
case 0:
- mntput(nd->mnt);
dput(nd->dentry);
+ mntput(nd->mnt);
nd->mnt = newmnt;
nd->dentry = dget(newmnt->mnt_root);
schedule_delayed_work(&afs_mntpt_expiry_timer,
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists