diff options
author | Christoph Hellwig <hch@lst.de> | 2019-06-29 04:27:28 +0200 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-06-29 04:27:28 +0200 |
commit | 8124b9b6011d0c9c0021e827861168291bbebb55 (patch) | |
tree | 9c4f5fcc2a7ec7c8885cea864f945001cda2e9fc /fs/xfs/xfs_buf.h | |
parent | xfs: properly type the b_log_item field in struct xfs_buf (diff) | |
download | linux-8124b9b6011d0c9c0021e827861168291bbebb55.tar.xz linux-8124b9b6011d0c9c0021e827861168291bbebb55.zip |
xfs: remove the b_io_length field in struct xfs_buf
This field is now always idential to b_length.
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Diffstat (limited to 'fs/xfs/xfs_buf.h')
-rw-r--r-- | fs/xfs/xfs_buf.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/xfs/xfs_buf.h b/fs/xfs/xfs_buf.h index b4a3648b4502..d70374c365e2 100644 --- a/fs/xfs/xfs_buf.h +++ b/fs/xfs/xfs_buf.h @@ -158,7 +158,6 @@ typedef struct xfs_buf { struct xfs_buf_map *b_maps; /* compound buffer map */ struct xfs_buf_map __b_map; /* inline compound buffer map */ int b_map_count; - int b_io_length; /* IO size in BBs */ atomic_t b_pin_count; /* pin count */ atomic_t b_io_remaining; /* #outstanding I/O requests */ unsigned int b_page_count; /* size of page array */ |