diff options
author | Brian Behlendorf <[email protected]> | 2017-03-07 19:21:37 -0500 |
---|---|---|
committer | Brian Behlendorf <[email protected]> | 2017-03-10 09:51:33 -0800 |
commit | 0037b49e833a7073bee0ef3f6680f330f727769e (patch) | |
tree | 24404e9e670d391e7821cb14be839b8ed6dd37d7 /include/sys/zfs_rlock.h | |
parent | ef1bdf363c021525c1db9630647dea73498c6bfd (diff) |
Rename zfs_sb_t -> zfsvfs_t
The use of zfs_sb_t instead of zfsvfs_t results in unnecessary
conflicts with the upstream source. Change all instances of
zfs_sb_t to zfsvfs_t including updating the variables names.
Whenever possible the code was updated to be consistent with
hope it appears in the upstream OpenZFS source.
Signed-off-by: Brian Behlendorf <[email protected]>
Diffstat (limited to 'include/sys/zfs_rlock.h')
-rw-r--r-- | include/sys/zfs_rlock.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/zfs_rlock.h b/include/sys/zfs_rlock.h index 5373f0d57..8483b4e8b 100644 --- a/include/sys/zfs_rlock.h +++ b/include/sys/zfs_rlock.h @@ -50,7 +50,7 @@ typedef struct zfs_rlock { avl_tree_t zr_avl; /* avl tree of range locks */ uint64_t *zr_size; /* points to znode->z_size */ uint_t *zr_blksz; /* points to znode->z_blksz */ - uint64_t *zr_max_blksz; /* points to zsb->z_max_blksz */ + uint64_t *zr_max_blksz; /* points to zfsvfs->z_max_blksz */ } zfs_rlock_t; typedef struct rl { |