diff options
| author | Darrick J. Wong <[email protected]> | 2024-11-21 00:20:50 +0000 |
|---|---|---|
| committer | Darrick J. Wong <[email protected]> | 2024-12-23 21:06:11 +0000 |
| commit | fd9300679ccec20c6ee1b95458ab0bcf0db628d5 (patch) | |
| tree | fd0547e1a2d1bfb43bc63046ea90d239acc505ec /fs/xfs/xfs_log_recover.c | |
| parent | xfs: prepare refcount functions to deal with rtrefcountbt (diff) | |
| download | kernel-fd9300679ccec20c6ee1b95458ab0bcf0db628d5.tar.gz kernel-fd9300679ccec20c6ee1b95458ab0bcf0db628d5.zip | |
xfs: add a realtime flag to the refcount update log redo items
Extend the refcount update (CUI) log items with a new realtime flag that
indicates that the updates apply against the realtime refcountbt. We'll
wire up the actual refcount code later.
Signed-off-by: "Darrick J. Wong" <[email protected]>
Reviewed-by: Christoph Hellwig <[email protected]>
Diffstat (limited to 'fs/xfs/xfs_log_recover.c')
| -rw-r--r-- | fs/xfs/xfs_log_recover.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/fs/xfs/xfs_log_recover.c b/fs/xfs/xfs_log_recover.c index 5c95c97519c7..b3c27dbccce8 100644 --- a/fs/xfs/xfs_log_recover.c +++ b/fs/xfs/xfs_log_recover.c @@ -1822,6 +1822,8 @@ static const struct xlog_recover_item_ops *xlog_recover_item_ops[] = { &xlog_rtefd_item_ops, &xlog_rtrui_item_ops, &xlog_rtrud_item_ops, + &xlog_rtcui_item_ops, + &xlog_rtcud_item_ops, }; static const struct xlog_recover_item_ops * |
