diff options
author | Allison Henderson <allison.henderson@oracle.com> | 2022-05-11 17:01:22 +1000 |
---|---|---|
committer | Dave Chinner <david@fromorbit.com> | 2022-05-11 17:01:22 +1000 |
commit | 535e2f75c4e377e6ccc9d4396695b516d118f8f0 (patch) | |
tree | 2d4aa30293fab2ab22e82c01e73e39da8c33e5cb /fs/xfs/xfs_sysctl.h | |
parent | abd61ca3c333506ffa4ee73b78659ab57e7efcf7 (diff) | |
download | linux-535e2f75c4e377e6ccc9d4396695b516d118f8f0.tar.bz2 |
xfs: Add larp debug option
This patch adds a debug option to enable log attribute replay. Eventually
this can be removed when delayed attrs becomes permanent.
Signed-off-by: Allison Henderson <allison.henderson@oracle.com>
Reviewed-by: Chandan Babu R <chandanrlinux@gmail.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Dave Chinner <david@fromorbit.com>
Diffstat (limited to 'fs/xfs/xfs_sysctl.h')
-rw-r--r-- | fs/xfs/xfs_sysctl.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_sysctl.h b/fs/xfs/xfs_sysctl.h index 7692e76ead33..f78ad6b10ea5 100644 --- a/fs/xfs/xfs_sysctl.h +++ b/fs/xfs/xfs_sysctl.h @@ -83,6 +83,7 @@ extern xfs_param_t xfs_params; struct xfs_globals { #ifdef DEBUG int pwork_threads; /* parallel workqueue threads */ + bool larp; /* log attribute replay */ #endif int log_recovery_delay; /* log recovery delay (secs) */ int mount_delay; /* mount setup delay (secs) */ |