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_globals.c | |
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_globals.c')
-rw-r--r-- | fs/xfs/xfs_globals.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/xfs/xfs_globals.c b/fs/xfs/xfs_globals.c index f62fa652c2fd..4d0a98f920ca 100644 --- a/fs/xfs/xfs_globals.c +++ b/fs/xfs/xfs_globals.c @@ -41,5 +41,6 @@ struct xfs_globals xfs_globals = { #endif #ifdef DEBUG .pwork_threads = -1, /* automatic thread detection */ + .larp = false, /* log attribute replay */ #endif }; |