aboutsummaryrefslogtreecommitdiffstats
path: root/fs/btrfs/ioctl.c
diff options
context:
space:
mode:
authorDavid Sterba <dsterba@suse.cz>2014-02-04 20:37:48 -0500
committerChris Mason <clm@fb.com>2014-09-17 16:37:09 -0400
commit57cdc8db21bf9cfa6b2e45310d56e74e263e8609 (patch)
treefc14cc80a59499fe9ac9f6e9b2aaf1287993e3ea /fs/btrfs/ioctl.c
parentc6f83c74fd647e8e31a9a42a76d895bce4a61a08 (diff)
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.c6
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:
2526 ASSERT(dest->send_in_progress == 0); 2526 ASSERT(dest->send_in_progress == 0);
2527 2527
2528 /* the last ref */ 2528 /* the last ref */
2529 if (dest->cache_inode) { 2529 if (dest->ino_cache_inode) {
2530 iput(dest->cache_inode); 2530 iput(dest->ino_cache_inode);
2531 dest->cache_inode = NULL; 2531 dest->ino_cache_inode = NULL;
2532 } 2532 }
2533 } 2533 }
2534out_dput: 2534out_dput: