efivarfs: Drop link count of the right inode
authorLingzhu Xiang <lxiang@redhat.com>
Sat, 5 Jan 2013 05:59:52 +0000 (13:59 +0800)
committerMatt Fleming <matt.fleming@intel.com>
Fri, 18 Jan 2013 09:43:43 +0000 (09:43 +0000)
efivarfs_unlink() should drop the file's link count, not the directory's.

Signed-off-by: Lingzhu Xiang <lxiang@redhat.com>
Cc: Jeremy Kerr <jeremy.kerr@canonical.com>
Tested-by: Lee, Chun-Yi <jlee@suse.com>
Signed-off-by: Matt Fleming <matt.fleming@intel.com>
drivers/firmware/efivars.c

index 7b1c374..fa9fa03 100644 (file)
@@ -994,7 +994,7 @@ static int efivarfs_unlink(struct inode *dir, struct dentry *dentry)
                list_del(&var->list);
                spin_unlock(&efivars->lock);
                efivar_unregister(var);
-               drop_nlink(dir);
+               drop_nlink(dentry->d_inode);
                dput(dentry);
                return 0;
        }