diff options
| author | Harshad Shirwadkar <[email protected]> | 2020-10-15 20:37:55 +0000 |
|---|---|---|
| committer | Theodore Ts'o <[email protected]> | 2020-10-22 03:22:26 +0000 |
| commit | 6866d7b3f2bb4f011041ba54c98b1584497fe2fd (patch) | |
| tree | 4ae01bbb3dc62134eaaea5e8324da97bcb117224 /fs/ext4/fast_commit.h | |
| parent | ext4: add fast_commit feature and handling for extended mount options (diff) | |
| download | kernel-6866d7b3f2bb4f011041ba54c98b1584497fe2fd.tar.gz kernel-6866d7b3f2bb4f011041ba54c98b1584497fe2fd.zip | |
ext4 / jbd2: add fast commit initialization
This patch adds fast commit area trackers in the journal_t
structure. These are initialized via the jbd2_fc_init() routine that
this patch adds. This patch also adds ext4/fast_commit.c and
ext4/fast_commit.h files for fast commit code that will be added in
subsequent patches in this series.
Reported-by: kernel test robot <[email protected]>
Signed-off-by: Harshad Shirwadkar <[email protected]>
Link: https://lore.kernel.org/r/[email protected]
Signed-off-by: Theodore Ts'o <[email protected]>
Diffstat (limited to 'fs/ext4/fast_commit.h')
| -rw-r--r-- | fs/ext4/fast_commit.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/fs/ext4/fast_commit.h b/fs/ext4/fast_commit.h new file mode 100644 index 000000000000..8362bf5e6e00 --- /dev/null +++ b/fs/ext4/fast_commit.h @@ -0,0 +1,9 @@ +/* SPDX-License-Identifier: GPL-2.0 */ + +#ifndef __FAST_COMMIT_H__ +#define __FAST_COMMIT_H__ + +/* Number of blocks in journal area to allocate for fast commits */ +#define EXT4_NUM_FC_BLKS 256 + +#endif /* __FAST_COMMIT_H__ */ |
