Skip to content

Commit 67cf4b0

Browse files
Ye Binintel-lab-lkp
authored andcommitted
ext4: fix bug_on in ext4_writepages
we got issue as follows: EXT4-fs error (device loop0): ext4_mb_generate_buddy:1141: group 0, block bitmap and bg descriptor inconsistent: 25 vs 31513 free cls ------------[ cut here ]------------ kernel BUG at fs/ext4/inode.c:2708! invalid opcode: 0000 [#1] PREEMPT SMP KASAN PTI CPU: 2 PID: 2147 Comm: rep Not tainted 5.18.0-rc2-next-20220413+ torvalds#155 RIP: 0010:ext4_writepages+0x1977/0x1c10 RSP: 0018:ffff88811d3e7880 EFLAGS: 00010246 RAX: 0000000000000000 RBX: 0000000000000001 RCX: ffff88811c098000 RDX: 0000000000000000 RSI: ffff88811c098000 RDI: 0000000000000002 RBP: ffff888128140f50 R08: ffffffffb1ff6387 R09: 0000000000000000 R10: 0000000000000007 R11: ffffed10250281ea R12: 0000000000000001 R13: 00000000000000a4 R14: ffff88811d3e7bb8 R15: ffff888128141028 FS: 00007f443aed9740(0000) GS:ffff8883aef00000(0000) knlGS:0000000000000000 CS: 0010 DS: 0000 ES: 0000 CR0: 0000000080050033 CR2: 0000000020007200 CR3: 000000011c2a4000 CR4: 00000000000006e0 DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000 DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400 Call Trace: <TASK> do_writepages+0x130/0x3a0 filemap_fdatawrite_wbc+0x83/0xa0 filemap_flush+0xab/0xe0 ext4_alloc_da_blocks+0x51/0x120 __ext4_ioctl+0x1534/0x3210 __x64_sys_ioctl+0x12c/0x170 do_syscall_64+0x3b/0x90 It may happen as follows: 1. write inline_data inode vfs_write new_sync_write ext4_file_write_iter ext4_buffered_write_iter generic_perform_write ext4_da_write_begin ext4_da_write_inline_data_begin -> If inline data size too small will allocate block to write, then mapping will has dirty page ext4_da_convert_inline_data_to_extent ->clear EXT4_STATE_MAY_INLINE_DATA 2. fallocate do_vfs_ioctl ioctl_preallocate vfs_fallocate ext4_fallocate ext4_convert_inline_data ext4_convert_inline_data_nolock ext4_map_blocks -> fail will goto restore data ext4_restore_inline_data ext4_create_inline_data ext4_write_inline_data ext4_set_inode_state -> set inode EXT4_STATE_MAY_INLINE_DATA 3. writepages __ext4_ioctl ext4_alloc_da_blocks filemap_flush filemap_fdatawrite_wbc do_writepages ext4_writepages if (ext4_has_inline_data(inode)) BUG_ON(ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA)) To solved this issue, record origin 'EXT4_STATE_MAY_INLINE_DATA' flag, then pass value to 'ext4_restore_inline_data', 'ext4_restore_inline_data' will decide to if recovery 'EXT4_STATE_MAY_INLINE_DATA' flag according to parameter. Signed-off-by: Ye Bin <[email protected]>
1 parent bb6ee10 commit 67cf4b0

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

fs/ext4/inline.c

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1122,8 +1122,8 @@ static int ext4_update_inline_dir(handle_t *handle, struct inode *dir,
11221122
}
11231123

11241124
static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
1125-
struct ext4_iloc *iloc,
1126-
void *buf, int inline_size)
1125+
struct ext4_iloc *iloc, void *buf,
1126+
int inline_size, bool has_data)
11271127
{
11281128
int ret;
11291129

@@ -1135,7 +1135,8 @@ static void ext4_restore_inline_data(handle_t *handle, struct inode *inode,
11351135
return;
11361136
}
11371137
ext4_write_inline_data(inode, iloc, buf, 0, inline_size);
1138-
ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1138+
if (has_data)
1139+
ext4_set_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
11391140
}
11401141

11411142
static int ext4_finish_convert_inline_dir(handle_t *handle,
@@ -1191,6 +1192,7 @@ static int ext4_convert_inline_data_nolock(handle_t *handle,
11911192
struct buffer_head *data_bh = NULL;
11921193
struct ext4_map_blocks map;
11931194
int inline_size;
1195+
bool has_data;
11941196

11951197
inline_size = ext4_get_inline_size(inode);
11961198
buf = kmalloc(inline_size, GFP_NOFS);
@@ -1219,6 +1221,8 @@ static int ext4_convert_inline_data_nolock(handle_t *handle,
12191221
if (error)
12201222
goto out;
12211223

1224+
has_data = !!ext4_test_inode_state(inode, EXT4_STATE_MAY_INLINE_DATA);
1225+
12221226
map.m_lblk = 0;
12231227
map.m_len = 1;
12241228
map.m_flags = 0;
@@ -1259,7 +1263,8 @@ static int ext4_convert_inline_data_nolock(handle_t *handle,
12591263
unlock_buffer(data_bh);
12601264
out_restore:
12611265
if (error)
1262-
ext4_restore_inline_data(handle, inode, iloc, buf, inline_size);
1266+
ext4_restore_inline_data(handle, inode, iloc, buf,
1267+
inline_size, has_data);
12631268

12641269
out:
12651270
brelse(data_bh);

0 commit comments

Comments
 (0)