f2fs-tools: fix mkfs.f2fs on big-endian systems
[openwrt/openwrt.git] / package / utils / f2fs-tools / patches / 100-f2fs-WARNING-at-fs-f2fs-segment.c-718-update_sit_ent.patch
1 From 31873d5cdf8a97d5f7921451c54f6d293293c6cc Mon Sep 17 00:00:00 2001
2 From: Jaegeuk Kim <jaegeuk@kernel.org>
3 Date: Wed, 23 Aug 2017 13:33:00 -0700
4 Subject: [PATCH] mkfs.f2fs: fix missing cpu_to_le64 for checkpoint version
5
6 The error on mips was reported by Stijn as follow.
7
8 Commit 8399a29df92d6867d226df362edbf2e0efa527c1 in f2fs-tools
9 ("mkfs.f2fs: give random checkpoint version") causes a bug when mounting
10 a filesystem created with it on a MIPS64 device running a 4.4(.83)
11 kernel. The following kernel warning appears several times per second,
12 for 30 seconds:
13
14 [ 23.837262] ------------[ cut here ]------------
15 [ 23.842039] WARNING: CPU: 0 PID: 935 at fs/f2fs/segment.c:718
16 update_sit_entry+0x1c0/0x2b0()
17 [ 23.850507] Modules linked in: pppoe ppp_async l2tp_ppp iptable_nat
18 [ 24.174064] Call Trace:
19 [ 24.176527] [<ffffffff81126e14>] show_stack+0x68/0xb4
20 [ 24.181595] [<ffffffff81321fc4>] dump_stack+0x8c/0xc4
21 [ 24.186660] [<ffffffff8113d004>] warn_slowpath_common+0xa0/0xd0
22 [ 24.192597] [<ffffffff812e0148>] update_sit_entry+0x1c0/0x2b0
23 [ 24.198353] [<ffffffff812e0a70>] refresh_sit_entry+0x70/0xf8
24 [ 24.204022] [<ffffffff812e251c>] allocate_data_block+0x1f0/0x310
25 [ 24.210038] [<ffffffff812e28d8>] do_write_page+0x29c/0x2bc
26 [ 24.215532] [<ffffffff812e2a88>] write_data_page+0xa0/0xd8
27 [ 24.221028] [<ffffffff812d844c>] do_write_data_page+0xe4/0x384
28 [ 24.226870] [<ffffffff812d88f4>] f2fs_write_data_page+0x208/0x464
29 [ 24.232972] [<ffffffff812d5184>] __f2fs_writepage+0x1c/0x74
30 [ 24.238553] [<ffffffff812d54dc>]
31 f2fs_write_cache_pages.constprop.7+0x250/0x394
32 [ 24.245869] [<ffffffff812d57f4>] f2fs_write_data_pages+0x130/0x1b0
33 [ 24.252066] [<ffffffff811a9f80>] __filemap_fdatawrite_range+0xa0/0xd4
34 [ 24.258515] [<ffffffff812d2338>] sync_dirty_dir_inodes+0x94/0xd8
35 [ 24.264530] [<ffffffff812d2484>] write_checkpoint+0x108/0xb9c
36 [ 24.270283] [<ffffffff812cc398>] f2fs_sync_fs+0x68/0xb0
37 [ 24.275526] [<ffffffff812c641c>] f2fs_sync_file+0x2e8/0x518
38 [ 24.281107] [<ffffffff81213ff4>] do_fsync+0x38/0x70
39 [ 24.285992] [<ffffffff812142e8>] SyS_fsync+0x14/0x20
40 [ 24.290972] [<ffffffff81103950>] syscall_common+0x34/0x58
41 [ 24.296372]
42 [ 24.298096] ---[ end trace fd3ac44449b218ab ]---
43
44 Fix: 8399a29df92d68 ("mkfs.f2fs: give random checkpoint version")
45 Reported-And-Tested-by: Stijn Tintel <stijn@linux-ipv6.be>
46 Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
47 ---
48 mkfs/f2fs_format.c | 2 +-
49 1 file changed, 1 insertion(+), 1 deletion(-)
50
51 diff --git a/mkfs/f2fs_format.c b/mkfs/f2fs_format.c
52 index 92876b8..b379e80 100644
53 --- a/mkfs/f2fs_format.c
54 +++ b/mkfs/f2fs_format.c
55 @@ -546,7 +546,7 @@ static int f2fs_write_check_point_pack(void)
56 }
57
58 /* 1. cp page 1 of checkpoint pack 1 */
59 - cp->checkpoint_ver = rand() | 0x1;
60 + cp->checkpoint_ver = cpu_to_le64(rand() | 0x1);
61 set_cp(cur_node_segno[0], c.cur_seg[CURSEG_HOT_NODE]);
62 set_cp(cur_node_segno[1], c.cur_seg[CURSEG_WARM_NODE]);
63 set_cp(cur_node_segno[2], c.cur_seg[CURSEG_COLD_NODE]);
64 --
65 2.13.5
66