Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=65dc8145711d1c20aecbb1a8a4a518f7c68611b8
Commit:     65dc8145711d1c20aecbb1a8a4a518f7c68611b8
Parent:     1ed6d896de3a57bdfb38cffaa748612f112c2a75
Author:     Michael Halcrow <[EMAIL PROTECTED]>
AuthorDate: Wed Feb 28 20:12:57 2007 -0800
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Thu Mar 1 14:53:38 2007 -0800

    [PATCH] eCryptfs: no path_release() after path_lookup() error
    
    Dmitriy Monakhov wrote:
    > if path_lookup() return non zero code we don't have to worry about
    > 'nd' parameter, but ecryptfs_read_super does path_release(&nd) after
    > path_lookup has failed, and dentry counter becomes negative
    
    Do not do a path_release after a path_lookup error.
    
    Signed-off-by: Michael Halcrow <[EMAIL PROTECTED]>
    Cc: Dmitriy Monakhov <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 fs/ecryptfs/main.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/fs/ecryptfs/main.c b/fs/ecryptfs/main.c
index 80044d1..812427e 100644
--- a/fs/ecryptfs/main.c
+++ b/fs/ecryptfs/main.c
@@ -487,7 +487,7 @@ static int ecryptfs_read_super(struct super_block *sb, 
const char *dev_name)
        rc = path_lookup(dev_name, LOOKUP_FOLLOW, &nd);
        if (rc) {
                ecryptfs_printk(KERN_WARNING, "path_lookup() failed\n");
-               goto out_free;
+               goto out;
        }
        lower_root = nd.dentry;
        if (!lower_root->d_inode) {
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to