diff options
author | Darrick J. Wong <djwong@kernel.org> | 2022-05-27 02:26:17 +0200 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2022-05-27 02:26:17 +0200 |
commit | 2723234923b3294dbcf6019c288c87465e927ed4 (patch) | |
tree | 080ff2f6694a018c22c937f3a3753e86d588a6e0 /fs/xfs/xfs_log_priv.h | |
parent | Merge branch 'guilt/xfs-5.19-misc-3' into xfs-5.19-for-next (diff) | |
download | linux-2723234923b3294dbcf6019c288c87465e927ed4.tar.xz linux-2723234923b3294dbcf6019c288c87465e927ed4.zip |
xfs: refactor buffer cancellation table allocation
Move the code that allocates and frees the buffer cancellation tables
used by log recovery into the file that actually uses the tables. This
is a precursor to some cleanups and a memory leak fix.
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_log_priv.h')
-rw-r--r-- | fs/xfs/xfs_log_priv.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/fs/xfs/xfs_log_priv.h b/fs/xfs/xfs_log_priv.h index 67fd9789e69a..686c01eb3661 100644 --- a/fs/xfs/xfs_log_priv.h +++ b/fs/xfs/xfs_log_priv.h @@ -428,9 +428,6 @@ struct xlog { struct rw_semaphore l_incompat_users; }; -#define XLOG_BUF_CANCEL_BUCKET(log, blkno) \ - ((log)->l_buf_cancel_table + ((uint64_t)blkno % XLOG_BC_TABLE_SIZE)) - /* * Bits for operational state */ |