Skip to content

Commit

Permalink
Btrfs: delete unused function: btrfs_invalidate_dcache_root
Browse files Browse the repository at this point in the history
Snapshot and subvolume creation no longer need this helper.

Signed-off-by: Chris Mason <chris.mason@oracle.com>
  • Loading branch information
Chris Mason committed Dec 2, 2008
1 parent 607d432 commit 4022abf
Showing 1 changed file with 0 additions and 25 deletions.
25 changes: 0 additions & 25 deletions fs/btrfs/inode.c
Original file line number Diff line number Diff line change
Expand Up @@ -4358,31 +4358,6 @@ static void btrfs_truncate(struct inode *inode)
btrfs_btree_balance_dirty(root, nr);
}

/*
* Invalidate a single dcache entry at the root of the filesystem.
* Needed after creation of snapshot or subvolume.
*/
static void btrfs_invalidate_dcache_root(struct inode *dir,
char *name, int namelen)
{
struct dentry *alias, *entry;
struct qstr qstr;

alias = d_find_alias(dir);
if (alias) {
qstr.name = name;
qstr.len = namelen;
/* change me if btrfs ever gets a d_hash operation */
qstr.hash = full_name_hash(qstr.name, qstr.len);
entry = d_lookup(alias, &qstr);
dput(alias);
if (entry) {
d_invalidate(entry);
dput(entry);
}
}
}

/*
* create a new subvolume directory/inode (helper for the ioctl).
*/
Expand Down

0 comments on commit 4022abf

Please sign in to comment.