* [PATCH 1/2] ext4: commit inline data during fast commit
@ 2021-10-15 18:25 Harshad Shirwadkar
2021-10-15 18:25 ` [PATCH 2/2] ext4: inline data inode fast commit replay fixes Harshad Shirwadkar
2021-11-04 14:44 ` [PATCH 1/2] ext4: commit inline data during fast commit Theodore Ts'o
0 siblings, 2 replies; 3+ messages in thread
From: Harshad Shirwadkar @ 2021-10-15 18:25 UTC (permalink / raw)
To: linux-ext4; +Cc: Harshad Shirwadkar
From: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
During the commit phase in fast commits if an inode with inline data
is being committed, also commit the inline data along with
inode. Since recovery code just blindly copies entire content found in
inode TLV, there is no change needed on the recovery path. Thus, this
change is backward compatiable.
Signed-off-by: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
---
fs/ext4/fast_commit.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/fs/ext4/fast_commit.c b/fs/ext4/fast_commit.c
index 8ea5a81e6554..744b000d9756 100644
--- a/fs/ext4/fast_commit.c
+++ b/fs/ext4/fast_commit.c
@@ -819,7 +819,9 @@ static int ext4_fc_write_inode(struct inode *inode, u32 *crc)
if (ret)
return ret;
- if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE)
+ if (ext4_test_inode_flag(inode, EXT4_INODE_INLINE_DATA))
+ inode_len = EXT4_INODE_SIZE(inode->i_sb);
+ else if (EXT4_INODE_SIZE(inode->i_sb) > EXT4_GOOD_OLD_INODE_SIZE)
inode_len += ei->i_extra_isize;
fc_inode.fc_ino = cpu_to_le32(inode->i_ino);
--
2.33.0.882.g93a45727a2-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [PATCH 2/2] ext4: inline data inode fast commit replay fixes
2021-10-15 18:25 [PATCH 1/2] ext4: commit inline data during fast commit Harshad Shirwadkar
@ 2021-10-15 18:25 ` Harshad Shirwadkar
2021-11-04 14:44 ` [PATCH 1/2] ext4: commit inline data during fast commit Theodore Ts'o
1 sibling, 0 replies; 3+ messages in thread
From: Harshad Shirwadkar @ 2021-10-15 18:25 UTC (permalink / raw)
To: linux-ext4; +Cc: Harshad Shirwadkar
From: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
Since there are no blocks in an inline data inode, there's no point in
fixing iblocks field in fast commit replay path for this inode.
Similarly, there's no point in fixing any block bitmaps / global block
counters with respect to such an inode. Just bail out from these
functions if an inline data inode is encountered.
Signed-off-by: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
---
fs/ext4/extents.c | 3 +++
fs/ext4/fast_commit.c | 7 ++++++-
2 files changed, 9 insertions(+), 1 deletion(-)
diff --git a/fs/ext4/extents.c b/fs/ext4/extents.c
index 09f56e04f4b2..0ecf819bf189 100644
--- a/fs/ext4/extents.c
+++ b/fs/ext4/extents.c
@@ -6071,6 +6071,9 @@ int ext4_ext_clear_bb(struct inode *inode)
int j, ret = 0;
struct ext4_map_blocks map;
+ if (ext4_test_inode_flag(inode, EXT4_INODE_INLINE_DATA))
+ return 0;
+
/* Determin the size of the file first */
path = ext4_find_extent(inode, EXT_MAX_BLOCKS - 1, NULL,
EXT4_EX_NOCACHE);
diff --git a/fs/ext4/fast_commit.c b/fs/ext4/fast_commit.c
index 744b000d9756..0f32b445582a 100644
--- a/fs/ext4/fast_commit.c
+++ b/fs/ext4/fast_commit.c
@@ -1526,7 +1526,8 @@ static int ext4_fc_replay_inode(struct super_block *sb, struct ext4_fc_tl *tl,
* crashing. This should be fixed but until then, we calculate
* the number of blocks the inode.
*/
- ext4_ext_replay_set_iblocks(inode);
+ if (!ext4_test_inode_flag(inode, EXT4_INODE_INLINE_DATA))
+ ext4_ext_replay_set_iblocks(inode);
inode->i_generation = le32_to_cpu(ext4_raw_inode(&iloc)->i_generation);
ext4_reset_inode_seed(inode);
@@ -1844,6 +1845,10 @@ static void ext4_fc_set_bitmaps_and_counters(struct super_block *sb)
}
cur = 0;
end = EXT_MAX_BLOCKS;
+ if (ext4_test_inode_flag(inode, EXT4_INODE_INLINE_DATA)) {
+ iput(inode);
+ continue;
+ }
while (cur < end) {
map.m_lblk = cur;
map.m_len = end - cur;
--
2.33.0.882.g93a45727a2-goog
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/2] ext4: commit inline data during fast commit
2021-10-15 18:25 [PATCH 1/2] ext4: commit inline data during fast commit Harshad Shirwadkar
2021-10-15 18:25 ` [PATCH 2/2] ext4: inline data inode fast commit replay fixes Harshad Shirwadkar
@ 2021-11-04 14:44 ` Theodore Ts'o
1 sibling, 0 replies; 3+ messages in thread
From: Theodore Ts'o @ 2021-11-04 14:44 UTC (permalink / raw)
To: Harshad Shirwadkar, linux-ext4; +Cc: Theodore Ts'o
On Fri, 15 Oct 2021 11:25:12 -0700, Harshad Shirwadkar wrote:
> From: Harshad Shirwadkar <harshadshirwadkar@gmail.com>
>
> During the commit phase in fast commits if an inode with inline data
> is being committed, also commit the inline data along with
> inode. Since recovery code just blindly copies entire content found in
> inode TLV, there is no change needed on the recovery path. Thus, this
> change is backward compatiable.
>
> [...]
Applied, thanks!
[1/2] ext4: commit inline data during fast commit
commit: 6c31a689b2e9e1dee5cbe16b773648a2d84dfb02
[2/2] ext4: inline data inode fast commit replay fixes
commit: 1ebf21784b19d5bc269f39a5d1eedb7f29a7d152
Best regards,
--
Theodore Ts'o <tytso@mit.edu>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2021-11-04 14:44 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2021-10-15 18:25 [PATCH 1/2] ext4: commit inline data during fast commit Harshad Shirwadkar
2021-10-15 18:25 ` [PATCH 2/2] ext4: inline data inode fast commit replay fixes Harshad Shirwadkar
2021-11-04 14:44 ` [PATCH 1/2] ext4: commit inline data during fast commit Theodore Ts'o
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).