diff options
author | David Sterba <dsterba@suse.cz> | 2014-02-05 02:37:48 +0100 |
---|---|---|
committer | Chris Mason <clm@fb.com> | 2014-09-17 13:37:09 -0700 |
commit | 57cdc8db21bf9cfa6b2e45310d56e74e263e8609 (patch) | |
tree | fc14cc80a59499fe9ac9f6e9b2aaf1287993e3ea /fs/btrfs/ioctl.c | |
parent | c6f83c74fd647e8e31a9a42a76d895bce4a61a08 (diff) | |
download | linux-57cdc8db21bf9cfa6b2e45310d56e74e263e8609.tar.bz2 |
btrfs: cleanup ino cache members of btrfs_root
The naming is confusing, generic yet used for a specific cache. Add a
prefix 'ino_' or rename appropriately.
Signed-off-by: David Sterba <dsterba@suse.cz>
Signed-off-by: Chris Mason <clm@fb.com>
Diffstat (limited to 'fs/btrfs/ioctl.c')
-rw-r--r-- | fs/btrfs/ioctl.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/btrfs/ioctl.c b/fs/btrfs/ioctl.c index 8a8e29878c34..091c4d35671b 100644 --- a/fs/btrfs/ioctl.c +++ b/fs/btrfs/ioctl.c @@ -2526,9 +2526,9 @@ out_unlock: ASSERT(dest->send_in_progress == 0); /* the last ref */ - if (dest->cache_inode) { - iput(dest->cache_inode); - dest->cache_inode = NULL; + if (dest->ino_cache_inode) { + iput(dest->ino_cache_inode); + dest->ino_cache_inode = NULL; } } out_dput: |