Skip to content

Commit

Permalink
btrfs: take the last remnants of ->d_fsdata use out
Browse files Browse the repository at this point in the history
[spotted while going through ->d_fsdata handling around d_splice_alias();
don't really care which tree that goes through]

The only thing even looking at ->d_fsdata in there (since 2012)
had been kfree(dentry->d_fsdata) in btrfs_dentry_delete().  Which,
incidentally, is all btrfs_dentry_delete() does.

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Reviewed-by: David Sterba <dsterba@suse.com>
Signed-off-by: David Sterba <dsterba@suse.com>
  • Loading branch information
Al Viro authored and David Sterba committed May 28, 2018
1 parent 75cb857 commit 7a1b1e7
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions fs/btrfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -6045,11 +6045,6 @@ static int btrfs_dentry_delete(const struct dentry *dentry)
return 0;
}

static void btrfs_dentry_release(struct dentry *dentry)
{
kfree(dentry->d_fsdata);
}

static struct dentry *btrfs_lookup(struct inode *dir, struct dentry *dentry,
unsigned int flags)
{
Expand Down Expand Up @@ -10844,5 +10839,4 @@ static const struct inode_operations btrfs_symlink_inode_operations = {

const struct dentry_operations btrfs_dentry_operations = {
.d_delete = btrfs_dentry_delete,
.d_release = btrfs_dentry_release,
};

0 comments on commit 7a1b1e7

Please sign in to comment.