[U-Boot] UBIFS Problems with U-boot 2018.1 & 4.14 Linux

Hi There !
I'm seeing a strange problem with u-boot 2018.1 and Linux 4.14 (Xilinx Petalinux 2018.1). If I write a ubifs image to flash using Linux 4.9 I can mount and read files from the image in both u-boot 2018.1 and Linux 4.14. However as soon as I write a new file to the file-system from Linux, U-boot can no longer read the file. The filesystem still mounts, but when I attempt to read the file I get the following error
UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 661, inode 5763) magic 0x6101831 crc 0x8e6aff1a node_type 1 (data node) group_type 0 (no node group) sqnum 63819 len 3075 key (5763, data, 661) size 4096 compr_typ 1 data size 3027 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 661 of inode 5763, error -22
The file can still be read correctly from Linux, leading me to believe there is some form of incompatibility going on. I noticed that the ubifs version number was bumped from 4 to 5 in this commit
http://git.infradead.org/linux-ubifs.git/commit/fc4b891bbefa73b496bb44b076bb...
Both Linux 4.9 and U-boot 18.1 still have version 4. Could that have something do to with it ?
I'm running on a ZynqMP platform with Micron Flash (On-Die ECC)
Thanks in advance,
/Otto

Hello Otto,
Am 17.05.2018 um 23:12 schrieb Otto Blom:
Hi There !
I'm seeing a strange problem with u-boot 2018.1 and Linux 4.14 (Xilinx Petalinux 2018.1). If I write a ubifs image to flash using Linux 4.9 I can mount and read files from the image in both u-boot 2018.1 and Linux 4.14. However as soon as I write a new file to the file-system from Linux, U-boot can no longer read the file. The filesystem still mounts, but when I attempt to read the file I get the following error
UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 661, inode 5763) magic 0x6101831 crc 0x8e6aff1a node_type 1 (data node) group_type 0 (no node group) sqnum 63819 len 3075 key (5763, data, 661) size 4096 compr_typ 1 data size 3027 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 661 of inode 5763, error -22
err = -EINVAL ...
The file can still be read correctly from Linux, leading me to believe there is some form of incompatibility going on. I noticed that the ubifs version number was bumped from 4 to 5 in this commit
Hmm... looking into fs/ubifs/ubifs.c read_block() it seems code breaks here (line 702 ff):
len = le32_to_cpu(dn->size); if (len <= 0 || len > UBIFS_BLOCK_SIZE) goto dump;
dlen = le32_to_cpu(dn->ch.len) - UBIFS_DATA_NODE_SZ; out_len = UBIFS_BLOCK_SIZE; err = ubifs_decompress(c, &dn->data, dlen, addr, &out_len, le16_to_cpu(dn->compr_type)); if (err || len != out_len) goto dump;
len is 3075 ... so it would be nice to see a printf after ubifs_decompress() call, and print the values from out_len, err, len ...
It seems to me only ubifs_decompress() can fail here ... looking into ubifs_decompress()... Hmm... as we see no ubifs_err output from ubifs_decompress() only the case "len != out_len" can happen in your case ...
You use UBIFS_COMPR_LZO ... may a problem there?
No real idea why ...
http://git.infradead.org/linux-ubifs.git/commit/fc4b891bbefa73b496bb44b076bb...
Both Linux 4.9 and U-boot 18.1 still have version 4. Could that have something do to with it ?
I think not, but may I miss here something...
@Richard: any idea?
I'm running on a ZynqMP platform with Micron Flash (On-Die ECC)
bye, Heiko

Otto, Heiko,
Am Freitag, 18. Mai 2018, 10:44:43 CEST schrieb Heiko Schocher:
Hello Otto,
Am 17.05.2018 um 23:12 schrieb Otto Blom:
Hi There !
I'm seeing a strange problem with u-boot 2018.1 and Linux 4.14 (Xilinx Petalinux 2018.1). If I write a ubifs image to flash using Linux 4.9 I can mount and read files from the image in both u-boot 2018.1 and Linux 4.14. However as soon as I write a new file to the file-system from Linux, U-boot can no longer read the file. The filesystem still mounts, but when I attempt to read the file I get the following error
If you write with Linux 4.14, is Linux 4.9 able to read the file?
UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 661, inode 5763) magic 0x6101831 crc 0x8e6aff1a node_type 1 (data node) group_type 0 (no node group) sqnum 63819 len 3075 key (5763, data, 661) size 4096 compr_typ 1 data size 3027 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 661 of inode 5763, error -22
err = -EINVAL ...
The file can still be read correctly from Linux, leading me to believe there is some form of incompatibility going on. I noticed that the ubifs version number was bumped from 4 to 5 in this commit
Did you create a version 5 filesystem and tried to read it with u-boot?
Hmm... looking into fs/ubifs/ubifs.c read_block() it seems code breaks here (line 702 ff):
len = le32_to_cpu(dn->size); if (len <= 0 || len > UBIFS_BLOCK_SIZE) goto dump; dlen = le32_to_cpu(dn->ch.len) - UBIFS_DATA_NODE_SZ; out_len = UBIFS_BLOCK_SIZE; err = ubifs_decompress(c, &dn->data, dlen, addr, &out_len, le16_to_cpu(dn->compr_type)); if (err || len != out_len) goto dump;
len is 3075 ... so it would be nice to see a printf after ubifs_decompress() call, and print the values from out_len, err, len ...
It seems to me only ubifs_decompress() can fail here ... looking into ubifs_decompress()... Hmm... as we see no ubifs_err output from ubifs_decompress() only the case "len != out_len" can happen in your case ...
You use UBIFS_COMPR_LZO ... may a problem there?
No real idea why ...
http://git.infradead.org/linux-ubifs.git/commit/fc4b891bbefa73b496bb44b076bb...
Both Linux 4.9 and U-boot 18.1 still have version 4. Could that have something do to with it ?
I think not, but may I miss here something...
@Richard: any idea?
Not really. Like you said, I'm interested in len, out_len too. If this also not enlightens us, I'd like to have a dump of the UBIFS.
Thanks, //richard

Hallo Heiko & Richard !
Turns out the len and out_len do not match, much like you suspected. Out_len is 2 bytes short (4094 vs 4096) See log below
UBIFS DBG tnc: search key (5725, data, 124) UBIFS DBG tnc: found 1, lvl 0, n 2 UBIFS DBG tnc: LEB 566:61864, key (5725, data, 124) UBIFS DBG io: LEB 566:61864, data node, length 3635 UBIFS DBG tnc: search key (5725, data, 125) UBIFS DBG tnc: found 1, lvl 0, n 3 UBIFS DBG tnc: LEB 566:65504, key (5725, data, 125) UBIFS DBG io: LEB 566:65504, data node, length 3411 UBIFS DBG tnc: search key (5725, data, 126) UBIFS DBG tnc: found 1, lvl 0, n 4 UBIFS DBG tnc: LEB 566:68920, key (5725, data, 126) UBIFS DBG io: LEB 566:68920, data node, length 3041 UBIFS DBG tnc: search key (5725, data, 127) UBIFS DBG tnc: found 1, lvl 0, n 5 UBIFS DBG tnc: LEB 566:71968, key (5725, data, 127) UBIFS DBG io: LEB 566:71968, data node, length 4144 UBIFS DBG tnc: search key (5725, data, 128) UBIFS DBG tnc: found 1, lvl 0, n 6 UBIFS DBG tnc: LEB 566:76112, key (5725, data, 128) UBIFS DBG io: LEB 566:76112, data node, length 3818 UBIFS DBG tnc: search key (5725, data, 129) UBIFS DBG tnc: found 1, lvl 0, n 7 UBIFS DBG tnc: LEB 566:79936, key (5725, data, 129) UBIFS DBG io: LEB 566:79936, data node, length 4061 UBIFS DBG tnc: search key (5725, data, 130) UBIFS DBG io: LEB 560:17120, indexing node, length 188 UBIFS DBG tnc: LEB 560:17120, level 0, 8 branch UBIFS DBG tnc: found 1, lvl 0, n 0 UBIFS DBG tnc: LEB 566:84000, key (5725, data, 130) UBIFS DBG io: LEB 566:84000, data node, length 3212 UBIFS DBG tnc: search key (5725, data, 131) UBIFS DBG tnc: found 1, lvl 0, n 1 UBIFS DBG tnc: LEB 566:87216, key (5725, data, 131) UBIFS DBG io: LEB 566:87216, data node, length 3121 ubifs_decompress RC: 0 len: 4096 out_len: 4094 UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 131, inode 5725) magic 0x6101831 crc 0x2503e06e node_type 1 (data node) group_type 0 (no node group) sqnum 59095 len 3121 key (5725, data, 131) size 4096 compr_typ 1 data size 3073 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 131 of inode 5725, error -22 Error reading file '/boot/Image'
If I write the file system in 4.14 and attempt to mount it on 4.9 I get
root@bronte2:~# ubiattach /dev/ubi_ctrl -p /dev/mtd0 -d 0 #Create /dev/ubi8 [ 39.212876] ubi0 error: ubi_attach: PEB 51 contains corrupted VID header, and the data does not contain all 0xFF [ 39.222999] ubi0 error: ubi_attach: this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection [ 39.234526] Volume identifier header dump: [ 39.238601] magic 55424921 [ 39.241725] version 1 [ 39.244232] vol_type 1 [ 39.246758] copy_flag 0 [ 39.249278] compat 0 [ 39.251783] vol_id 0 [ 39.254311] lnum 49 [ 39.256914] data_size 0 [ 39.259429] used_ebs 0 [ 39.261954] data_pad 0 [ 39.264464] sqnum 0 [ 39.266986] hdr_crc 9a7266c9 [ 39.270108] Volume identifier header hexdump: [ 39.274470] hexdump of PEB 51 offset 4096, length 126976[ 39.871671] ubi0 error: ubi_attach: 1 PEBs are corrupted and preserved [ 39.878132] Corrupted PEBs are: 51 [ 39.889469] UBI assert failed in ubi_wl_init at 1666 (pid 2455)
Which is the same error I get if I try to mount the file system in u-boot 2018.1
Also, If I attempt to read a file that was written using 4.14 running 4.9 Linux I get the same error that 2018.1 U-boot reported, except I also get the hexdump. See below
root@bronte2:~# cp /mnt/ubifs2/boot/Image /dev/null [ 871.157694] UBIFS error (ubi1:0 pid 2566): do_readpage: bad data node (block 131, inode 5725) [ 871.166166] magic 0x6101831 [ 871.169812] crc 0x2503e06e [ 871.173527] node_type 1 (data node) [ 871.177527] group_type 0 (no node group) [ 871.181870] sqnum 59095 [ 871.185157] len 3121 [ 871.188362] key (5725, data, 131) [ 871.192709] size 4096 [ 871.195909] compr_typ 1 [ 871.198876] data size 3073 [ 871.202080] data: [ 871.204077] 00000000: 00 b7 23 04 01 8b 21 0c 03 8b 23 4e 00 d0 1f 10 01 eb e1 fd ff 54 63 60 3a 91 e0 29 80 d2 63 68 [ 871.214756] 00000020: 00 91 ed ff ff 17 1f 20 03 d5 e0 2f 8a d2 20 00 a0 f2 3f 00 00 eb cd e7 ff 54 e3 2f 8a 92 c3 ff [ 871.225434] 00000040: bf f2 21 00 03 8b e7 04 00 91 3f 00 00 eb ac ff ff 54 37 ff ff 17 00 00 00 00 fd 7b bd a9 fd 03 [ 871.236111] 00000060: 00 91 f3 53 01 a9 f3 03 00 aa f5 13 00 f9 f4 03 01 aa e0 03 01 aa f5 03 02 aa 61 02 00 f9 21 00 [ 871.246787] 00000080: 40 f9 20 00 3f d6 60 d6 00 a9 20 00 80 d2 81 16 40 b9 00 20 c1 9a 00 04 00 d1 60 fe 01 a9 f3 53 [ 871.257461] 000000a0: 41 a9 f5 13 40 f9 fd 7b c3 a8 c0 03 5f d6 1f 20 03 d5 fd 7b be a9 fd 03 00 91 f3 0b 00 f9 f3 03 [ 871.268140] 000000c0: 00 aa 01 00 40 f9 e0 03 01 aa 21 cc 09 00 be 63 0a 40 a9 61 12 40 f9 02 00 02 cb 67 04 40 f9 66 [ 871.278814] 000000e0: 10 40 b9 42 00 07 8a 65 12 41 a9 42 04 06 9b 84 00 02 8a 64 12 00 f9 61 14 40 b9 41 24 c1 9a 21 [ 871.289492] 00000100: 00 05 8b 60 86 00 a9 e0 03 01 aa f3 0b 40 f9 fd 7b c2 a8 c0 03 5f d6 05 08 40 a9 04 08 40 f9 23 [ 871.300167] 00000120: 00 02 cb 07 10 40 f9 a6 04 40 f9 a8 00 42 29 63 00 06 8a 7f 04 46 eb c8 00 00 54 61 1c 08 9b 21 [ 871.310845] 00000140: 24 c0 9a 20 00 04 8b c0 03 5f d6 1f 20 03 d5 42 00 01 cb 41 00 06 8a 21 7c 08 9b 21 00 07 cb 21 [ 871.321520] 00000160: 24 c0 9a 80 00 01 cb c0 03 5f d6 00 00 00 00 fd 7b bf a9 00 00 80 52 fd 03 00 91 a1 ed ff 97 fd [ 871.332198] 00000180: 7b c1 a8 c0 03 5f d6 fd 7b bf a9 20 00 80 52 fd 03 00 91 9b ed ff 97 fd 7b c1 a8 c0 03 5f d6 2a [ 871.342873] 000001a0: bc 03 00 02 73 74 00 b0 73 42 27 91 e0 03 13 aa e0 b4 26 94 e1 03 00 aa 6c 01 05 73 06 40 f9 f8 [ 871.353551] 000001c0: b4 26 94 6c 01 2a 0c 03 7c 36 7c 07 07 61 74 00 b0 22 40 27 91 fd 03 bc 26 00 03 01 68 40 b9 13 [ 871.364226] 000001e0: 0c 40 f9 21 08 01 8b 41 0c 01 8b 20 14 40 f9 00 7f 30 02 00 cb 2e fc 00 06 00 44 40 f9 20 00 00 [ 871.374904] 00000200: cb c0 dc 1b 7c 09 fc 08 00 02 f3 03 01 aa d8 ff ff 97 20 01 00 b4 21 6d 00 b0 7f 02 00 f9 6c 1b [ 871.385578] 00000220: 05 21 7c 4b b9 61 06 00 f9 2a 2c 01 05 a0 02 80 12 fc ff ff 17 2e 5c 08 09 e0 03 01 2a f4 03 01 [ 871.396256] 00000240: 2a 00 08 00 8b 7c 14 00 2c 21 40 27 91 f5 13 00 f9 21 0c 00 8b 73 02 00 f9 60 82 00 91 f5 03 02 [ 871.406931] 00000260: aa 02 00 80 52 21 30 40 b9 3c e8 ff 97 75 32 00 f9 74 7e 0d 29 00 00 00 90 00 80 2d 91 60 26 00 [ 871.417610] 00000280: f9 f3 53 41 a9 f5 13 7d 37 c3 9c 37 27 9c 02 04 53 01 a9 14 20 00 91 6c 15 0b 20 6c 40 b9 60 00 [ 871.428284] 000002a0: 00 36 e0 03 14 aa c4 88 7e 27 13 aa 6c 01 0d 8f 88 26 94 60 6e 40 b9 00 00 00 32 60 6e 00 b9 6c [ 871.438962] 000002c0: 09 fc 40 2a bd 02 f4 7f 58 5b 02 a9 fc 30 00 02 f6 03 01 aa 60 42 00 91 93 6a 40 b9 73 0a 13 8b [ 871.449636] 000002e0: 13 0c 13 8b 6c 30 0c 79 b4 26 94 96 0e 00 f9 f5 03 00 aa e1 03 14 8c 34 00 09 dc ff ff 97 81 0e [ 871.460315] 00000300: 40 f9 03 00 80 52 02 00 80 d2 80 82 00 91 89 e8 ff 97 e1 03 15 9c 03 03 88 b4 26 94 60 0e bc 30 [ 871.470989] 00000320: 7c 0f 01 f5 5b 42 a9 2c dd 0b bd 27 3c 0d 9f 10 13 00 f9 fc 10 32 0c 02 0d 58 b4 26 94 85 0e 40 [ 871.481668] 00000340: f9 84 82 00 91 85 96 03 a9 fc 0e 01 e1 03 05 aa 7c 12 02 e0 03 04 aa 69 9c 0f be 13 b4 ff 28 2c [ 871.492342] 00000360: 02 01 65 b4 26 94 6c 29 7c 10 ec 10 2a 3c 05 7c 6e 06 60 74 00 b0 02 40 27 91 f4 6f 20 6a 40 b9 [ 871.503020] 00000380: 7c 37 02 40 0c 00 8b 00 cc 49 ac 53 01 14 aa d4 e6 7c 0a bc 54 01 ad ff ff 97 ad 0a c2 8c 34 bc [ 871.513695] 000003a0: 53 03 bd a9 5f 1c 00 72 8c 4a 6e 35 c0 01 9c 3f 7c 35 0d 75 1c 00 12 80 6a 40 b9 81 01 00 54 e0 [ 871.524373] 000003c0: 03 00 2a 7c 43 7c 0c 6d 44 20 2f ac 01 03 13 aa b9 e6 ff 97 6c 13 03 f5 00 00 34 93 0e 30 4c 08 [ 871.535048] 000003e0: 7d 0d e1 6c 67 04 03 14 aa 8a ff ff 97 2e 8c 03 7c 03 fc 1c 00 12 f4 0f 00 f9 14 00 80 d2 03 0c [ 871.545730] 00000400: 40 f9 24 00 03 eb 64 01 00 54 34 00 80 d2 9f 00 02 eb aa 01 00 54 b3 0b 00 f9 6c 0d 0f e1 03 02 [ 871.556401] 00000420: aa e0 03 03 aa 9a e6 ff 97 60 0e 00 f9 b3 0b 7c 91 01 14 aa f4 0f 6c 51 28 9c 03 00 0a 22 01 f8 [ 871.567079] 00000440: b7 94 0c c2 9a 43 0c 14 9b 03 0c 00 f9 7f 00 01 eb cc fe ff 54 94 06 00 91 6c 09 7c ac 01 00 00 [ 871.577753] 00000460: 21 d4 7d 0d f6 9d 64 be 27 bc 07 7c 0c 7d 2d 03 2d bd 05 60 2d 0d 04 e2 cd 4d cf 35 9c 05 ec 2c [ 871.588431] 00000480: fc 47 6c 0a 0d 01 40 27 91 93 c2 01 91 80 da 40 b9 95 2a 40 f9 7c 2b 2e 6d 05 e2 cd 54 b9 6c 58 [ 871.599106] 000004a0: 0c 3e 40 b9 20 00 00 0b 81 46 40 f9 80 3e 00 b9 7d 5d 37 31 2c 05 0c e3 03 00 aa fd 7b bf a9 e2 [ 871.609785] 000004c0: 03 01 aa 00 c0 01 8c 8f 05 61 28 40 f9 a8 ff ff 97 ec 9e bc 2d bc 5a 6c 7e 7c 52 00 07 c4 fe ff [ 871.620459] 000004e0: 97 e0 04 00 b4 60 04 80 52 45 af fe 97 1f 1c 00 72 20 04 00 54 b3 6c 43 00 0c 00 80 52 a0 32 40 [ 871.631137] 00000500: b9 1f 20 00 71 80 00 00 54 1f 24 00 71 14 00 80 12 94 16 94 5a e0 03 14 2b 7c 08 7c 87 09 b3 c2 [ 871.641811] 00000520: 01 91 b3 3a 00 f9 a0 42 02 91 fc 87 09 2c e7 ff 97 b4 7e 1b 29 01 00 00 90 7c 87 0b 21 80 2d 91 [ 871.652490] 00000540: 00 60 1f 91 a1 5e 00 f9 a0 6a be 97 b3 53 2c 2c 11 7c 14 00 0a 00 00 80 12 fb ff ff 17 60 41 80 [ 871.663164] 00000560: 12 f9 ff ff 17 01 38 40 f9 1f 38 00 f9 01 01 00 b4 7c 1c 7c c7 7c 2b 01 e4 1d ff 97 6c a0 ac 1c [ 871.673842] 00000580: 6c 01 6c a7 7c 4a 7c 16 6c 04 01 f3 53 01 a9 7c 66 01 13 00 80 52 fc 18 7c 0b 02 13 14 80 5a 84 [ 871.684518] 000005a0: 7c 1f 03 01 00 b4 e0 03 13 2b 3c 03 2a 4c 06 05 cb dd ff 97 80 06 00 a9 6c 1a 01 e0 03 02 2a 2a [ 871.695195] 000005c0: 4e 0d a2 02 bf 14 fd 7b bc 2b fc 08 09 14 40 01 d1 f5 5b 02 a9 15 c0 01 d1 6c 9e 00 3a 50 b3 26 [ 871.705869] 000005e0: 94 f6 03 00 aa 60 02 5e f8 01 00 80 52 7f 82 1c b8 80 00 00 b4 61 42 5d b8 21 04 00 11 61 42 1d [ 871.716548] 00000600: b8 e0 03 15 aa 15 00 80 52 eb 05 00 94 00 03 00 34 b7 1b 00 f9 77 02 5e f8 b7 03 00 b4 60 6a 40 [ 871.727223] 00000620: b9 61 74 00 b0 21 40 27 91 34 cd 08 17 9c 9a 09 2c ff ff 97 62 c2 5c b8 23 00 80 52 6c 0b 0d f5 [ 871.737904] 00000640: 03 03 2a 40 00 00 0b 63 02 39 29 21 00 03 0b 7c 0c 04 b7 1b 40 f9 e1 03 16 8e b1 46 b3 7d d8 15 [ 871.748576] 00000660: 8c 1a ad a0 c4 8c 85 6d 04 f7 9d 62 bf 9c 1a 02 3a fe ff 97 a0 7d 15 74 ac 10 05 21 80 01 91 53 [ 871.759254] 00000680: 94 1a 94 7c 2d ec 2f 7f 36 fd 7b b6 9c 05 6c 1f 05 76 74 00 b0 d5 42 27 91 7c 2f 01 b4 82 02 91 [ 871.769928] 000006a0: 7e 28 0e b3 7c c0 7c 93 00 12 14 aa b4 56 40 f9 bf 56 00 f9 25 b3 26 94 22 fe ff 97 40 07 00 b4 [ 871.780607] 000006c0: b7 63 03 a9 b3 42 00 91 b8 82 01 91 f7 03 7c 04 05 13 aa 01 b3 26 94 75 0a 6c 16 bc 01 0a 19 b3 [ 871.791281] 000006e0: 26 94 15 01 00 b4 60 0e 40 f9 b5 cc b8 00 2a a0 02 00 cb 9f 02 00 f1 01 10 54 fa 94 a2 80 9a 73 [ 871.801959] 00000700: a2 00 91 7f 02 18 eb 01 fe ff 54 76 04 00 b4 e0 7f 92 d2 d6 42 27 95 a0 e6 ae f2 9f 02 00 eb 8d [ 871.812634] 00000720: 05 00 54 d3 82 01 91 e0 03 17 aa 6c 94 03 20 94 1a 94 a1 e3 bc 01 00 16 e7 8f 1a 94 a2 8f 48 a9 [ 871.823312] 00000740: a2 0f 05 a9 a4 97 47 a9 a4 17 04 a9 a0 9b 40 b9 a0 63 00 b9 a0 03 01 91 cd 8b 1a 94 82 02 00 8b [ 871.833986] 00000760: 7c 06 01 03 00 80 d2 6c 08 0d f2 93 1a 94 f3 03 00 2a 00 02 f8 37 b7 63 43 a9 7c 49 7c 44 ad 2a [ 871.844665] 00000780: ca 8c 2a 7c 23 6c 03 7c 50 36 7e 00 c0 5a 22 2c 25 07 80 52 01 7d 80 52 af 7c 14 94 7c 05 01 f5 [ 871.855339] 000007a0: ff ff 17 27 5c 00 05 fa 80 52 f3 01 80 12 a8 ce 03 ee ff 24 bc 28 fc 4f 00 22 f4 d7 01 a9 75 74 [ 871.866018] 000007c0: 00 b0 b4 42 27 91 f6 17 00 f9 81 06 40 f9 e1 06 00 b5 01 80 41 f9 21 10 40 f9 c1 06 00 b4 01 00 [ 871.876692] 000007e0: 40 f9 16 00 80 12 22 30 43 39 e2 02 00 36 8c 2e 08 0b 00 f9 21 84 40 f9 a1 04 00 b4 9c 9f 08 5d [ 871.887370] 00000800: 00 d0 00 c0 25 91 14 7b 14 94 bc 30 00 10 14 aa 9f b2 26 94 f8 03 00 aa 80 06 40 f9 c0 01 00 b4 [ 871.898044] 00000820: e1 03 18 aa a0 42 27 91 b5 b2 26 94 16 00 80 52 7c 20 01 2a 7d 14 94 6c b2 7c 16 07 e0 03 16 2a [ 871.908723] 00000840: f4 d7 41 a9 f6 17 6c b3 bc 4a 05 60 7a 41 f9 6f 3b 00 94 7e 8c e0 00 7c cc 00 04 13 aa 93 06 00 [ 871.919398] 00000860: f9 f6 20 14 94 97 5a 00 f9 17 00 80 d2 ea ff ff 17 6c 0b 7e 45 9e b2 7e 53 16 2a ec 0a 2e 3c 01 [ 871.930076] 00000880: 05 f6 01 80 12 e6 ff ff 17 7d 19 e4 9d 55 bb 9c 4f 6f 4e 14 80 00 8c 70 7c 21 00 02 f7 63 03 a9 [ 871.940750] 000008a0: b8 42 27 91 f9 6b 04 a9 18 43 00 91 f9 03 00 aa 22 1c 21 00 03 77 0a 13 8b f7 f2 7d d3 16 03 17 [ 871.951429] 000008c0: 8b e0 03 16 aa 66 b2 26 94 fa 6c 1c 08 6e 40 b9 20 05 00 37 e1 03 1a aa 7c 02 0d 7c b2 26 94 98 [ 871.962103] 000008e0: 32 40 f9 98 05 00 b4 61 0a 13 8b 7c 1e 05 00 0c 01 8b 17 00 80 52 2e 0c 1e 05 00 03 3f d6 fa 03 [ 871.972782] 00000900: 00 2a 7d 06 52 cc 26 0d fa 00 00 34 20 83 5f f8 37 00 80 52 20 83 01 a9 24 9c 22 07 16 aa b2 fd [ 871.983456] 00000920: ff 97 b5 42 27 91 22 3c 23 01 b3 0e 13 8b bc 1e 05 16 aa 60 b2 26 94 60 16 24 7f 22 e0 03 17 27 [ 871.994135] 00000940: 7c 0e 08 f7 63 43 a9 f9 6b 44 a9 fd 7b c5 8c 4a 01 e0 22 00 91 6c 09 06 00 03 00 8b 6b 86 26 94 [ 872.004809] 00000960: 80 22 5c 25 08 78 1f 12 80 6e 00 b9 d1 ff ff 17 6c 10 6d 14 30 dd 10 e5 27 bc 08 bc 24 7c 74 7c [ 872.015487] 00000980: 92 7c 23 6c 23 7c 26 00 10 74 74 00 b0 97 42 27 91 13 68 40 b9 f7 42 00 91 75 0a 13 8b b5 f2 7d [ 872.026162] 000009a0: d3 f9 02 15 8b e0 03 19 aa 1d b2 ac 24 0e c0 82 00 91 f8 e5 ff 97 f8 03 00 2a 60 00 f8 37 c0 6c [ 872.036840] 000009c0: 0f 01 02 00 37 94 dd 19 93 9c 19 7f 27 19 aa 2c 2b 3d 03 18 37 3d 03 a0 9c 19 07 16 aa e0 02 00 [ 872.047515] 000009e0: 8b 37 86 26 94 8c 0a 04 78 1f 12 c0 6e 00 b9 7e 42 fd 7b dd f4 0b 24 3c 20 01 03 00 00 14 7c 6a [ 872.058193] 00000a00: 01 3f 20 03 d5 6c e3 05 ca ff ff 97 a0 ff ff 37 2a 2c 2c 7c 03 6c c6 fd e2 c1 29 4e 1c fd 7b bc [ 872.068867] 00000a20: 20 7d 1e f3 25 bc 29 6c c5 0d f6 03 02 2a 35 00 80 d2 00 41 38 d5 60 3a 00 f9 7c 00 03 15 0c 00 [ 872.079546] 00000a40: f9 bf 3b bc 0c 6c 2e 05 55 fd ff 97 60 3a 40 f9 7c b8 05 94 a2 26 94 02 00 00 14 fd 10 a8 dc 10 [ 872.090220] 00000a60: fc 03 7c 07 0c 00 00 40 f9 c0 fd 07 36 01 41 38 d5 3f 0c 00 23 ec 2e 05 62 3a 40 f9 62 02 00 b4 [ 872.100899] 00000a80: 22 6c 20 06 00 60 44 b9 e0 03 00 35 13 6c 0e 08 26 44 b9 73 62 10 91 e0 08 00 34 7c 68 36 2d 26 [ 872.111573] 00000aa0: 94 dc 9e 7c b0 01 ac 00 00 54 28 cc 11 dc 43 0b 03 14 aa 1b dc ff 97 a2 43 01 91 40 04 bf 7d 92 [ 872.122251] 00000ac0: aa 22 0f 25 f6 e7 ff 23 6c 28 bc 93 ec 05 03 01 aa c4 d2 ff 97 8c 73 0c fb ff 54 76 04 00 34 df [ 872.132926] 00000ae0: 06 00 71 c1 02 00 54 22 ec 2b 05 60 42 27 91 00 e0 00 91 7c d2 02 00 0c 40 f9 75 7c 01 00 16 00 [ 872.143604] 00000b00: 3f d6 97 02 00 cb a0 82 02 91 97 b1 26 94 a2 56 40 f9 5f 00 00 f1 e1 12 42 fa 4a 00 00 54 b7 56 [ 872.154278] 00000b20: 00 f9 73 42 27 91 e1 6c df 04 82 02 91 aa b1 26 94 6c cb 00 14 c7 ff ff 17 81 71 00 b0 20 40 66 [ 872.164957] 00000b40: 39 80 f8 ff 35 22 00 80 52 60 5d 00 d0 22 40 26 39 00 00 26 91 e1 03 16 2a c3 88 6c fb 03 21 d4 [ 872.175631] 00000b60: bc ff ff 17 27 fd 01 40 bd 0f e0 22 6c 20 01 40 80 12 c4 27 3e 0b b3 a9 fc fd 6c a0 22 0c 33 6c [ 872.186310] 00000b80: 5a 05 14 00 80 52 f8 03 01 2a fc fe 26 fc 22 00 02 17 41 38 d5 85 fc ff 97 00 0b 00 b4 1f 7b 1f [ 872.196984] 00000ba0: 72 41 0a 00 54 22 0e 24 04 ad 24 0e 24 00 0a 26 cc 29 03 14 2a b6 17 00 f9 6c 7e 7c d9 0c c0 42 [ 872.207663] 00000bc0: 27 91 01 0c 01 8b b9 23 00 f9 b9 63 01 23 9c 23 05 20 83 00 91 b9 2f 00 f9 22 bc 34 05 f0 e4 ff [ 872.218337] 00000be0: 97 b4 7f 18 29 22 ac 23 00 02 00 e0 1c 91 a1 56 40 a9 02 00 00 90 a0 5f 00 f9 42 80 2d 91 11 00 [ 872.229013] 00000c00: 00 [ 872.231624] UBIFS error (ubi1:0 pid 2566): do_readpage: cannot read page 131 of inode 5725, error -22 [ 872.241562] UBIFS error (ubi1:0 pid 2566): do_readpage: bad data node (block 131, inode 5725) [ 872.250031] magic 0x6101831 [ 872.253662] crc 0x2503e06e [ 872.257393] node_type 1 (data node) [ 872.261385] group_type 0 (no node group) [ 872.265727] sqnum 59095 [ 872.269027] len 3121 [ 872.272235] key (5725, data, 131) [ 872.276576] size 4096 [ 872.279776] compr_typ 1 [ 872.282738] data size 3073 [ 872.285948] data: [ 872.287939] 00000000: 00 b7 23 04 01 8b 21 0c 03 8b 23 4e 00 d0 1f 10 01 eb e1 fd ff 54 63 60 3a 91 e0 29 80 d2 63 68 [ 872.298625] 00000020: 00 91 ed ff ff 17 1f 20 03 d5 e0 2f 8a d2 20 00 a0 f2 3f 00 00 eb cd e7 ff 54 e3 2f 8a 92 c3 ff [ 872.309305] 00000040: bf f2 21 00 03 8b e7 04 00 91 3f 00 00 eb ac ff ff 54 37 ff ff 17 00 00 00 00 fd 7b bd a9 fd 03 [ 872.319977] 00000060: 00 91 f3 53 01 a9 f3 03 00 aa f5 13 00 f9 f4 03 01 aa e0 03 01 aa f5 03 02 aa 61 02 00 f9 21 00 [ 872.330653] 00000080: 40 f9 20 00 3f d6 60 d6 00 a9 20 00 80 d2 81 16 40 b9 00 20 c1 9a 00 04 00 d1 60 fe 01 a9 f3 53 [ 872.341330] 000000a0: 41 a9 f5 13 40 f9 fd 7b c3 a8 c0 03 5f d6 1f 20 03 d5 fd 7b be a9 fd 03 00 91 f3 0b 00 f9 f3 03 [ 872.352006] 000000c0: 00 aa 01 00 40 f9 e0 03 01 aa 21 cc 09 00 be 63 0a 40 a9 61 12 40 f9 02 00 02 cb 67 04 40 f9 66 [ 872.362691] 000000e0: 10 40 b9 42 00 07 8a 65 12 41 a9 42 04 06 9b 84 00 02 8a 64 12 00 f9 61 14 40 b9 41 24 c1 9a 21 [ 872.373366] 00000100: 00 05 8b 60 86 00 a9 e0 03 01 aa f3 0b 40 f9 fd 7b c2 a8 c0 03 5f d6 05 08 40 a9 04 08 40 f9 23 [ 872.384036] 00000120: 00 02 cb 07 10 40 f9 a6 04 40 f9 a8 00 42 29 63 00 06 8a 7f 04 46 eb c8 00 00 54 61 1c 08 9b 21 [ 872.394734] 00000140: 24 c0 9a 20 00 04 8b c0 03 5f d6 1f 20 03 d5 42 00 01 cb 41 00 06 8a 21 7c 08 9b 21 00 07 cb 21 [ 872.405389] 00000160: 24 c0 9a 80 00 01 cb c0 03 5f d6 00 00 00 00 fd 7b bf a9 00 00 80 52 fd 03 00 91 a1 ed ff 97 fd [ 872.416065] 00000180: 7b c1 a8 c0 03 5f d6 fd 7b bf a9 20 00 80 52 fd 03 00 91 9b ed ff 97 fd 7b c1 a8 c0 03 5f d6 2a [ 872.426741] 000001a0: bc 03 00 02 73 74 00 b0 73 42 27 91 e0 03 13 aa e0 b4 26 94 e1 03 00 aa 6c 01 05 73 06 40 f9 f8 [ 872.437418] 000001c0: b4 26 94 6c 01 2a 0c 03 7c 36 7c 07 07 61 74 00 b0 22 40 27 91 fd 03 bc 26 00 03 01 68 40 b9 13 [ 872.448094] 000001e0: 0c 40 f9 21 08 01 8b 41 0c 01 8b 20 14 40 f9 00 7f 30 02 00 cb 2e fc 00 06 00 44 40 f9 20 00 00 [ 872.458771] 00000200: cb c0 dc 1b 7c 09 fc 08 00 02 f3 03 01 aa d8 ff ff 97 20 01 00 b4 21 6d 00 b0 7f 02 00 f9 6c 1b [ 872.469447] 00000220: 05 21 7c 4b b9 61 06 00 f9 2a 2c 01 05 a0 02 80 12 fc ff ff 17 2e 5c 08 09 e0 03 01 2a f4 03 01 [ 872.480123] 00000240: 2a 00 08 00 8b 7c 14 00 2c 21 40 27 91 f5 13 00 f9 21 0c 00 8b 73 02 00 f9 60 82 00 91 f5 03 02 [ 872.490799] 00000260: aa 02 00 80 52 21 30 40 b9 3c e8 ff 97 75 32 00 f9 74 7e 0d 29 00 00 00 90 00 80 2d 91 60 26 00 [ 872.501476] 00000280: f9 f3 53 41 a9 f5 13 7d 37 c3 9c 37 27 9c 02 04 53 01 a9 14 20 00 91 6c 15 0b 20 6c 40 b9 60 00 [ 872.512152] 000002a0: 00 36 e0 03 14 aa c4 88 7e 27 13 aa 6c 01 0d 8f 88 26 94 60 6e 40 b9 00 00 00 32 60 6e 00 b9 6c [ 872.522829] 000002c0: 09 fc 40 2a bd 02 f4 7f 58 5b 02 a9 fc 30 00 02 f6 03 01 aa 60 42 00 91 93 6a 40 b9 73 0a 13 8b [ 872.533505] 000002e0: 13 0c 13 8b 6c 30 0c 79 b4 26 94 96 0e 00 f9 f5 03 00 aa e1 03 14 8c 34 00 09 dc ff ff 97 81 0e [ 872.544182] 00000300: 40 f9 03 00 80 52 02 00 80 d2 80 82 00 91 89 e8 ff 97 e1 03 15 9c 03 03 88 b4 26 94 60 0e bc 30 [ 872.554858] 00000320: 7c 0f 01 f5 5b 42 a9 2c dd 0b bd 27 3c 0d 9f 10 13 00 f9 fc 10 32 0c 02 0d 58 b4 26 94 85 0e 40 [ 872.565535] 00000340: f9 84 82 00 91 85 96 03 a9 fc 0e 01 e1 03 05 aa 7c 12 02 e0 03 04 aa 69 9c 0f be 13 b4 ff 28 2c [ 872.576210] 00000360: 02 01 65 b4 26 94 6c 29 7c 10 ec 10 2a 3c 05 7c 6e 06 60 74 00 b0 02 40 27 91 f4 6f 20 6a 40 b9 [ 872.586887] 00000380: 7c 37 02 40 0c 00 8b 00 cc 49 ac 53 01 14 aa d4 e6 7c 0a bc 54 01 ad ff ff 97 ad 0a c2 8c 34 bc [ 872.597563] 000003a0: 53 03 bd a9 5f 1c 00 72 8c 4a 6e 35 c0 01 9c 3f 7c 35 0d 75 1c 00 12 80 6a 40 b9 81 01 00 54 e0 [ 872.608239] 000003c0: 03 00 2a 7c 43 7c 0c 6d 44 20 2f ac 01 03 13 aa b9 e6 ff 97 6c 13 03 f5 00 00 34 93 0e 30 4c 08 [ 872.618916] 000003e0: 7d 0d e1 6c 67 04 03 14 aa 8a ff ff 97 2e 8c 03 7c 03 fc 1c 00 12 f4 0f 00 f9 14 00 80 d2 03 0c [ 872.629598] 00000400: 40 f9 24 00 03 eb 64 01 00 54 34 00 80 d2 9f 00 02 eb aa 01 00 54 b3 0b 00 f9 6c 0d 0f e1 03 02 [ 872.640270] 00000420: aa e0 03 03 aa 9a e6 ff 97 60 0e 00 f9 b3 0b 7c 91 01 14 aa f4 0f 6c 51 28 9c 03 00 0a 22 01 f8 [ 872.650946] 00000440: b7 94 0c c2 9a 43 0c 14 9b 03 0c 00 f9 7f 00 01 eb cc fe ff 54 94 06 00 91 6c 09 7c ac 01 00 00 [ 872.661622] 00000460: 21 d4 7d 0d f6 9d 64 be 27 bc 07 7c 0c 7d 2d 03 2d bd 05 60 2d 0d 04 e2 cd 4d cf 35 9c 05 ec 2c [ 872.672298] 00000480: fc 47 6c 0a 0d 01 40 27 91 93 c2 01 91 80 da 40 b9 95 2a 40 f9 7c 2b 2e 6d 05 e2 cd 54 b9 6c 58 [ 872.682975] 000004a0: 0c 3e 40 b9 20 00 00 0b 81 46 40 f9 80 3e 00 b9 7d 5d 37 31 2c 05 0c e3 03 00 aa fd 7b bf a9 e2 [ 872.693651] 000004c0: 03 01 aa 00 c0 01 8c 8f 05 61 28 40 f9 a8 ff ff 97 ec 9e bc 2d bc 5a 6c 7e 7c 52 00 07 c4 fe ff [ 872.704327] 000004e0: 97 e0 04 00 b4 60 04 80 52 45 af fe 97 1f 1c 00 72 20 04 00 54 b3 6c 43 00 0c 00 80 52 a0 32 40 [ 872.715009] 00000500: b9 1f 20 00 71 80 00 00 54 1f 24 00 71 14 00 80 12 94 16 94 5a e0 03 14 2b 7c 08 7c 87 09 b3 c2 [ 872.725681] 00000520: 01 91 b3 3a 00 f9 a0 42 02 91 fc 87 09 2c e7 ff 97 b4 7e 1b 29 01 00 00 90 7c 87 0b 21 80 2d 91 [ 872.736357] 00000540: 00 60 1f 91 a1 5e 00 f9 a0 6a be 97 b3 53 2c 2c 11 7c 14 00 0a 00 00 80 12 fb ff ff 17 60 41 80 [ 872.747033] 00000560: 12 f9 ff ff 17 01 38 40 f9 1f 38 00 f9 01 01 00 b4 7c 1c 7c c7 7c 2b 01 e4 1d ff 97 6c a0 ac 1c [ 872.757710] 00000580: 6c 01 6c a7 7c 4a 7c 16 6c 04 01 f3 53 01 a9 7c 66 01 13 00 80 52 fc 18 7c 0b 02 13 14 80 5a 84 [ 872.768386] 000005a0: 7c 1f 03 01 00 b4 e0 03 13 2b 3c 03 2a 4c 06 05 cb dd ff 97 80 06 00 a9 6c 1a 01 e0 03 02 2a 2a [ 872.779062] 000005c0: 4e 0d a2 02 bf 14 fd 7b bc 2b fc 08 09 14 40 01 d1 f5 5b 02 a9 15 c0 01 d1 6c 9e 00 3a 50 b3 26 [ 872.789739] 000005e0: 94 f6 03 00 aa 60 02 5e f8 01 00 80 52 7f 82 1c b8 80 00 00 b4 61 42 5d b8 21 04 00 11 61 42 1d [ 872.800415] 00000600: b8 e0 03 15 aa 15 00 80 52 eb 05 00 94 00 03 00 34 b7 1b 00 f9 77 02 5e f8 b7 03 00 b4 60 6a 40 [ 872.811099] 00000620: b9 61 74 00 b0 21 40 27 91 34 cd 08 17 9c 9a 09 2c ff ff 97 62 c2 5c b8 23 00 80 52 6c 0b 0d f5 [ 872.821768] 00000640: 03 03 2a 40 00 00 0b 63 02 39 29 21 00 03 0b 7c 0c 04 b7 1b 40 f9 e1 03 16 8e b1 46 b3 7d d8 15 [ 872.832444] 00000660: 8c 1a ad a0 c4 8c 85 6d 04 f7 9d 62 bf 9c 1a 02 3a fe ff 97 a0 7d 15 74 ac 10 05 21 80 01 91 53 [ 872.843121] 00000680: 94 1a 94 7c 2d ec 2f 7f 36 fd 7b b6 9c 05 6c 1f 05 76 74 00 b0 d5 42 27 91 7c 2f 01 b4 82 02 91 [ 872.853797] 000006a0: 7e 28 0e b3 7c c0 7c 93 00 12 14 aa b4 56 40 f9 bf 56 00 f9 25 b3 26 94 22 fe ff 97 40 07 00 b4 [ 872.864474] 000006c0: b7 63 03 a9 b3 42 00 91 b8 82 01 91 f7 03 7c 04 05 13 aa 01 b3 26 94 75 0a 6c 16 bc 01 0a 19 b3 [ 872.875150] 000006e0: 26 94 15 01 00 b4 60 0e 40 f9 b5 cc b8 00 2a a0 02 00 cb 9f 02 00 f1 01 10 54 fa 94 a2 80 9a 73 [ 872.885832] 00000700: a2 00 91 7f 02 18 eb 01 fe ff 54 76 04 00 b4 e0 7f 92 d2 d6 42 27 95 a0 e6 ae f2 9f 02 00 eb 8d [ 872.896514] 00000720: 05 00 54 d3 82 01 91 e0 03 17 aa 6c 94 03 20 94 1a 94 a1 e3 bc 01 00 16 e7 8f 1a 94 a2 8f 48 a9 [ 872.907178] 00000740: a2 0f 05 a9 a4 97 47 a9 a4 17 04 a9 a0 9b 40 b9 a0 63 00 b9 a0 03 01 91 cd 8b 1a 94 82 02 00 8b [ 872.917854] 00000760: 7c 06 01 03 00 80 d2 6c 08 0d f2 93 1a 94 f3 03 00 2a 00 02 f8 37 b7 63 43 a9 7c 49 7c 44 ad 2a [ 872.928532] 00000780: ca 8c 2a 7c 23 6c 03 7c 50 36 7e 00 c0 5a 22 2c 25 07 80 52 01 7d 80 52 af 7c 14 94 7c 05 01 f5 [ 872.939207] 000007a0: ff ff 17 27 5c 00 05 fa 80 52 f3 01 80 12 a8 ce 03 ee ff 24 bc 28 fc 4f 00 22 f4 d7 01 a9 75 74 [ 872.949884] 000007c0: 00 b0 b4 42 27 91 f6 17 00 f9 81 06 40 f9 e1 06 00 b5 01 80 41 f9 21 10 40 f9 c1 06 00 b4 01 00 [ 872.960559] 000007e0: 40 f9 16 00 80 12 22 30 43 39 e2 02 00 36 8c 2e 08 0b 00 f9 21 84 40 f9 a1 04 00 b4 9c 9f 08 5d [ 872.971236] 00000800: 00 d0 00 c0 25 91 14 7b 14 94 bc 30 00 10 14 aa 9f b2 26 94 f8 03 00 aa 80 06 40 f9 c0 01 00 b4 [ 872.981913] 00000820: e1 03 18 aa a0 42 27 91 b5 b2 26 94 16 00 80 52 7c 20 01 2a 7d 14 94 6c b2 7c 16 07 e0 03 16 2a [ 872.992589] 00000840: f4 d7 41 a9 f6 17 6c b3 bc 4a 05 60 7a 41 f9 6f 3b 00 94 7e 8c e0 00 7c cc 00 04 13 aa 93 06 00 [ 873.003265] 00000860: f9 f6 20 14 94 97 5a 00 f9 17 00 80 d2 ea ff ff 17 6c 0b 7e 45 9e b2 7e 53 16 2a ec 0a 2e 3c 01 [ 873.013942] 00000880: 05 f6 01 80 12 e6 ff ff 17 7d 19 e4 9d 55 bb 9c 4f 6f 4e 14 80 00 8c 70 7c 21 00 02 f7 63 03 a9 [ 873.024618] 000008a0: b8 42 27 91 f9 6b 04 a9 18 43 00 91 f9 03 00 aa 22 1c 21 00 03 77 0a 13 8b f7 f2 7d d3 16 03 17 [ 873.035294] 000008c0: 8b e0 03 16 aa 66 b2 26 94 fa 6c 1c 08 6e 40 b9 20 05 00 37 e1 03 1a aa 7c 02 0d 7c b2 26 94 98 [ 873.045971] 000008e0: 32 40 f9 98 05 00 b4 61 0a 13 8b 7c 1e 05 00 0c 01 8b 17 00 80 52 2e 0c 1e 05 00 03 3f d6 fa 03 [ 873.056647] 00000900: 00 2a 7d 06 52 cc 26 0d fa 00 00 34 20 83 5f f8 37 00 80 52 20 83 01 a9 24 9c 22 07 16 aa b2 fd [ 873.067324] 00000920: ff 97 b5 42 27 91 22 3c 23 01 b3 0e 13 8b bc 1e 05 16 aa 60 b2 26 94 60 16 24 7f 22 e0 03 17 27 [ 873.078000] 00000940: 7c 0e 08 f7 63 43 a9 f9 6b 44 a9 fd 7b c5 8c 4a 01 e0 22 00 91 6c 09 06 00 03 00 8b 6b 86 26 94 [ 873.088677] 00000960: 80 22 5c 25 08 78 1f 12 80 6e 00 b9 d1 ff ff 17 6c 10 6d 14 30 dd 10 e5 27 bc 08 bc 24 7c 74 7c [ 873.099353] 00000980: 92 7c 23 6c 23 7c 26 00 10 74 74 00 b0 97 42 27 91 13 68 40 b9 f7 42 00 91 75 0a 13 8b b5 f2 7d [ 873.110029] 000009a0: d3 f9 02 15 8b e0 03 19 aa 1d b2 ac 24 0e c0 82 00 91 f8 e5 ff 97 f8 03 00 2a 60 00 f8 37 c0 6c [ 873.120706] 000009c0: 0f 01 02 00 37 94 dd 19 93 9c 19 7f 27 19 aa 2c 2b 3d 03 18 37 3d 03 a0 9c 19 07 16 aa e0 02 00 [ 873.131382] 000009e0: 8b 37 86 26 94 8c 0a 04 78 1f 12 c0 6e 00 b9 7e 42 fd 7b dd f4 0b 24 3c 20 01 03 00 00 14 7c 6a [ 873.142058] 00000a00: 01 3f 20 03 d5 6c e3 05 ca ff ff 97 a0 ff ff 37 2a 2c 2c 7c 03 6c c6 fd e2 c1 29 4e 1c fd 7b bc [ 873.152735] 00000a20: 20 7d 1e f3 25 bc 29 6c c5 0d f6 03 02 2a 35 00 80 d2 00 41 38 d5 60 3a 00 f9 7c 00 03 15 0c 00 [ 873.163411] 00000a40: f9 bf 3b bc 0c 6c 2e 05 55 fd ff 97 60 3a 40 f9 7c b8 05 94 a2 26 94 02 00 00 14 fd 10 a8 dc 10 [ 873.174088] 00000a60: fc 03 7c 07 0c 00 00 40 f9 c0 fd 07 36 01 41 38 d5 3f 0c 00 23 ec 2e 05 62 3a 40 f9 62 02 00 b4 [ 873.184764] 00000a80: 22 6c 20 06 00 60 44 b9 e0 03 00 35 13 6c 0e 08 26 44 b9 73 62 10 91 e0 08 00 34 7c 68 36 2d 26 [ 873.195441] 00000aa0: 94 dc 9e 7c b0 01 ac 00 00 54 28 cc 11 dc 43 0b 03 14 aa 1b dc ff 97 a2 43 01 91 40 04 bf 7d 92 [ 873.206117] 00000ac0: aa 22 0f 25 f6 e7 ff 23 6c 28 bc 93 ec 05 03 01 aa c4 d2 ff 97 8c 73 0c fb ff 54 76 04 00 34 df [ 873.216793] 00000ae0: 06 00 71 c1 02 00 54 22 ec 2b 05 60 42 27 91 00 e0 00 91 7c d2 02 00 0c 40 f9 75 7c 01 00 16 00 [ 873.227470] 00000b00: 3f d6 97 02 00 cb a0 82 02 91 97 b1 26 94 a2 56 40 f9 5f 00 00 f1 e1 12 42 fa 4a 00 00 54 b7 56 [ 873.238146] 00000b20: 00 f9 73 42 27 91 e1 6c df 04 82 02 91 aa b1 26 94 6c cb 00 14 c7 ff ff 17 81 71 00 b0 20 40 66 [ 873.248822] 00000b40: 39 80 f8 ff 35 22 00 80 52 60 5d 00 d0 22 40 26 39 00 00 26 91 e1 03 16 2a c3 88 6c fb 03 21 d4 [ 873.259499] 00000b60: bc ff ff 17 27 fd 01 40 bd 0f e0 22 6c 20 01 40 80 12 c4 27 3e 0b b3 a9 fc fd 6c a0 22 0c 33 6c [ 873.270175] 00000b80: 5a 05 14 00 80 52 f8 03 01 2a fc fe 26 fc 22 00 02 17 41 38 d5 85 fc ff 97 00 0b 00 b4 1f 7b 1f [ 873.280852] 00000ba0: 72 41 0a 00 54 22 0e 24 04 ad 24 0e 24 00 0a 26 cc 29 03 14 2a b6 17 00 f9 6c 7e 7c d9 0c c0 42 [ 873.291528] 00000bc0: 27 91 01 0c 01 8b b9 23 00 f9 b9 63 01 23 9c 23 05 20 83 00 91 b9 2f 00 f9 22 bc 34 05 f0 e4 ff [ 873.302205] 00000be0: 97 b4 7f 18 29 22 ac 23 00 02 00 e0 1c 91 a1 56 40 a9 02 00 00 90 a0 5f 00 f9 42 80 2d 91 11 00 [ 873.312879] 00000c00: 00 [ 873.315493] UBIFS error (ubi1:0 pid 2566): do_readpage: cannot read page 131 of inode 5725, error -22 [ 873.325400] UBIFS error (ubi1:0 pid 2566): do_readpage: bad data node (block 131, inode 5725) [ 873.333859] magic 0x6101831 [ 873.337497] crc 0x2503e06e [ 873.341229] node_type 1 (data node) [ 873.345225] group_type 0 (no node group) [ 873.349562] sqnum 59095 [ 873.352860] len 3121 [ 873.356065] key (5725, data, 131) [ 873.360411] size 4096 [ 873.363622] compr_typ 1 [ 873.366576] data size 3073 [ 873.369784] data: [ 873.371777] 00000000: 00 b7 23 04 01 8b 21 0c 03 8b 23 4e 00 d0 1f 10 01 eb e1 fd ff 54 63 60 3a 91 e0 29 80 d2 63 68 [ 873.382469] 00000020: 00 91 ed ff ff 17 1f 20 03 d5 e0 2f 8a d2 20 00 a0 f2 3f 00 00 eb cd e7 ff 54 e3 2f 8a 92 c3 ff [ 873.393138] 00000040: bf f2 21 00 03 8b e7 04 00 91 3f 00 00 eb ac ff ff 54 37 ff ff 17 00 00 00 00 fd 7b bd a9 fd 03 [ 873.403813] 00000060: 00 91 f3 53 01 a9 f3 03 00 aa f5 13 00 f9 f4 03 01 aa e0 03 01 aa f5 03 02 aa 61 02 00 f9 21 00 [ 873.414490] 00000080: 40 f9 20 00 3f d6 60 d6 00 a9 20 00 80 d2 81 16 40 b9 00 20 c1 9a 00 04 00 d1 60 fe 01 a9 f3 53 [ 873.425166] 000000a0: 41 a9 f5 13 40 f9 fd 7b c3 a8 c0 03 5f d6 1f 20 03 d5 fd 7b be a9 fd 03 00 91 f3 0b 00 f9 f3 03 [ 873.435843] 000000c0: 00 aa 01 00 40 f9 e0 03 01 aa 21 cc 09 00 be 63 0a 40 a9 61 12 40 f9 02 00 02 cb 67 04 40 f9 66 [ 873.446523] 000000e0: 10 40 b9 42 00 07 8a 65 12 41 a9 42 04 06 9b 84 00 02 8a 64 12 00 f9 61 14 40 b9 41 24 c1 9a 21 [ 873.457203] 00000100: 00 05 8b 60 86 00 a9 e0 03 01 aa f3 0b 40 f9 fd 7b c2 a8 c0 03 5f d6 05 08 40 a9 04 08 40 f9 23 [ 873.467873] 00000120: 00 02 cb 07 10 40 f9 a6 04 40 f9 a8 00 42 29 63 00 06 8a 7f 04 46 eb c8 00 00 54 61 1c 08 9b 21 [ 873.478549] 00000140: 24 c0 9a 20 00 04 8b c0 03 5f d6 1f 20 03 d5 42 00 01 cb 41 00 06 8a 21 7c 08 9b 21 00 07 cb 21 [ 873.489225] 00000160: 24 c0 9a 80 00 01 cb c0 03 5f d6 00 00 00 00 fd 7b bf a9 00 00 80 52 fd 03 00 91 a1 ed ff 97 fd [ 873.499904] 00000180: 7b c1 a8 c0 03 5f d6 fd 7b bf a9 20 00 80 52 fd 03 00 91 9b ed ff 97 fd 7b c1 a8 c0 03 5f d6 2a [ 873.510578] 000001a0: bc 03 00 02 73 74 00 b0 73 42 27 91 e0 03 13 aa e0 b4 26 94 e1 03 00 aa 6c 01 05 73 06 40 f9 f8 [ 873.521254] 000001c0: b4 26 94 6c 01 2a 0c 03 7c 36 7c 07 07 61 74 00 b0 22 40 27 91 fd 03 bc 26 00 03 01 68 40 b9 13 [ 873.531930] 000001e0: 0c 40 f9 21 08 01 8b 41 0c 01 8b 20 14 40 f9 00 7f 30 02 00 cb 2e fc 00 06 00 44 40 f9 20 00 00 [ 873.542607] 00000200: cb c0 dc 1b 7c 09 fc 08 00 02 f3 03 01 aa d8 ff ff 97 20 01 00 b4 21 6d 00 b0 7f 02 00 f9 6c 1b [ 873.553283] 00000220: 05 21 7c 4b b9 61 06 00 f9 2a 2c 01 05 a0 02 80 12 fc ff ff 17 2e 5c 08 09 e0 03 01 2a f4 03 01 [ 873.563960] 00000240: 2a 00 08 00 8b 7c 14 00 2c 21 40 27 91 f5 13 00 f9 21 0c 00 8b 73 02 00 f9 60 82 00 91 f5 03 02 [ 873.574636] 00000260: aa 02 00 80 52 21 30 40 b9 3c e8 ff 97 75 32 00 f9 74 7e 0d 29 00 00 00 90 00 80 2d 91 60 26 00 [ 873.585312] 00000280: f9 f3 53 41 a9 f5 13 7d 37 c3 9c 37 27 9c 02 04 53 01 a9 14 20 00 91 6c 15 0b 20 6c 40 b9 60 00 [ 873.595988] 000002a0: 00 36 e0 03 14 aa c4 88 7e 27 13 aa 6c 01 0d 8f 88 26 94 60 6e 40 b9 00 00 00 32 60 6e 00 b9 6c [ 873.606666] 000002c0: 09 fc 40 2a bd 02 f4 7f 58 5b 02 a9 fc 30 00 02 f6 03 01 aa 60 42 00 91 93 6a 40 b9 73 0a 13 8b [ 873.617342] 000002e0: 13 0c 13 8b 6c 30 0c 79 b4 26 94 96 0e 00 f9 f5 03 00 aa e1 03 14 8c 34 00 09 dc ff ff 97 81 0e [ 873.628018] 00000300: 40 f9 03 00 80 52 02 00 80 d2 80 82 00 91 89 e8 ff 97 e1 03 15 9c 03 03 88 b4 26 94 60 0e bc 30 [ 873.638694] 00000320: 7c 0f 01 f5 5b 42 a9 2c dd 0b bd 27 3c 0d 9f 10 13 00 f9 fc 10 32 0c 02 0d 58 b4 26 94 85 0e 40 [ 873.649371] 00000340: f9 84 82 00 91 85 96 03 a9 fc 0e 01 e1 03 05 aa 7c 12 02 e0 03 04 aa 69 9c 0f be 13 b4 ff 28 2c [ 873.660047] 00000360: 02 01 65 b4 26 94 6c 29 7c 10 ec 10 2a 3c 05 7c 6e 06 60 74 00 b0 02 40 27 91 f4 6f 20 6a 40 b9 [ 873.670723] 00000380: 7c 37 02 40 0c 00 8b 00 cc 49 ac 53 01 14 aa d4 e6 7c 0a bc 54 01 ad ff ff 97 ad 0a c2 8c 34 bc [ 873.681400] 000003a0: 53 03 bd a9 5f 1c 00 72 8c 4a 6e 35 c0 01 9c 3f 7c 35 0d 75 1c 00 12 80 6a 40 b9 81 01 00 54 e0 [ 873.692076] 000003c0: 03 00 2a 7c 43 7c 0c 6d 44 20 2f ac 01 03 13 aa b9 e6 ff 97 6c 13 03 f5 00 00 34 93 0e 30 4c 08 [ 873.702753] 000003e0: 7d 0d e1 6c 67 04 03 14 aa 8a ff ff 97 2e 8c 03 7c 03 fc 1c 00 12 f4 0f 00 f9 14 00 80 d2 03 0c [ 873.713435] 00000400: 40 f9 24 00 03 eb 64 01 00 54 34 00 80 d2 9f 00 02 eb aa 01 00 54 b3 0b 00 f9 6c 0d 0f e1 03 02 [ 873.724106] 00000420: aa e0 03 03 aa 9a e6 ff 97 60 0e 00 f9 b3 0b 7c 91 01 14 aa f4 0f 6c 51 28 9c 03 00 0a 22 01 f8 [ 873.734782] 00000440: b7 94 0c c2 9a 43 0c 14 9b 03 0c 00 f9 7f 00 01 eb cc fe ff 54 94 06 00 91 6c 09 7c ac 01 00 00 [ 873.745458] 00000460: 21 d4 7d 0d f6 9d 64 be 27 bc 07 7c 0c 7d 2d 03 2d bd 05 60 2d 0d 04 e2 cd 4d cf 35 9c 05 ec 2c [ 873.756135] 00000480: fc 47 6c 0a 0d 01 40 27 91 93 c2 01 91 80 da 40 b9 95 2a 40 f9 7c 2b 2e 6d 05 e2 cd 54 b9 6c 58 [ 873.766816] 000004a0: 0c 3e 40 b9 20 00 00 0b 81 46 40 f9 80 3e 00 b9 7d 5d 37 31 2c 05 0c e3 03 00 aa fd 7b bf a9 e2 [ 873.777489] 000004c0: 03 01 aa 00 c0 01 8c 8f 05 61 28 40 f9 a8 ff ff 97 ec 9e bc 2d bc 5a 6c 7e 7c 52 00 07 c4 fe ff [ 873.788164] 000004e0: 97 e0 04 00 b4 60 04 80 52 45 af fe 97 1f 1c 00 72 20 04 00 54 b3 6c 43 00 0c 00 80 52 a0 32 40 [ 873.798840] 00000500: b9 1f 20 00 71 80 00 00 54 1f 24 00 71 14 00 80 12 94 16 94 5a e0 03 14 2b 7c 08 7c 87 09 b3 c2 [ 873.809517] 00000520: 01 91 b3 3a 00 f9 a0 42 02 91 fc 87 09 2c e7 ff 97 b4 7e 1b 29 01 00 00 90 7c 87 0b 21 80 2d 91 [ 873.820193] 00000540: 00 60 1f 91 a1 5e 00 f9 a0 6a be 97 b3 53 2c 2c 11 7c 14 00 0a 00 00 80 12 fb ff ff 17 60 41 80 [ 873.830881] 00000560: 12 f9 ff ff 17 01 38 40 f9 1f 38 00 f9 01 01 00 b4 7c 1c 7c c7 7c 2b 01 e4 1d ff 97 6c a0 ac 1c [ 873.841547] 00000580: 6c 01 6c a7 7c 4a 7c 16 6c 04 01 f3 53 01 a9 7c 66 01 13 00 80 52 fc 18 7c 0b 02 13 14 80 5a 84 [ 873.852222] 000005a0: 7c 1f 03 01 00 b4 e0 03 13 2b 3c 03 2a 4c 06 05 cb dd ff 97 80 06 00 a9 6c 1a 01 e0 03 02 2a 2a [ 873.862899] 000005c0: 4e 0d a2 02 bf 14 fd 7b bc 2b fc 08 09 14 40 01 d1 f5 5b 02 a9 15 c0 01 d1 6c 9e 00 3a 50 b3 26 [ 873.873575] 000005e0: 94 f6 03 00 aa 60 02 5e f8 01 00 80 52 7f 82 1c b8 80 00 00 b4 61 42 5d b8 21 04 00 11 61 42 1d [ 873.884251] 00000600: b8 e0 03 15 aa 15 00 80 52 eb 05 00 94 00 03 00 34 b7 1b 00 f9 77 02 5e f8 b7 03 00 b4 60 6a 40 [ 873.894928] 00000620: b9 61 74 00 b0 21 40 27 91 34 cd 08 17 9c 9a 09 2c ff ff 97 62 c2 5c b8 23 00 80 52 6c 0b 0d f5 [ 873.905607] 00000640: 03 03 2a 40 00 00 0b 63 02 39 29 21 00 03 0b 7c 0c 04 b7 1b 40 f9 e1 03 16 8e b1 46 b3 7d d8 15 [ 873.916280] 00000660: 8c 1a ad a0 c4 8c 85 6d 04 f7 9d 62 bf 9c 1a 02 3a fe ff 97 a0 7d 15 74 ac 10 05 21 80 01 91 53 [ 873.926958] 00000680: 94 1a 94 7c 2d ec 2f 7f 36 fd 7b b6 9c 05 6c 1f 05 76 74 00 b0 d5 42 27 91 7c 2f 01 b4 82 02 91 [ 873.937633] 000006a0: 7e 28 0e b3 7c c0 7c 93 00 12 14 aa b4 56 40 f9 bf 56 00 f9 25 b3 26 94 22 fe ff 97 40 07 00 b4 [ 873.948310] 000006c0: b7 63 03 a9 b3 42 00 91 b8 82 01 91 f7 03 7c 04 05 13 aa 01 b3 26 94 75 0a 6c 16 bc 01 0a 19 b3 [ 873.958986] 000006e0: 26 94 15 01 00 b4 60 0e 40 f9 b5 cc b8 00 2a a0 02 00 cb 9f 02 00 f1 01 10 54 fa 94 a2 80 9a 73 [ 873.969668] 00000700: a2 00 91 7f 02 18 eb 01 fe ff 54 76 04 00 b4 e0 7f 92 d2 d6 42 27 95 a0 e6 ae f2 9f 02 00 eb 8d [ 873.980339] 00000720: 05 00 54 d3 82 01 91 e0 03 17 aa 6c 94 03 20 94 1a 94 a1 e3 bc 01 00 16 e7 8f 1a 94 a2 8f 48 a9 [ 873.991016] 00000740: a2 0f 05 a9 a4 97 47 a9 a4 17 04 a9 a0 9b 40 b9 a0 63 00 b9 a0 03 01 91 cd 8b 1a 94 82 02 00 8b [ 874.001692] 00000760: 7c 06 01 03 00 80 d2 6c 08 0d f2 93 1a 94 f3 03 00 2a 00 02 f8 37 b7 63 43 a9 7c 49 7c 44 ad 2a [ 874.012368] 00000780: ca 8c 2a 7c 23 6c 03 7c 50 36 7e 00 c0 5a 22 2c 25 07 80 52 01 7d 80 52 af 7c 14 94 7c 05 01 f5 [ 874.023045] 000007a0: ff ff 17 27 5c 00 05 fa 80 52 f3 01 80 12 a8 ce 03 ee ff 24 bc 28 fc 4f 00 22 f4 d7 01 a9 75 74 [ 874.033721] 000007c0: 00 b0 b4 42 27 91 f6 17 00 f9 81 06 40 f9 e1 06 00 b5 01 80 41 f9 21 10 40 f9 c1 06 00 b4 01 00 [ 874.044397] 000007e0: 40 f9 16 00 80 12 22 30 43 39 e2 02 00 36 8c 2e 08 0b 00 f9 21 84 40 f9 a1 04 00 b4 9c 9f 08 5d [ 874.055074] 00000800: 00 d0 00 c0 25 91 14 7b 14 94 bc 30 00 10 14 aa 9f b2 26 94 f8 03 00 aa 80 06 40 f9 c0 01 00 b4 [ 874.065750] 00000820: e1 03 18 aa a0 42 27 91 b5 b2 26 94 16 00 80 52 7c 20 01 2a 7d 14 94 6c b2 7c 16 07 e0 03 16 2a [ 874.076427] 00000840: f4 d7 41 a9 f6 17 6c b3 bc 4a 05 60 7a 41 f9 6f 3b 00 94 7e 8c e0 00 7c cc 00 04 13 aa 93 06 00 [ 874.087108] 00000860: f9 f6 20 14 94 97 5a 00 f9 17 00 80 d2 ea ff ff 17 6c 0b 7e 45 9e b2 7e 53 16 2a ec 0a 2e 3c 01 [ 874.097780] 00000880: 05 f6 01 80 12 e6 ff ff 17 7d 19 e4 9d 55 bb 9c 4f 6f 4e 14 80 00 8c 70 7c 21 00 02 f7 63 03 a9 [ 874.108458] 000008a0: b8 42 27 91 f9 6b 04 a9 18 43 00 91 f9 03 00 aa 22 1c 21 00 03 77 0a 13 8b f7 f2 7d d3 16 03 17 [ 874.119132] 000008c0: 8b e0 03 16 aa 66 b2 26 94 fa 6c 1c 08 6e 40 b9 20 05 00 37 e1 03 1a aa 7c 02 0d 7c b2 26 94 98 [ 874.129809] 000008e0: 32 40 f9 98 05 00 b4 61 0a 13 8b 7c 1e 05 00 0c 01 8b 17 00 80 52 2e 0c 1e 05 00 03 3f d6 fa 03 [ 874.140485] 00000900: 00 2a 7d 06 52 cc 26 0d fa 00 00 34 20 83 5f f8 37 00 80 52 20 83 01 a9 24 9c 22 07 16 aa b2 fd [ 874.151162] 00000920: ff 97 b5 42 27 91 22 3c 23 01 b3 0e 13 8b bc 1e 05 16 aa 60 b2 26 94 60 16 24 7f 22 e0 03 17 27 [ 874.161838] 00000940: 7c 0e 08 f7 63 43 a9 f9 6b 44 a9 fd 7b c5 8c 4a 01 e0 22 00 91 6c 09 06 00 03 00 8b 6b 86 26 94 [ 874.172515] 00000960: 80 22 5c 25 08 78 1f 12 80 6e 00 b9 d1 ff ff 17 6c 10 6d 14 30 dd 10 e5 27 bc 08 bc 24 7c 74 7c [ 874.183191] 00000980: 92 7c 23 6c 23 7c 26 00 10 74 74 00 b0 97 42 27 91 13 68 40 b9 f7 42 00 91 75 0a 13 8b b5 f2 7d [ 874.193867] 000009a0: d3 f9 02 15 8b e0 03 19 aa 1d b2 ac 24 0e c0 82 00 91 f8 e5 ff 97 f8 03 00 2a 60 00 f8 37 c0 6c [ 874.204544] 000009c0: 0f 01 02 00 37 94 dd 19 93 9c 19 7f 27 19 aa 2c 2b 3d 03 18 37 3d 03 a0 9c 19 07 16 aa e0 02 00 [ 874.215220] 000009e0: 8b 37 86 26 94 8c 0a 04 78 1f 12 c0 6e 00 b9 7e 42 fd 7b dd f4 0b 24 3c 20 01 03 00 00 14 7c 6a [ 874.225902] 00000a00: 01 3f 20 03 d5 6c e3 05 ca ff ff 97 a0 ff ff 37 2a 2c 2c 7c 03 6c c6 fd e2 c1 29 4e 1c fd 7b bc [ 874.236573] 00000a20: 20 7d 1e f3 25 bc 29 6c c5 0d f6 03 02 2a 35 00 80 d2 00 41 38 d5 60 3a 00 f9 7c 00 03 15 0c 00 [ 874.247250] 00000a40: f9 bf 3b bc 0c 6c 2e 05 55 fd ff 97 60 3a 40 f9 7c b8 05 94 a2 26 94 02 00 00 14 fd 10 a8 dc 10 [ 874.257925] 00000a60: fc 03 7c 07 0c 00 00 40 f9 c0 fd 07 36 01 41 38 d5 3f 0c 00 23 ec 2e 05 62 3a 40 f9 62 02 00 b4 [ 874.268602] 00000a80: 22 6c 20 06 00 60 44 b9 e0 03 00 35 13 6c 0e 08 26 44 b9 73 62 10 91 e0 08 00 34 7c 68 36 2d 26 [ 874.279278] 00000aa0: 94 dc 9e 7c b0 01 ac 00 00 54 28 cc 11 dc 43 0b 03 14 aa 1b dc ff 97 a2 43 01 91 40 04 bf 7d 92 [ 874.289954] 00000ac0: aa 22 0f 25 f6 e7 ff 23 6c 28 bc 93 ec 05 03 01 aa c4 d2 ff 97 8c 73 0c fb ff 54 76 04 00 34 df [ 874.300631] 00000ae0: 06 00 71 c1 02 00 54 22 ec 2b 05 60 42 27 91 00 e0 00 91 7c d2 02 00 0c 40 f9 75 7c 01 00 16 00 [ 874.311310] 00000b00: 3f d6 97 02 00 cb a0 82 02 91 97 b1 26 94 a2 56 40 f9 5f 00 00 f1 e1 12 42 fa 4a 00 00 54 b7 56 [ 874.321984] 00000b20: 00 f9 73 42 27 91 e1 6c df 04 82 02 91 aa b1 26 94 6c cb 00 14 c7 ff ff 17 81 71 00 b0 20 40 66 [ 874.332660] 00000b40: 39 80 f8 ff 35 22 00 80 52 60 5d 00 d0 22 40 26 39 00 00 26 91 e1 03 16 2a c3 88 6c fb 03 21 d4 [ 874.343337] 00000b60: bc ff ff 17 27 fd 01 40 bd 0f e0 22 6c 20 01 40 80 12 c4 27 3e 0b b3 a9 fc fd 6c a0 22 0c 33 6c [ 874.354013] 00000b80: 5a 05 14 00 80 52 f8 03 01 2a fc fe 26 fc 22 00 02 17 41 38 d5 85 fc ff 97 00 0b 00 b4 1f 7b 1f [ 874.364689] 00000ba0: 72 41 0a 00 54 22 0e 24 04 ad 24 0e 24 00 0a 26 cc 29 03 14 2a b6 17 00 f9 6c 7e 7c d9 0c c0 42 [ 874.375366] 00000bc0: 27 91 01 0c 01 8b b9 23 00 f9 b9 63 01 23 9c 23 05 20 83 00 91 b9 2f 00 f9 22 bc 34 05 f0 e4 ff [ 874.386042] 00000be0: 97 b4 7f 18 29 22 ac 23 00 02 00 e0 1c 91 a1 56 40 a9 02 00 00 90 a0 5f 00 f9 42 80 2d 91 11 00 [ 874.396717] 00000c00: 00 [ 874.399328] UBIFS error (ubi1:0 pid 2566): do_readpage: cannot read page 131 of inode 5725, error -22 [ 874.409233] UBIFS error (ubi1:0 pid 2566): do_readpage: bad data node (block 131, inode 5725) [ 874.417691] magic 0x6101831 [ 874.421325] crc 0x2503e06e [ 874.425058] node_type 1 (data node) [ 874.429050] group_type 0 (no node group) [ 874.433410] sqnum 59095 [ 874.436694] len 3121 [ 874.439894] key (5725, data, 131) [ 874.444240] size 4096 [ 874.447450] compr_typ 1 [ 874.450401] data size 3073 [ 874.453613] data: [ 874.455611] 00000000: 00 b7 23 04 01 8b 21 0c 03 8b 23 4e 00 d0 1f 10 01 eb e1 fd ff 54 63 60 3a 91 e0 29 80 d2 63 68 [ 874.466291] 00000020: 00 91 ed ff ff 17 1f 20 03 d5 e0 2f 8a d2 20 00 a0 f2 3f 00 00 eb cd e7 ff 54 e3 2f 8a 92 c3 ff [ 874.476966] 00000040: bf f2 21 00 03 8b e7 04 00 91 3f 00 00 eb ac ff ff 54 37 ff ff 17 00 00 00 00 fd 7b bd a9 fd 03 [ 874.487646] 00000060: 00 91 f3 53 01 a9 f3 03 00 aa f5 13 00 f9 f4 03 01 aa e0 03 01 aa f5 03 02 aa 61 02 00 f9 21 00 [ 874.498320] 00000080: 40 f9 20 00 3f d6 60 d6 00 a9 20 00 80 d2 81 16 40 b9 00 20 c1 9a 00 04 00 d1 60 fe 01 a9 f3 53 [ 874.508998] 000000a0: 41 a9 f5 13 40 f9 fd 7b c3 a8 c0 03 5f d6 1f 20 03 d5 fd 7b be a9 fd 03 00 91 f3 0b 00 f9 f3 03 [ 874.519673] 000000c0: 00 aa 01 00 40 f9 e0 03 01 aa 21 cc 09 00 be 63 0a 40 a9 61 12 40 f9 02 00 02 cb 67 04 40 f9 66 [ 874.530351] 000000e0: 10 40 b9 42 00 07 8a 65 12 41 a9 42 04 06 9b 84 00 02 8a 64 12 00 f9 61 14 40 b9 41 24 c1 9a 21 [ 874.541025] 00000100: 00 05 8b 60 86 00 a9 e0 03 01 aa f3 0b 40 f9 fd 7b c2 a8 c0 03 5f d6 05 08 40 a9 04 08 40 f9 23 [ 874.551701] 00000120: 00 02 cb 07 10 40 f9 a6 04 40 f9 a8 00 42 29 63 00 06 8a 7f 04 46 eb c8 00 00 54 61 1c 08 9b 21 [ 874.562377] 00000140: 24 c0 9a 20 00 04 8b c0 03 5f d6 1f 20 03 d5 42 00 01 cb 41 00 06 8a 21 7c 08 9b 21 00 07 cb 21 [ 874.573054] 00000160: 24 c0 9a 80 00 01 cb c0 03 5f d6 00 00 00 00 fd 7b bf a9 00 00 80 52 fd 03 00 91 a1 ed ff 97 fd [ 874.583730] 00000180: 7b c1 a8 c0 03 5f d6 fd 7b bf a9 20 00 80 52 fd 03 00 91 9b ed ff 97 fd 7b c1 a8 c0 03 5f d6 2a [ 874.594407] 000001a0: bc 03 00 02 73 74 00 b0 73 42 27 91 e0 03 13 aa e0 b4 26 94 e1 03 00 aa 6c 01 05 73 06 40 f9 f8 [ 874.605083] 000001c0: b4 26 94 6c 01 2a 0c 03 7c 36 7c 07 07 61 74 00 b0 22 40 27 91 fd 03 bc 26 00 03 01 68 40 b9 13 [ 874.615759] 000001e0: 0c 40 f9 21 08 01 8b 41 0c 01 8b 20 14 40 f9 00 7f 30 02 00 cb 2e fc 00 06 00 44 40 f9 20 00 00 [ 874.626436] 00000200: cb c0 dc 1b 7c 09 fc 08 00 02 f3 03 01 aa d8 ff ff 97 20 01 00 b4 21 6d 00 b0 7f 02 00 f9 6c 1b [ 874.637112] 00000220: 05 21 7c 4b b9 61 06 00 f9 2a 2c 01 05 a0 02 80 12 fc ff ff 17 2e 5c 08 09 e0 03 01 2a f4 03 01 [ 874.647789] 00000240: 2a 00 08 00 8b 7c 14 00 2c 21 40 27 91 f5 13 00 f9 21 0c 00 8b 73 02 00 f9 60 82 00 91 f5 03 02 [ 874.658465] 00000260: aa 02 00 80 52 21 30 40 b9 3c e8 ff 97 75 32 00 f9 74 7e 0d 29 00 00 00 90 00 80 2d 91 60 26 00 [ 874.669148] 00000280: f9 f3 53 41 a9 f5 13 7d 37 c3 9c 37 27 9c 02 04 53 01 a9 14 20 00 91 6c 15 0b 20 6c 40 b9 60 00 [ 874.679818] 000002a0: 00 36 e0 03 14 aa c4 88 7e 27 13 aa 6c 01 0d 8f 88 26 94 60 6e 40 b9 00 00 00 32 60 6e 00 b9 6c [ 874.690495] 000002c0: 09 fc 40 2a bd 02 f4 7f 58 5b 02 a9 fc 30 00 02 f6 03 01 aa 60 42 00 91 93 6a 40 b9 73 0a 13 8b [ 874.701171] 000002e0: 13 0c 13 8b 6c 30 0c 79 b4 26 94 96 0e 00 f9 f5 03 00 aa e1 03 14 8c 34 00 09 dc ff ff 97 81 0e [ 874.711847] 00000300: 40 f9 03 00 80 52 02 00 80 d2 80 82 00 91 89 e8 ff 97 e1 03 15 9c 03 03 88 b4 26 94 60 0e bc 30 [ 874.722524] 00000320: 7c 0f 01 f5 5b 42 a9 2c dd 0b bd 27 3c 0d 9f 10 13 00 f9 fc 10 32 0c 02 0d 58 b4 26 94 85 0e 40 [ 874.733199] 00000340: f9 84 82 00 91 85 96 03 a9 fc 0e 01 e1 03 05 aa 7c 12 02 e0 03 04 aa 69 9c 0f be 13 b4 ff 28 2c [ 874.743876] 00000360: 02 01 65 b4 26 94 6c 29 7c 10 ec 10 2a 3c 05 7c 6e 06 60 74 00 b0 02 40 27 91 f4 6f 20 6a 40 b9 [ 874.754552] 00000380: 7c 37 02 40 0c 00 8b 00 cc 49 ac 53 01 14 aa d4 e6 7c 0a bc 54 01 ad ff ff 97 ad 0a c2 8c 34 bc [ 874.765229] 000003a0: 53 03 bd a9 5f 1c 00 72 8c 4a 6e 35 c0 01 9c 3f 7c 35 0d 75 1c 00 12 80 6a 40 b9 81 01 00 54 e0 [ 874.775909] 000003c0: 03 00 2a 7c 43 7c 0c 6d 44 20 2f ac 01 03 13 aa b9 e6 ff 97 6c 13 03 f5 00 00 34 93 0e 30 4c 08 [ 874.786591] 000003e0: 7d 0d e1 6c 67 04 03 14 aa 8a ff ff 97 2e 8c 03 7c 03 fc 1c 00 12 f4 0f 00 f9 14 00 80 d2 03 0c [ 874.797259] 00000400: 40 f9 24 00 03 eb 64 01 00 54 34 00 80 d2 9f 00 02 eb aa 01 00 54 b3 0b 00 f9 6c 0d 0f e1 03 02 [ 874.807934] 00000420: aa e0 03 03 aa 9a e6 ff 97 60 0e 00 f9 b3 0b 7c 91 01 14 aa f4 0f 6c 51 28 9c 03 00 0a 22 01 f8 [ 874.818611] 00000440: b7 94 0c c2 9a 43 0c 14 9b 03 0c 00 f9 7f 00 01 eb cc fe ff 54 94 06 00 91 6c 09 7c ac 01 00 00 [ 874.829287] 00000460: 21 d4 7d 0d f6 9d 64 be 27 bc 07 7c 0c 7d 2d 03 2d bd 05 60 2d 0d 04 e2 cd 4d cf 35 9c 05 ec 2c [ 874.839963] 00000480: fc 47 6c 0a 0d 01 40 27 91 93 c2 01 91 80 da 40 b9 95 2a 40 f9 7c 2b 2e 6d 05 e2 cd 54 b9 6c 58 [ 874.850640] 000004a0: 0c 3e 40 b9 20 00 00 0b 81 46 40 f9 80 3e 00 b9 7d 5d 37 31 2c 05 0c e3 03 00 aa fd 7b bf a9 e2 [ 874.861317] 000004c0: 03 01 aa 00 c0 01 8c 8f 05 61 28 40 f9 a8 ff ff 97 ec 9e bc 2d bc 5a 6c 7e 7c 52 00 07 c4 fe ff [ 874.871993] 000004e0: 97 e0 04 00 b4 60 04 80 52 45 af fe 97 1f 1c 00 72 20 04 00 54 b3 6c 43 00 0c 00 80 52 a0 32 40 ^C[ 874.882670] 00000500: b9 1f 20 00 71 80 00 00 54 1f 24 00 71 14 00 80 12 94 16 94 5a e0 03 14 2b 7c 08 7c 87 09 b3 c2 [ 874.893519] 00000520: 01 91 b3 3a 00 f9 a0 42 02 91 fc 87 09 2c e7 ff 97 b4 7e 1b 29 01 00 00 90 7c 87 0b 21 80 2d 91 [ 874.904196] 00000540: 00 60 1f 91 a1 5e 00 f9 a0 6a be 97 b3 53 2c 2c 11 7c 14 00 0a 00 00 80 12 fb ff ff 17 60 41 80 [ 874.914872] 00000560: 12 f9 ff ff 17 01 38 40 f9 1f 38 00 f9 01 01 00 b4 7c 1c 7c c7 7c 2b 01 e4 1d ff 97 6c a0 ac 1c [ 874.925554] 00000580: 6c 01 6c a7 7c 4a 7c 16 6c 04 01 f3 53 01 a9 7c 66 01 13 00 80 52 fc 18 7c 0b 02 13 14 80 5a 84 [ 874.936225] 000005a0: 7c 1f 03 01 00 b4 e0 03 13 2b 3c 03 2a 4c 06 05 cb dd ff 97 80 06 00 a9 6c 1a 01 e0 03 02 2a 2a [ 874.946902] 000005c0: 4e 0d a2 02 bf 14 fd 7b bc 2b fc 08 09 14 40 01 d1 f5 5b 02 a9 15 c0 01 d1 6c 9e 00 3a 50 b3 26 [ 874.957577] 000005e0: 94 f6 03 00 aa 60 02 5e f8 01 00 80 52 7f 82 1c b8 80 00 00 b4 61 42 5d b8 21 04 00 11 61 42 1d [ 874.968254] 00000600: b8 e0 03 15 aa 15 00 80 52 eb 05 00 94 00 03 00 34 b7 1b 00 f9 77 02 5e f8 b7 03 00 b4 60 6a 40 [ 874.978931] 00000620: b9 61 74 00 b0 21 40 27 91 34 cd 08 17 9c 9a 09 2c ff ff 97 62 c2 5c b8 23 00 80 52 6c 0b 0d f5 [ 874.989607] 00000640: 03 03 2a 40 00 00 0b 63 02 39 29 21 00 03 0b 7c 0c 04 b7 1b 40 f9 e1 03 16 8e b1 46 b3 7d d8 15 [ 875.000283] 00000660: 8c 1a ad a0 c4 8c 85 6d 04 f7 9d 62 bf 9c 1a 02 3a fe ff 97 a0 7d 15 74 ac 10 05 21 80 01 91 53 [ 875.010960] 00000680: 94 1a 94 7c 2d ec 2f 7f 36 fd 7b b6 9c 05 6c 1f 05 76 74 00 b0 d5 42 27 91 7c 2f 01 b4 82 02 91 [ 875.021639] 000006a0: 7e 28 0e b3 7c c0 7c 93 00 12 14 aa b4 56 40 f9 bf 56 00 f9 25 b3 26 94 22 fe ff 97 40 07 00 b4 [ 875.032313] 000006c0: b7 63 03 a9 b3 42 00 91 b8 82 01 91 f7 03 7c 04 05 13 aa 01 b3 26 94 75 0a 6c 16 bc 01 0a 19 b3 [ 875.042989] 000006e0: 26 94 15 01 00 b4 60 0e 40 f9 b5 cc b8 00 2a a0 02 00 cb 9f 02 00 f1 01 10 54 fa 94 a2 80 9a 73 [ 875.053666] 00000700: a2 00 91 7f 02 18 eb 01 fe ff 54 76 04 00 b4 e0 7f 92 d2 d6 42 27 95 a0 e6 ae f2 9f 02 00 eb 8d [ 875.064341] 00000720: 05 00 54 d3 82 01 91 e0 03 17 aa 6c 94 03 20 94 1a 94 a1 e3 bc 01 00 16 e7 8f 1a 94 a2 8f 48 a9 [ 875.075019] 00000740: a2 0f 05 a9 a4 97 47 a9 a4 17 04 a9 a0 9b 40 b9 a0 63 00 b9 a0 03 01 91 cd 8b 1a 94 82 02 00 8b [ 875.085695] 00000760: 7c 06 01 03 00 80 d2 6c 08 0d f2 93 1a 94 f3 03 00 2a 00 02 f8 37 b7 63 43 a9 7c 49 7c 44 ad 2a [ 875.096375] 00000780: ca 8c 2a 7c 23 6c 03 7c 50 36 7e 00 c0 5a 22 2c 25 07 80 52 01 7d 80 52 af 7c 14 94 7c 05 01 f5 [ 875.107048] 000007a0: ff ff 17 27 5c 00 05 fa 80 52 f3 01 80 12 a8 ce 03 ee ff 24 bc 28 fc 4f 00 22 f4 d7 01 a9 75 74 [ 875.117724] 000007c0: 00 b0 b4 42 27 91 f6 17 00 f9 81 06 40 f9 e1 06 00 b5 01 80 41 f9 21 10 40 f9 c1 06 00 b4 01 00 [ 875.128400] 000007e0: 40 f9 16 00 80 12 22 30 43 39 e2 02 00 36 8c 2e 08 0b 00 f9 21 84 40 f9 a1 04 00 b4 9c 9f 08 5d [ 875.139077] 00000800: 00 d0 00 c0 25 91 14 7b 14 94 bc 30 00 10 14 aa 9f b2 26 94 f8 03 00 aa 80 06 40 f9 c0 01 00 b4 [ 875.149753] 00000820: e1 03 18 aa a0 42 27 91 b5 b2 26 94 16 00 80 52 7c 20 01 2a 7d 14 94 6c b2 7c 16 07 e0 03 16 2a [ 875.160429] 00000840: f4 d7 41 a9 f6 17 6c b3 bc 4a 05 60 7a 41 f9 6f 3b 00 94 7e 8c e0 00 7c cc 00 04 13 aa 93 06 00 [ 875.171106] 00000860: f9 f6 20 14 94 97 5a 00 f9 17 00 80 d2 ea ff ff 17 6c 0b 7e 45 9e b2 7e 53 16 2a ec 0a 2e 3c 01 [ 875.181787] 00000880: 05 f6 01 80 12 e6 ff ff 17 7d 19 e4 9d 55 bb 9c 4f 6f 4e 14 80 00 8c 70 7c 21 00 02 f7 63 03 a9 [ 875.192459] 000008a0: b8 42 27 91 f9 6b 04 a9 18 43 00 91 f9 03 00 aa 22 1c 21 00 03 77 0a 13 8b f7 f2 7d d3 16 03 17 [ 875.203135] 000008c0: 8b e0 03 16 aa 66 b2 26 94 fa 6c 1c 08 6e 40 b9 20 05 00 37 e1 03 1a aa 7c 02 0d 7c b2 26 94 98 [ 875.213811] 000008e0: 32 40 f9 98 05 00 b4 61 0a 13 8b 7c 1e 05 00 0c 01 8b 17 00 80 52 2e 0c 1e 05 00 03 3f d6 fa 03 [ 875.224491] 00000900: 00 2a 7d 06 52 cc 26 0d fa 00 00 34 20 83 5f f8 37 00 80 52 20 83 01 a9 24 9c 22 07 16 aa b2 fd [ 875.235165] 00000920: ff 97 b5 42 27 91 22 3c 23 01 b3 0e 13 8b bc 1e 05 16 aa 60 b2 26 94 60 16 24 7f 22 e0 03 17 27 [ 875.245841] 00000940: 7c 0e 08 f7 63 43 a9 f9 6b 44 a9 fd 7b c5 8c 4a 01 e0 22 00 91 6c 09 06 00 03 00 8b 6b 86 26 94 [ 875.256517] 00000960: 80 22 5c 25 08 78 1f 12 80 6e 00 b9 d1 ff ff 17 6c 10 6d 14 30 dd 10 e5 27 bc 08 bc 24 7c 74 7c [ 875.267193] 00000980: 92 7c 23 6c 23 7c 26 00 10 74 74 00 b0 97 42 27 91 13 68 40 b9 f7 42 00 91 75 0a 13 8b b5 f2 7d [ 875.277870] 000009a0: d3 f9 02 15 8b e0 03 19 aa 1d b2 ac 24 0e c0 82 00 91 f8 e5 ff 97 f8 03 00 2a 60 00 f8 37 c0 6c [ 875.288546] 000009c0: 0f 01 02 00 37 94 dd 19 93 9c 19 7f 27 19 aa 2c 2b 3d 03 18 37 3d 03 a0 9c 19 07 16 aa e0 02 00 [ 875.299223] 000009e0: 8b 37 86 26 94 8c 0a 04 78 1f 12 c0 6e 00 b9 7e 42 fd 7b dd f4 0b 24 3c 20 01 03 00 00 14 7c 6a [ 875.309899] 00000a00: 01 3f 20 03 d5 6c e3 05 ca ff ff 97 a0 ff ff 37 2a 2c 2c 7c 03 6c c6 fd e2 c1 29 4e 1c fd 7b bc [ 875.320575] 00000a20: 20 7d 1e f3 25 bc 29 6c c5 0d f6 03 02 2a 35 00 80 d2 00 41 38 d5 60 3a 00 f9 7c 00 03 15 0c 00 [ 875.331252] 00000a40: f9 bf 3b bc 0c 6c 2e 05 55 fd ff 97 60 3a 40 f9 7c b8 05 94 a2 26 94 02 00 00 14 fd 10 a8 dc 10 [ 875.341928] 00000a60: fc 03 7c 07 0c 00 00 40 f9 c0 fd 07 36 01 41 38 d5 3f 0c 00 23 ec 2e 05 62 3a 40 f9 62 02 00 b4 [ 875.352605] 00000a80: 22 6c 20 06 00 60 44 b9 e0 03 00 35 13 6c 0e 08 26 44 b9 73 62 10 91 e0 08 00 34 7c 68 36 2d 26 [ 875.363281] 00000aa0: 94 dc 9e 7c b0 01 ac 00 00 54 28 cc 11 dc 43 0b 03 14 aa 1b dc ff 97 a2 43 01 91 40 04 bf 7d 92 [ 875.373957] 00000ac0: aa 22 0f 25 f6 e7 ff 23 6c 28 bc 93 ec 05 03 01 aa c4 d2 ff 97 8c 73 0c fb ff 54 76 04 00 34 df [ 875.384634] 00000ae0: 06 00 71 c1 02 00 54 22 ec 2b 05 60 42 27 91 00 e0 00 91 7c d2 02 00 0c 40 f9 75 7c 01 00 16 00 [ 875.395310] 00000b00: 3f d6 97 02 00 cb a0 82 02 91 97 b1 26 94 a2 56 40 f9 5f 00 00 f1 e1 12 42 fa 4a 00 00 54 b7 56 [ 875.405987] 00000b20: 00 f9 73 42 27 91 e1 6c df 04 82 02 91 aa b1 26 94 6c cb 00 14 c7 ff ff 17 81 71 00 b0 20 40 66 [ 875.416663] 00000b40: 39 80 f8 ff 35 22 00 80 52 60 5d 00 d0 22 40 26 39 00 00 26 91 e1 03 16 2a c3 88 6c fb 03 21 d4 [ 875.427347] 00000b60: bc ff ff 17 27 fd 01 40 bd 0f e0 22 6c 20 01 40 80 12 c4 27 3e 0b b3 a9 fc fd 6c a0 22 0c 33 6c [ 875.438022] 00000b80: 5a 05 14 00 80 52 f8 03 01 2a fc fe 26 fc 22 00 02 17 41 38 d5 85 fc ff 97 00 0b 00 b4 1f 7b 1f [ 875.448693] 00000ba0: 72 41 0a 00 54 22 0e 24 04 ad 24 0e 24 00 0a 26 cc 29 03 14 2a b6 17 00 f9 6c 7e 7c d9 0c c0 42 [ 875.459390] 00000bc0: 27 91 01 0c 01 8b b9 23 00 f9 b9 63 01 23 9c 23 05 20 83 00 91 b9 2f 00 f9 22 bc 34 05 f0 e4 ff [ 875.470045] 00000be0: 97 b4 7f 18 29 22 ac 23 00 02 00 e0 1c 91 a1 56 40 a9 02 00 00 90 a0 5f 00 f9 42 80 2d 91 11 00 [ 875.480719] 00000c00: 00
So the errors are consistent between Linux 4.9 and U-boot 2018.1
Thank you so much for helping me look into this! Its been driving me nuts for 2 weeks now
I did a nanddump of the whole NAND partition too, let me know if that is of any value
Have a great weekend !
/Otto
On Fri, May 18, 2018 at 2:21 AM, Richard Weinberger richard@nod.at wrote:
Otto, Heiko,
Am Freitag, 18. Mai 2018, 10:44:43 CEST schrieb Heiko Schocher:
Hello Otto,
Am 17.05.2018 um 23:12 schrieb Otto Blom:
Hi There !
I'm seeing a strange problem with u-boot 2018.1 and Linux 4.14 (Xilinx Petalinux 2018.1). If I write a ubifs image to flash using Linux 4.9 I can mount and read files from the image in both u-boot 2018.1 and Linux 4.14. However as soon as I write a new file to the file-system from Linux, U-boot can no longer read the file. The filesystem still mounts, but when I attempt to read the file I get the following error
If you write with Linux 4.14, is Linux 4.9 able to read the file?
UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 661, inode 5763) magic 0x6101831 crc 0x8e6aff1a node_type 1 (data node) group_type 0 (no node group) sqnum 63819 len 3075 key (5763, data, 661) size 4096 compr_typ 1 data size 3027 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 661 of inode 5763, error -22
err = -EINVAL ...
The file can still be read correctly from Linux, leading me to believe there is some form of incompatibility going on. I noticed that the ubifs version number was bumped from 4 to 5 in this commit
Did you create a version 5 filesystem and tried to read it with u-boot?
Hmm... looking into fs/ubifs/ubifs.c read_block() it seems code breaks here (line 702 ff):
len = le32_to_cpu(dn->size); if (len <= 0 || len > UBIFS_BLOCK_SIZE) goto dump; dlen = le32_to_cpu(dn->ch.len) - UBIFS_DATA_NODE_SZ; out_len = UBIFS_BLOCK_SIZE; err = ubifs_decompress(c, &dn->data, dlen, addr, &out_len, le16_to_cpu(dn->compr_type)); if (err || len != out_len) goto dump;
len is 3075 ... so it would be nice to see a printf after ubifs_decompress() call, and print the values from out_len, err, len ...
It seems to me only ubifs_decompress() can fail here ... looking into ubifs_decompress()... Hmm... as we see no ubifs_err output from ubifs_decompress() only the case "len != out_len" can happen in your case ...
You use UBIFS_COMPR_LZO ... may a problem there?
No real idea why ...
http://git.infradead.org/linux-ubifs.git/commit/fc4b891bbefa73b496bb44b076bb...
Both Linux 4.9 and U-boot 18.1 still have version 4. Could that have something do to with it ?
I think not, but may I miss here something...
@Richard: any idea?
Not really. Like you said, I'm interested in len, out_len too. If this also not enlightens us, I'd like to have a dump of the UBIFS.
Thanks, //richard

Otto,
Am Freitag, 18. Mai 2018, 23:02:17 CEST schrieb Otto Blom:
Hallo Heiko & Richard !
Turns out the len and out_len do not match, much like you suspected. Out_len is 2 bytes short (4094 vs 4096) See log below
UBIFS DBG tnc: search key (5725, data, 124) UBIFS DBG tnc: found 1, lvl 0, n 2 UBIFS DBG tnc: LEB 566:61864, key (5725, data, 124) UBIFS DBG io: LEB 566:61864, data node, length 3635 UBIFS DBG tnc: search key (5725, data, 125) UBIFS DBG tnc: found 1, lvl 0, n 3 UBIFS DBG tnc: LEB 566:65504, key (5725, data, 125) UBIFS DBG io: LEB 566:65504, data node, length 3411 UBIFS DBG tnc: search key (5725, data, 126) UBIFS DBG tnc: found 1, lvl 0, n 4 UBIFS DBG tnc: LEB 566:68920, key (5725, data, 126) UBIFS DBG io: LEB 566:68920, data node, length 3041 UBIFS DBG tnc: search key (5725, data, 127) UBIFS DBG tnc: found 1, lvl 0, n 5 UBIFS DBG tnc: LEB 566:71968, key (5725, data, 127) UBIFS DBG io: LEB 566:71968, data node, length 4144 UBIFS DBG tnc: search key (5725, data, 128) UBIFS DBG tnc: found 1, lvl 0, n 6 UBIFS DBG tnc: LEB 566:76112, key (5725, data, 128) UBIFS DBG io: LEB 566:76112, data node, length 3818 UBIFS DBG tnc: search key (5725, data, 129) UBIFS DBG tnc: found 1, lvl 0, n 7 UBIFS DBG tnc: LEB 566:79936, key (5725, data, 129) UBIFS DBG io: LEB 566:79936, data node, length 4061 UBIFS DBG tnc: search key (5725, data, 130) UBIFS DBG io: LEB 560:17120, indexing node, length 188 UBIFS DBG tnc: LEB 560:17120, level 0, 8 branch UBIFS DBG tnc: found 1, lvl 0, n 0 UBIFS DBG tnc: LEB 566:84000, key (5725, data, 130) UBIFS DBG io: LEB 566:84000, data node, length 3212 UBIFS DBG tnc: search key (5725, data, 131) UBIFS DBG tnc: found 1, lvl 0, n 1 UBIFS DBG tnc: LEB 566:87216, key (5725, data, 131) UBIFS DBG io: LEB 566:87216, data node, length 3121 ubifs_decompress RC: 0 len: 4096 out_len: 4094 UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 131, inode 5725) magic 0x6101831 crc 0x2503e06e node_type 1 (data node) group_type 0 (no node group) sqnum 59095 len 3121 key (5725, data, 131) size 4096 compr_typ 1 data size 3073 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 131 of inode 5725, error -22 Error reading file '/boot/Image'
This is U-Boot, right?
If I write the file system in 4.14 and attempt to mount it on 4.9 I get
root@bronte2:~# ubiattach /dev/ubi_ctrl -p /dev/mtd0 -d 0 #Create /dev/ubi8 [ 39.212876] ubi0 error: ubi_attach: PEB 51 contains corrupted VID header, and the data does not contain all 0xFF [ 39.222999] ubi0 error: ubi_attach: this may be a non-UBI PEB or a severe VID header corruption which requires manual inspection [ 39.234526] Volume identifier header dump: [ 39.238601] magic 55424921 [ 39.241725] version 1 [ 39.244232] vol_type 1 [ 39.246758] copy_flag 0 [ 39.249278] compat 0 [ 39.251783] vol_id 0 [ 39.254311] lnum 49 [ 39.256914] data_size 0 [ 39.259429] used_ebs 0 [ 39.261954] data_pad 0 [ 39.264464] sqnum 0 [ 39.266986] hdr_crc 9a7266c9 [ 39.270108] Volume identifier header hexdump: [ 39.274470] hexdump of PEB 51 offset 4096, length 126976[ 39.871671] ubi0 error: ubi_attach: 1 PEBs are corrupted and preserved [ 39.878132] Corrupted PEBs are: 51 [ 39.889469] UBI assert failed in ubi_wl_init at 1666 (pid 2455)
This makes no sense at all since the failure happens on a layer below, UBI. attach is also not mount.
Which is the same error I get if I try to mount the file system in u-boot 2018.1
Also, If I attempt to read a file that was written using 4.14 running 4.9 Linux I get the same error that 2018.1 U-boot reported, except I also get the hexdump. See below
root@bronte2:~# cp /mnt/ubifs2/boot/Image /dev/null [ 871.157694] UBIFS error (ubi1:0 pid 2566): do_readpage: bad data node (block 131, inode 5725) [ 871.166166] magic 0x6101831 [ 871.169812] crc 0x2503e06e [ 871.173527] node_type 1 (data node) [ 871.177527] group_type 0 (no node group) [ 871.181870] sqnum 59095 [ 871.185157] len 3121 [ 871.188362] key (5725, data, 131) [ 871.192709] size 4096 [ 871.195909] compr_typ 1 [ 871.198876] data size 3073 [ 871.202080] data:
Hmmm, how and where did you create that filesystem? Can you share it? This should definitely work.
Thanks, //richard

Hi Richard !
Correct, the first error is printed in U-boot 2018.1 (which also matches the error I see if I try to read the file in Linux 4.9).
The ubi file is created using Yocto 2.4.1 (comes with PetaLinux 2018.1) with the following settings
MKUBIFS_ARGS = " -m 2048 -e 126976 -c 4096 -x lzo " UBINIZE_ARGS = " -m 2048 -p 128KiB"
I will send you a separate email with a dropbox link containing the ubi file, as I would prefer not to have it posted publicly
To eliminate the file generation from the equation I just created an empty file system while running Linux 4.14. This time it fails on the decompression in both u-boot & the older 4.9 Linux.See all steps below.
By the way, I'm running MTD tools 2.0.0 on Linux 4.14
nandtest runs OK root@bronte2:~# nandtest /dev/mtd0 ECC corrections: 0 ECC failures : 0 Bad blocks : 0 BBT blocks : 0 0bfe0000: checking...of 4)... Finished pass 1 successfully
-------------- Create Fresh UBIFS file system in Linux 4.14 -----------------
root@bronte2:~# flash_eraseall /dev/mtd0
root@bronte2:~# ubiformat -y /dev/mtd0 ubiformat: mtd0 (nand), size 201326592 bytes (192.0 MiB), 1536 eraseblocks of 131072 bytes (128.0 KiB), min. I/O size 2048 bytes libscan: scanning eraseblock 1535 -- 100 % complete ubiformat: 1536 eraseblocks have valid erase counter, mean value is 1 ubiformat: formatting eraseblock 1535 -- 100 % complete
root@bronte2:~# ubiattach -p /dev/mtd0 UBI device number 0, total 1536 LEBs (195035136 bytes, 186.0 MiB), available 1452 LEBs (184369152 bytes, 175.8 MiB), LEB size 126976 bytes (124.0 KiB) [ 327.214676] ubi0: attaching mtd0 [ 327.512205] ubi0: scanning is finished [ 327.520635] ubi0: attached mtd0 (name "rootfs1", size 192 MiB) [ 327.520640] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 327.520643] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 327.520647] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 327.520650] ubi0: good PEBs: 1536, bad PEBs: 0, corrupted PEBs: 0 [ 327.520653] ubi0: user volume: 0, internal volumes: 1, max. volumes count: 128 [ 327.520656] ubi0: max/mean erase counter: 3/2, WL threshold: 4096, image sequence number: 679562370 [ 327.520660] ubi0: available PEBs: 1452, total reserved PEBs: 84, PEBs reserved for bad PEB handling: 80 [ 327.520671] ubi0: background thread "ubi_bgt0d" started, PID 2723
root@bronte2:~# ubimkvol /dev/ubi0 -N rootfs -m Set volume size to 184369152 Volume ID 0, size 1452 LEBs (184369152 bytes, 175.8 MiB), LEB size 126976 bytes (124.0 KiB), dynamic, name "rootfs", alignment 1 [ 388.953037] UBIFS (ubi0:0): default file-system created [ 388.953332] UBIFS (ubi0:0): background thread "ubifs_bgt0_0" started, PID 2737 [ 388.986507] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs" [ 388.986514] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 388.986519] UBIFS (ubi0:0): FS size: 182845440 bytes (174 MiB, 1440 LEBs), journal size 9142272 bytes (8 MiB, 72 LEBs) [ 388.986522] UBIFS (ubi0:0): reserved for root: 4952683 bytes (4836 KiB) [ 388.986528] UBIFS (ubi0:0): media format: w5/r0 (latest is w5/r0), UUID 9F3EA589-6F91-42DF-BC93-216FB3868A2D, small LPT model
root@bronte2:~# mkdir /mnt/ubifs1/boot root@bronte2:~# mount -t ubifs /dev/ubi0_0 /mnt/ubifs1 root@bronte2:~# cp /boot/* /mnt/ubifs1/boot/ root@bronte2:~# sync
[Reboot into u-boot 2018.1]
--------------- Attempting to read files back in U-boot 2018.1 ----------
ZynqMP> ubi part rootfs1 Bad block table found at page 262080, version 0x01 Bad block table found at page 262016, version 0x01 ubi0: attaching mtd2 ubi0: scanning is finished ubi0: attached mtd2 (name "mtd=0", size 192 MiB) ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 ubi0: good PEBs: 1536, bad PEBs: 0, corrupted PEBs: 0 ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 4/2, WL threshold: 4096, image sequence number: 679562370 ubi0: available PEBs: 80, total reserved PEBs: 1456, PEBs reserved for bad PEB handling: 0
ZynqMP> ubifsmount ubi0:rootfs [Cut out lots of debug msgs] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes UBIFS (ubi0:0): FS size: 182845440 bytes (174 MiB, 1440 LEBs), journal size 9142272 bytes (8 MiB, 72 LEBs) UBIFS (ubi0:0): reserved for root: 4952683 bytes (4836 KiB) UBIFS (ubi0:0): media format: w5/r0 (latest is w4/r0), UUID 9f3ea589-6f91-42df-bc93-216fb3868a2d, small LPT model
ZynqMP> ubifsload 0x10000000 /boot/Image Loading file '/boot/Image' to addr 0x10000000... UBIFS DBG tnc: (lowest) (1, direntry, 0x000000) UBIFS DBG tnc: search key (1, direntry, 0x000000) UBIFS DBG tnc: found 0, lvl 0, n 0 UBIFS DBG io: LEB 13:2048, direntry node, length 61, jhead 1 (base) UBIFS DBG io: LEB 13:2048, direntry node, length 61 UBIFS DBG tnc: search key (65, inode) UBIFS DBG tnc: found 1, lvl 0, n 2 UBIFS DBG io: LEB 13:11432, inode node, length 160, jhead 1 (base) UBIFS DBG io: LEB 13:11432, inode node, length 160 UBIFS DBG tnc: (lowest) (65, direntry, 0x000000) UBIFS DBG tnc: search key (65, direntry, 0x000000) UBIFS DBG tnc: found 0, lvl 0, n 2 UBIFS DBG io: LEB 13:7000, direntry node, length 81, jhead 1 (base) UBIFS DBG io: LEB 13:7000, direntry node, length 81 UBIFS DBG tnc: Image_ubifs_4_on_die_ECC (65, direntry, 0x43689bc) UBIFS DBG tnc: search key (65, direntry, 0x43689bc) UBIFS DBG tnc: found 1, lvl 0, n 3 UBIFS DBG tnc: rc returned 1, znode 000000003ddd6c00, n 3 UBIFS DBG io: LEB 12:75888, indexing node, length 188 UBIFS DBG tnc: LEB 12:75888, level 0, 8 branch UBIFS DBG io: LEB 13:5264, direntry node, length 65, jhead 1 (base) UBIFS DBG io: LEB 13:5264, direntry node, length 65 UBIFS DBG tnc: Image_HW (65, direntry, 0x4ffecbe) UBIFS DBG tnc: search key (65, direntry, 0x4ffecbe) UBIFS DBG tnc: found 1, lvl 0, n 0 UBIFS DBG tnc: rc returned 1, znode 000000003ddd7980, n 0 UBIFS DBG io: LEB 13:10792, direntry node, length 73, jhead 1 (base) UBIFS DBG io: LEB 13:10792, direntry node, length 73 UBIFS DBG tnc: system_relay.dtb (65, direntry, 0x59313ba) UBIFS DBG tnc: search key (65, direntry, 0x59313ba) UBIFS DBG tnc: found 1, lvl 0, n 1 UBIFS DBG tnc: rc returned 1, znode 000000003ddd7980, n 1 UBIFS DBG io: LEB 13:6440, direntry node, length 77, jhead 1 (base) UBIFS DBG io: LEB 13:6440, direntry node, length 77 UBIFS DBG tnc: Image_ubifs_4_HW_ECC (65, direntry, 0x74c1a10) UBIFS DBG tnc: search key (65, direntry, 0x74c1a10) UBIFS DBG tnc: found 1, lvl 0, n 2 UBIFS DBG tnc: rc returned 1, znode 000000003ddd7980, n 2 UBIFS DBG io: LEB 13:7568, direntry node, length 65, jhead 1 (base) UBIFS DBG io: LEB 13:7568, direntry node, length 65 UBIFS DBG tnc: fpga.bit (65, direntry, 0x85926fa) UBIFS DBG tnc: search key (65, direntry, 0x85926fa) UBIFS DBG tnc: found 1, lvl 0, n 3 UBIFS DBG tnc: rc returned 1, znode 000000003ddd7980, n 3 UBIFS DBG io: LEB 13:10400, direntry node, length 67, jhead 1 (base) UBIFS DBG io: LEB 13:10400, direntry node, length 67 UBIFS DBG tnc: system.dtb (65, direntry, 0xb10eda5) UBIFS DBG tnc: search key (65, direntry, 0xb10eda5) UBIFS DBG tnc: found 1, lvl 0, n 4 UBIFS DBG tnc: rc returned 1, znode 000000003ddd7980, n 4 UBIFS DBG io: LEB 13:4880, direntry node, length 62, jhead 1 (base) UBIFS DBG io: LEB 13:4880, direntry node, length 62 UBIFS DBG tnc: search key (68, inode) UBIFS DBG io: LEB 124:8192, indexing node, length 108 UBIFS DBG tnc: LEB 124:8192, level 3, 4 branch UBIFS DBG io: LEB 12:87880, indexing node, length 108 UBIFS DBG tnc: LEB 12:87880, level 2, 4 branch UBIFS DBG io: LEB 12:82584, indexing node, length 108 UBIFS DBG tnc: LEB 12:82584, level 1, 4 branch UBIFS DBG io: LEB 12:81896, indexing node, length 108 UBIFS DBG tnc: LEB 12:81896, level 0, 4 branch UBIFS DBG tnc: found 1, lvl 0, n 0 UBIFS DBG io: LEB 13:10240, inode node, length 160, jhead 1 (base) UBIFS DBG io: LEB 13:10240, inode node, length 160 UBIFS DBG tnc: search key (68, inode) UBIFS DBG tnc: found 1, lvl 0, n 0 UBIFS DBG io: LEB 13:10240, inode node, length 160, jhead 1 (base) UBIFS DBG io: LEB 13:10240, inode node, length 160 UBIFS DBG tnc: search key (68, data, 0) UBIFS DBG tnc: found 1, lvl 0, n 1 UBIFS DBG tnc: LEB 72:124232, key (68, data, 0) UBIFS DBG io: LEB 72:124232, data node, length 244 UBIFS DBG tnc: search key (68, data, 1) UBIFS DBG tnc: found 1, lvl 0, n 2 UBIFS DBG tnc: LEB 72:124480, key (68, data, 1) UBIFS DBG io: LEB 72:124480, data node, length 2101 UBIFS DBG tnc: search key (68, data, 2) UBIFS DBG tnc: found 1, lvl 0, n 3 UBIFS DBG tnc: LEB 75:0, key (68, data, 2) UBIFS DBG io: LEB 75:0, data node, length 916 UBIFS DBG tnc: search key (68, data, 3) UBIFS DBG io: LEB 12:82008, indexing node, length 188 UBIFS DBG tnc: LEB 12:82008, level 0, 8 branch UBIFS DBG tnc: found 1, lvl 0, n 0 UBIFS DBG tnc: LEB 75:920, key (68, data, 3) UBIFS DBG io: LEB 75:920, data node, length 2849 UBIFS error (ubi0:0 pid 0): crypto_comp_decompress: cannot decompress 2801 bytes, compressor lzo, error -6 UBIFS error (ubi0:0 pid 0): ubifs_decompress: cannot decompress 2801 bytes, compressor lzo, error -6 ubifs_decompress RC: -6 len: 4096 out_len: 3377 UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 3, inode 68) magic 0x6101831 crc 0xf15144c6 node_type 1 (data node) group_type 0 (no node group) sqnum 3276 len 2849 key (68, data, 3) size 4096 compr_typ 1 data size 2801 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 3 of inode 68, error -22 Error reading file '/boot/Image'
[Booted back into Linux 4.14]
Reading files from /boot still works OK
------------ Attempting to read files using Linux 4.9 -------------
[Booted into Linux 4.9]
root@bronte2:~# ubiattach /dev/ubi_ctrl -p /dev/mtd0 -d 0 UBI device number 0, total 1536 LEBs (195035136 bytes, 186.0 MiB), available 0 LEBs (0 bytes), LEB size 126976 bytes (124.0 KiB) [ 49.082727] ubi0: attached mtd0 (name "rootfs1", size 192 MiB) [ 49.082734] ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes [ 49.082740] ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 [ 49.082746] ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 [ 49.082751] ubi0: good PEBs: 1536, bad PEBs: 0, corrupted PEBs: 0 [ 49.082756] ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128 [ 49.082762] ubi0: max/mean erase counter: 4/2, WL threshold: 4096, image sequence number: 679562370 [ 49.082768] ubi0: available PEBs: 0, total reserved PEBs: 1536, PEBs reserved for bad PEB handling: 80 [ 49.082785] ubi0: background thread "ubi_bgt0d" started, PID 2460
root@bronte2:~# mount -t ubifs /dev/ubi0_0 /mnt/ubifs1 [ 57.610256] UBIFS error (ubi0:0 pid 2462): ubifs_read_superblock: on-flash format version is w5/r0, but software only supports up to version w4/r0 [ 57.623344] UBIFS (ubi0:0): only R/O mounting is possible [ 57.657454] UBIFS (ubi0:0): recovery needed [ 57.695524] UBIFS (ubi0:0): recovery deferred [ 57.695595] UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode [ 57.695603] UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 57.695612] UBIFS (ubi0:0): FS size: 182845440 bytes (174 MiB, 1440 LEBs), journal size 9142272 bytes (8 MiB, 72 LEBs) [ 57.695618] UBIFS (ubi0:0): reserved for root: 4952683 bytes (4836 KiB) [ 57.695628] UBIFS (ubi0:0): media format: w5/r0 (latest is w4/r0), UUID 9F3EA589-6F91-42DF-BC93-216FB3868A2D, small LPT model
root@bronte2:/tmp# cp /mnt/ubifs1/boot/* . [ 207.650140] UBIFS error (ubi0:0 pid 2489): ubifs_decompress: cannot decompress 3426 bytes, compressor lzo, error -22 [ 207.660613] UBIFS error (ubi0:0 pid 2489): do_readpage: bad data node (block 105, inode 66) [ 207.668927] magic 0x6101831 [ 207.672570] crc 0x45df308d [ 207.676306] node_type 1 (data node) [ 207.680300] group_type 0 (no node group) [ 207.684636] sqnum 149 [ 207.687750] len 3474 [ 207.690975] key (66, data, 105) [ 207.695137] size 4096 [ 207.698348] compr_typ 1 [ 207.701300] data size 3426 [ 207.704515] data: [ 207.706506] 00000000: 03 00 00 00 08 00 00 2b 01 00 41 2b 37 00 00 20 80 9c 01 2a 14 00 02 90 00 01 00 08 94 02 01 00 [ 207.717190] 00000020: 00 00 20 e3 01 00 00 02 c8 01 06 04 00 80 c0 00 03 10 80 05 90 03 05 04 00 00 00 10 08 00 80 92 [ 207.727869] 00000040: 01 08 10 6c 04 00 0b 04 00 02 10 00 04 20 00 20 08 40 00 82 40 00 09 80 04 00 10 04 40 00 04 00 [ 207.738547] 00000060: 80 00 11 10 7e 05 00 40 9c 0e 03 80 00 80 90 00 42 7e 07 00 12 82 0e 02 00 7c 07 bc 0c 75 00 10 [ 207.749217] 00000080: 60 09 08 01 20 00 08 08 00 06 10 02 02 08 6c 0c 7d 02 01 8d 11 21 6c 0d 64 14 98 15 02 19 80 00 [ 207.759894] 000000a0: 28 80 69 05 88 b8 02 95 00 30 7e 09 00 00 78 08 04 00 02 fa 85 ea cc e3 98 02 12 00 08 00 94 0d [ 207.770570] 000000c0: 88 1d 04 08 00 28 00 40 08 01 7c 0b 01 10 00 00 01 9c 03 01 28 00 00 00 b8 22 88 1f 64 09 8c 17 [ 207.781254] 000000e0: 01 00 00 00 04 fc 02 80 05 03 00 01 02 00 00 40 ee 25 20 70 88 19 a4 03 73 15 00 00 40 6c 07 a0 [ 207.791924] 00000100: 02 27 41 06 80 29 94 00 a8 10 2a 93 00 08 00 02 90 10 94 2f 65 05 04 6c 04 00 10 01 00 80 40 20 [ 207.802599] 00000120: 00 00 40 42 44 00 16 04 40 02 04 24 40 00 44 82 40 07 40 01 00 80 01 04 04 40 40 02 04 7c 0d 05 [ 207.813278] 00000140: 02 10 04 53 00 10 80 00 70 15 00 37 ca 00 51 04 04 11 92 01 18 10 11 40 92 10 00 50 00 00 82 00 [ 207.823952] 00000160: 0e 42 02 40 02 15 80 06 04 00 03 04 00 10 00 40 c0 40 04 00 01 00 c4 00 0a 00 00 40 80 50 40 04 [ 207.834632] 00000180: 41 01 90 54 00 10 40 00 c0 00 00 10 10 00 82 00 00 01 02 00 06 60 02 06 10 83 04 90 00 50 00 80 [ 207.845317] 000001a0: 54 68 19 00 07 42 10 02 00 15 04 84 08 40 40 00 80 82 44 02 10 50 14 8a 40 04 00 00 10 c0 78 18 [ 207.855982] 000001c0: 0c 10 80 01 20 42 40 10 82 40 60 33 39 0b 9f 19 7c 05 0d 00 00 44 40 10 44 10 20 14 00 41 40 00 [ 207.866657] 000001e0: 40 06 10 78 41 60 30 07 10 00 00 40 01 05 40 00 40 00 64 09 07 10 40 01 04 10 40 00 50 40 00 7d [ 207.877334] 00000200: 44 50 68 27 60 2b 0b 00 00 14 00 00 14 01 00 00 01 10 01 11 18 70 2d 09 04 14 40 04 50 00 04 10 [ 207.888017] 00000220: 04 04 40 03 69 4b 44 6c 03 07 04 10 00 40 04 04 00 00 03 00 68 04 80 28 68 3c 84 08 70 13 9e 10 [ 207.898688] 00000240: 40 0c 7c 29 2b 49 06 02 61 3c 04 93 38 04 00 00 74 21 64 13 60 28 0b 20 00 40 00 44 00 14 05 02 [ 207.909363] 00000260: 28 00 00 20 03 78 43 00 1e 00 42 00 30 44 00 00 03 40 68 40 00 01 02 05 20 40 10 40 10 02 3c 09 [ 207.920039] 00000280: 04 0c 04 00 24 11 00 00 40 40 21 00 00 00 01 10 08 40 00 10 01 14 24 01 04 74 01 02 00 05 00 00 [ 207.930715] 000002a0: 10 60 6d 00 09 40 00 68 80 10 00 01 44 04 c1 04 18 00 40 11 80 45 50 54 40 04 d1 01 00 00 05 04 [ 207.941392] 000002c0: 64 16 00 3a 45 44 04 40 51 04 04 44 04 14 00 00 00 2d 40 11 04 00 01 04 00 01 0d 80 01 70 08 01 [ 207.952068] 000002e0: c4 40 01 34 00 04 40 01 00 20 09 15 04 02 11 50 40 00 11 80 05 04 01 01 01 81 04 40 08 14 c1 45 [ 207.962745] 00000300: 55 00 40 00 34 04 40 48 48 00 24 55 1d a8 fc b0 8c 1d 09 00 88 10 10 00 40 00 01 00 41 01 40 88 [ 207.973421] 00000320: 39 07 00 44 51 c0 04 40 44 10 00 12 64 2c 0f 04 00 00 50 14 11 00 02 04 00 00 01 49 80 02 04 40 [ 207.984098] 00000340: 01 7d 5a 40 6f 26 00 08 50 9c 60 8c 27 00 04 0c 04 c4 01 01 20 01 44 00 44 00 01 04 10 50 00 40 [ 207.994774] 00000360: 38 01 00 00 46 64 52 01 00 40 44 48 64 0d 09 04 40 01 00 04 40 04 40 00 00 10 01 6c 01 6e 02 00 [ 208.005451] 00000380: 15 94 57 8a 01 00 02 6c 03 95 2a 00 74 3b 02 00 04 09 10 40 74 25 02 00 00 42 00 10 60 32 09 00 [ 208.016126] 000003a0: 20 40 00 00 04 01 00 00 11 0c 98 6d 21 01 7c 48 90 27 05 50 00 10 02 10 01 00 24 61 45 11 90 12 [ 208.026803] 000003c0: 0c 51 00 84 40 00 04 04 20 40 08 40 04 10 10 20 90 81 74 5d 00 09 00 00 04 40 06 09 00 00 00 06 [ 208.037482] 000003e0: 42 00 25 28 00 18 00 09 00 00 10 40 01 0c 40 00 0c 71 76 00 81 05 50 b4 10 00 06 01 18 00 08 01 [ 208.048156] 00000400: 00 00 0c 04 00 04 10 00 80 00 05 40 20 20 40 00 10 30 44 72 1f 10 08 72 40 04 00 86 1c 20 80 6f [ 208.058832] 00000420: 20 60 81 10 64 72 af 8b 01 10 00 a8 00 0b 00 10 30 10 00 08 00 40 00 49 bb 58 39 7c dc 5c 74 59 [ 208.069509] 00000440: b0 1e bd 87 10 83 0e 01 30 02 72 73 00 90 78 4a 64 02 ba 53 0c 01 64 61 02 40 00 04 60 04 66 24 [ 208.080185] 00000460: 40 00 71 59 40 b5 25 80 70 01 d0 91 a0 0a 64 b3 01 00 40 02 01 81 26 04 68 55 bc 02 96 00 01 88 [ 208.090861] 00000480: 7d 26 06 7a a9 22 0c 90 0e 77 b1 40 02 08 7c 17 9c 93 04 00 04 00 88 00 01 40 98 a5 88 64 01 41 [ 208.101538] 000004a0: 00 04 02 68 3e 02 02 00 08 00 10 78 66 02 05 08 00 48 20 7c b4 00 03 00 00 c0 00 90 00 d2 00 08 [ 208.112214] 000004c0: 04 60 00 42 48 80 00 00 70 10 20 10 80 22 00 20 04 00 80 40 40 10 00 48 81 04 00 85 88 09 00 00 [ 208.122891] 000004e0: 60 00 06 98 00 14 40 00 44 40 00 11 00 00 8c 08 00 00 84 80 41 c2 18 10 22 08 08 54 00 00 50 10 [ 208.133567] 00000500: 00 80 78 aa 02 14 00 04 19 80 70 7a 00 12 06 20 04 10 44 00 00 20 d5 1c 00 04 08 01 10 02 26 80 [ 208.144249] 00000520: 40 00 06 40 08 20 00 82 00 12 01 00 0c 49 80 00 00 04 8c 39 04 04 00 94 02 00 10 50 8c 6e 00 09 [ 208.154921] 00000540: 00 07 00 01 09 00 85 00 88 01 50 20 00 02 28 00 80 20 80 02 09 48 8c c8 44 c7 7d 88 1f 04 00 00 [ 208.165597] 00000560: 14 40 80 40 c0 68 1b 6c 20 6e 1b 51 00 70 67 02 00 10 20 11 40 88 8d 02 20 02 00 02 24 76 20 02 [ 208.176272] 00000580: 40 80 3f 80 24 6f 31 10 00 40 75 74 01 db 51 04 08 08 78 0f 74 33 7c 00 04 60 00 02 20 00 08 42 [ 208.186949] 000005a0: e8 2d 68 02 61 2c 01 78 44 69 0f 40 68 27 68 87 70 01 80 4c 9c 61 64 4d 05 08 60 18 20 00 06 00 [ 208.197626] 000005c0: 20 68 b6 6c 06 a4 04 8b 37 00 01 01 84 0a 00 14 04 08 01 40 01 02 20 80 71 50 00 00 28 00 80 8c [ 208.208302] 000005e0: 41 00 02 52 00 00 49 a0 04 4c 00 80 00 08 44 10 00 06 00 02 80 00 68 06 06 48 0d 02 30 c0 00 11 [ 208.218979] 00000600: 4c 02 68 18 00 0e 08 00 20 81 04 20 54 12 02 40 00 00 20 10 20 05 90 86 02 08 54 08 00 81 68 10 [ 208.229654] 00000620: 00 40 11 05 09 70 7c 56 02 08 05 0e 10 01 7d 4c 08 95 70 02 60 67 0c 20 08 00 04 04 30 60 60 00 [ 208.240334] 00000640: 03 00 10 44 06 02 80 4e 0b 30 80 10 84 01 00 00 14 20 11 40 42 10 04 7c 16 02 42 00 00 49 20 60 [ 208.251007] 00000660: 67 07 18 00 01 01 10 07 10 00 12 10 9c 24 07 92 00 00 01 7c d2 c9 9d db 31 a4 19 00 01 40 09 90 [ 208.261684] 00000680: 00 01 18 10 01 00 10 01 41 00 20 02 42 00 49 10 64 79 78 0a 70 77 01 81 00 34 41 60 22 01 04 09 [ 208.272360] 000006a0: 80 00 60 48 80 59 02 40 04 01 40 14 70 28 8c 32 9c 08 03 40 00 30 00 20 20 78 b7 8d 2a 21 60 23 [ 208.283037] 000006c0: 22 db 20 80 40 05 7c 03 68 a1 6c 98 dc 3a 22 10 21 0c 50 00 00 43 e0 10 10 90 40 08 80 01 08 80 [ 208.293713] 000006e0: 00 64 83 04 a0 45 08 80 04 04 60 8c 0c 04 00 00 80 68 04 20 40 6c 89 08 00 45 00 01 40 28 20 10 [ 208.304389] 00000700: 00 c2 30 68 21 70 3a 78 3c 00 26 10 40 10 20 19 20 00 01 08 31 c0 a2 08 11 05 02 06 20 10 00 80 [ 208.315066] 00000720: 80 0a 00 a2 48 00 20 8a 4f 0a 41 12 60 00 00 05 40 a2 01 28 00 02 9c 01 00 01 00 02 24 e0 8c 00 [ 208.325742] 00000740: 0d 24 00 6c 28 07 01 99 00 48 20 09 04 00 50 b1 74 13 02 00 00 04 05 92 78 4d 01 81 00 0b 21 64 [ 208.336418] 00000760: f0 00 49 41 50 00 42 24 02 25 40 49 01 04 02 01 10 30 08 d0 00 40 02 00 41 42 20 84 80 08 90 00 [ 208.347095] 00000780: 01 02 14 09 84 50 44 00 a4 18 40 00 42 05 40 02 00 a8 14 09 27 00 00 01 11 08 02 08 d2 40 30 98 [ 208.357771] 000007a0: a0 89 80 c5 c0 00 f0 00 a0 42 00 80 41 92 70 00 28 06 c0 42 ac 20 7f 3b 94 32 5d 4f 00 00 7c 0d [ 208.368448] 000007c0: 00 22 33 00 8b 01 82 0b 90 09 40 90 90 59 b1 00 60 18 34 28 80 14 80 60 03 51 2d 40 42 0a 80 00 [ 208.379124] 000007e0: 03 90 09 14 00 10 00 01 00 80 0d 48 0d 04 00 90 05 60 00 08 00 b4 74 a0 06 28 21 90 40 08 00 02 [ 208.389801] 00000800: 49 00 22 80 24 09 00 90 04 26 00 40 01 20 01 01 00 4a 64 6f 60 0b 00 02 00 04 01 84 20 21 00 40 [ 208.400487] 00000820: 0a 00 44 00 24 00 08 40 10 80 00 03 22 7c 21 03 03 0a 00 00 00 d0 88 97 00 03 02 42 c0 00 88 00 [ 208.411154] 00000840: 0a 08 00 40 42 02 00 60 00 00 00 0c 02 00 43 22 68 25 01 02 02 10 04 95 b5 01 78 38 74 09 02 04 [ 208.421830] 00000860: 40 02 01 06 70 01 00 07 f0 22 08 40 88 2a 08 00 22 24 24 00 c0 00 02 00 82 c0 04 90 02 50 02 04 [ 208.432507] 00000880: 80 74 2f 05 b0 00 2a 80 20 04 20 90 64 90 00 57 42 10 00 04 80 06 40 40 03 00 18 02 02 08 84 02 [ 208.443185] 000008a0: 50 00 01 00 01 50 10 00 40 b8 0c 80 80 88 02 04 01 00 80 02 98 00 00 08 02 8a 00 13 00 81 00 04 [ 208.453859] 000008c0: 80 02 e0 04 00 0f 91 12 40 02 10 40 88 80 28 08 00 00 c0 81 08 42 00 40 80 09 10 04 10 02 00 10 [ 208.464535] 000008e0: 50 00 48 00 04 50 44 00 80 00 08 10 80 00 09 26 00 40 24 00 03 00 c3 00 20 22 2c 29 00 16 00 11 [ 208.475212] 00000900: 81 88 02 03 01 80 04 02 12 01 04 02 00 03 80 80 16 40 00 23 68 04 08 84 c0 12 81 28 08 08 00 80 [ 208.485888] 00000920: 2e 12 b1 c6 96 05 68 19 09 00 00 80 04 4a 00 08 40 0c 80 42 41 6d 66 31 70 ba 00 12 40 c2 40 00 [ 208.496565] 00000940: 80 00 00 08 a0 00 a8 44 10 28 00 00 13 00 84 00 10 40 69 00 04 08 64 42 e8 02 c9 10 80 00 30 30 [ 208.507246] 00000960: 22 6c 25 02 20 20 04 08 00 60 a2 22 2c 29 04 40 01 00 40 09 02 01 60 59 05 11 80 88 10 00 00 48 [ 208.517922] 00000980: 08 68 e1 00 0e 04 08 00 08 8a 90 08 80 83 a4 00 82 88 1c 00 45 50 20 10 04 00 80 04 41 04 20 20 [ 208.528595] 000009a0: 00 22 00 1d 00 94 a6 01 20 20 00 24 22 44 27 23 57 26 80 00 08 70 5b 04 02 05 20 00 00 86 20 60 [ 208.539270] 000009c0: 4c 05 81 10 00 00 32 00 01 22 70 0d 02 02 01 04 00 21 22 34 25 01 04 00 00 45 97 c1 30 43 00 84 [ 208.549947] 000009e0: 02 00 01 00 04 82 00 00 44 00 00 84 81 44 95 03 00 04 14 82 40 12 64 ee 07 80 00 0d 85 20 50 04 [ 208.560623] 00000a00: 10 08 24 23 44 2c 00 06 40 10 09 04 40 08 84 00 00 08 40 20 05 40 08 80 00 08 08 44 00 20 40 02 [ 208.571299] 00000a20: 64 3c 08 01 41 45 00 00 40 11 00 00 00 44 22 cc 20 7f 23 15 01 41 64 70 01 51 00 03 24 8c 7a 0e [ 208.581976] 00000a40: 80 81 03 d1 10 01 c0 00 82 24 41 00 44 50 00 80 44 22 30 24 00 08 01 41 30 04 08 04 01 04 13 c4 [ 208.592652] 00000a60: 00 00 81 11 14 61 00 00 45 04 40 60 00 00 90 10 70 09 0a 01 16 00 30 50 70 82 7c 9d 19 16 8f 7e [ 208.603329] 00000a80: 6c 0a 6c 00 78 0d 22 d4 27 08 02 10 03 00 0c b0 40 05 40 00 30 22 c8 22 06 c6 40 00 54 00 01 30 [ 208.614005] 00000aa0: 00 13 69 8d 40 22 4a 20 00 80 22 08 29 06 80 00 13 31 14 00 30 04 03 22 c8 31 0d 04 03 30 10 00 [ 208.624681] 00000ac0: 80 04 58 80 04 00 00 c9 40 00 02 a5 ca 50 23 17 29 00 40 04 22 c0 23 04 70 40 40 20 00 10 0c 74 [ 208.635358] 00000ae0: a9 0b 03 30 00 02 00 40 08 04 04 48 81 00 00 03 22 c4 27 7c 0f 28 0c 00 74 86 6a 96 00 11 22 0a [ 208.646034] 00000b00: 27 01 18 78 7d 27 74 00 02 62 00 00 00 03 22 ac 2a 64 02 06 90 00 00 00 68 80 80 08 48 98 05 0f [ 208.656717] 00000b20: 00 10 80 03 82 01 44 00 10 00 04 45 80 04 40 40 28 60 6c 1a 00 02 24 00 80 80 44 40 08 00 01 14 [ 208.667388] 00000b40: 40 08 82 40 01 10 00 82 80 c0 78 a4 70 60 24 2c 33 0a 02 00 00 05 10 80 00 22 00 00 10 80 04 68 [ 208.678063] 00000b60: d3 68 0b 6c 00 23 04 22 70 a4 0d 01 00 13 00 20 40 10 00 41 08 00 20 42 00 40 28 7f 0f 02 10 84 [ 208.688740] 00000b80: 77 3f 40 01 40 23 37 2b a0 24 02 64 da 01 04 02 08 02 9c bf 22 24 25 02 10 00 10 51 00 6c 05 6c [ 208.699416] 00000ba0: a1 24 70 33 03 54 fe a1 01 1c 75 70 0b 6c 00 01 04 00 01 30 6c 14 03 00 04 24 01 28 20 60 55 06 [ 208.710093] 00000bc0: 00 01 01 14 00 00 11 40 11 67 cd 00 00 8c 24 18 25 7c 2e 01 10 04 08 28 68 4f 05 08 00 00 08 84 [ 208.720769] 00000be0: 00 08 c0 72 ff 08 80 22 28 25 01 00 00 04 20 23 a8 23 68 0a 6d 00 12 70 00 01 00 80 08 00 73 48 [ 208.731445] 00000c00: 02 20 05 87 d2 04 04 61 23 5c 22 04 00 02 00 41 20 14 00 73 2c 00 10 01 22 85 32 00 22 b8 2c 01 [ 208.742122] 00000c20: 04 00 40 01 22 48 21 02 00 05 80 04 82 d5 09 04 78 d0 03 00 00 20 50 7c 28 80 2c 22 a8 2f 00 16 [ 208.752798] 00000c40: 00 00 90 00 20 00 80 a8 04 00 81 28 89 8c 10 01 82 84 08 84 00 01 20 21 50 08 00 00 09 00 88 60 [ 208.763474] 00000c60: 00 20 40 28 00 a0 00 08 60 db 00 7e 04 90 32 00 05 00 2c 04 c0 12 00 02 04 14 a0 08 80 10 91 20 [ 208.774151] 00000c80: 01 01 8c c2 84 02 00 80 11 00 00 12 01 98 13 c2 00 68 01 08 40 21 82 08 82 0e 22 20 80 18 60 50 [ 208.784827] 00000ca0: 00 48 90 00 20 80 82 41 11 8a 02 08 20 11 00 10 22 00 04 00 21 10 82 38 48 28 00 00 00 21 84 20 [ 208.795504] 00000cc0: 20 01 c9 84 28 a8 08 89 44 00 02 40 04 00 02 12 00 08 04 08 40 00 20 08 12 08 0a 00 2a 80 00 08 [ 208.806183] 00000ce0: a8 08 89 81 3a 44 42 00 04 00 1d 41 22 00 80 40 04 04 40 43 e9 74 9d d0 a6 00 00 00 78 22 00 0d [ 208.816857] 00000d00: 08 c0 10 00 e5 38 89 45 e1 08 c8 90 0c 62 00 82 02 08 00 04 03 00 00 a8 08 00 0a 88 80 90 0c 6c [ 208.827533] 00000d20: 37 00 2a 90 0c a0 20 94 a1 00 08 12 e5 04 90 84 46 20 80 46 28 40 04 08 60 00 00 48 48 08 14 00 [ 208.838210] 00000d40: 21 0a 54 08 a0 10 c0 00 84 00 80 d0 25 38 00 48 a8 04 02 00 19 61 08 80 81 98 00 08 80 01 89 11 [ 208.848884] 00000d60: 00 00 [ 208.851758] UBIFS error (ubi0:0 pid 2489): do_readpage: cannot read page 105 of inode 66, error -22 [ 208.861615] UBIFS error (ubi0:0 pid 2489): ubifs_decompress: cannot decompress 3426 bytes, compressor lzo, error -22 [ 208.872090] UBIFS error (ubi0:0 pid 2489): do_readpage: bad data node (block 105, inode 66) [ 208.880405] magic 0x6101831 [ 208.884047] crc 0x45df308d [ 208.887779] node_type 1 (data node) [ 208.891773] group_type 0 (no node group) [ 208.896112] sqnum 149 [ 208.899236] len 3474 [ 208.902451] key (66, data, 105) [ 208.906614] size 4096 [ 208.909826] compr_typ 1 [ 208.912777] data size 3426 [ 208.915978] data: [ 208.917989] 00000000: 03 00 00 00 08 00 00 2b 01 00 41 2b 37 00 00 20 80 9c 01 2a 14 00 02 90 00 01 00 08 94 02 01 00 [ 208.928665] 00000020: 00 00 20 e3 01 00 00 02 c8 01 06 04 00 80 c0 00 03 10 80 05 90 03 05 04 00 00 00 10 08 00 80 92 [ 208.939345] 00000040: 01 08 10 6c 04 00 0b 04 00 02 10 00 04 20 00 20 08 40 00 82 40 00 09 80 04 00 10 04 40 00 04 00 [ 208.950018] 00000060: 80 00 11 10 7e 05 00 40 9c 0e 03 80 00 80 90 00 42 7e 07 00 12 82 0e 02 00 7c 07 bc 0c 75 00 10 [ 208.960698] 00000080: 60 09 08 01 20 00 08 08 00 06 10 02 02 08 6c 0c 7d 02 01 8d 11 21 6c 0d 64 14 98 15 02 19 80 00 [ 208.971371] 000000a0: 28 80 69 05 88 b8 02 95 00 30 7e 09 00 00 78 08 04 00 02 fa 85 ea cc e3 98 02 12 00 08 00 94 0d [ 208.982048] 000000c0: 88 1d 04 08 00 28 00 40 08 01 7c 0b 01 10 00 00 01 9c 03 01 28 00 00 00 b8 22 88 1f 64 09 8c 17 [ 208.992730] 000000e0: 01 00 00 00 04 fc 02 80 05 03 00 01 02 00 00 40 ee 25 20 70 88 19 a4 03 73 15 00 00 40 6c 07 a0 [ 209.003401] 00000100: 02 27 41 06 80 29 94 00 a8 10 2a 93 00 08 00 02 90 10 94 2f 65 05 04 6c 04 00 10 01 00 80 40 20 [ 209.014076] 00000120: 00 00 40 42 44 00 16 04 40 02 04 24 40 00 44 82 40 07 40 01 00 80 01 04 04 40 40 02 04 7c 0d 05 [ 209.024753] 00000140: 02 10 04 53 00 10 80 00 70 15 00 37 ca 00 51 04 04 11 92 01 18 10 11 40 92 10 00 50 00 00 82 00 [ 209.035429] 00000160: 0e 42 02 40 02 15 80 06 04 00 03 04 00 10 00 40 c0 40 04 00 01 00 c4 00 0a 00 00 40 80 50 40 04 [ 209.046106] 00000180: 41 01 90 54 00 10 40 00 c0 00 00 10 10 00 82 00 00 01 02 00 06 60 02 06 10 83 04 90 00 50 00 80 [ 209.056782] 000001a0: 54 68 19 00 07 42 10 02 00 15 04 84 08 40 40 00 80 82 44 02 10 50 14 8a 40 04 00 00 10 c0 78 18 [ 209.067458] 000001c0: 0c 10 80 01 20 42 40 10 82 40 60 33 39 0b 9f 19 7c 05 0d 00 00 44 40 10 44 10 20 14 00 41 40 00 [ 209.078134] 000001e0: 40 06 10 78 41 60 30 07 10 00 00 40 01 05 40 00 40 00 64 09 07 10 40 01 04 10 40 00 50 40 00 7d [ 209.088812] 00000200: 44 50 68 27 60 2b 0b 00 00 14 00 00 14 01 00 00 01 10 01 11 18 70 2d 09 04 14 40 04 50 00 04 10 [ 209.099487] 00000220: 04 04 40 03 69 4b 44 6c 03 07 04 10 00 40 04 04 00 00 03 00 68 04 80 28 68 3c 84 08 70 13 9e 10 [ 209.110164] 00000240: 40 0c 7c 29 2b 49 06 02 61 3c 04 93 38 04 00 00 74 21 64 13 60 28 0b 20 00 40 00 44 00 14 05 02 [ 209.120840] 00000260: 28 00 00 20 03 78 43 00 1e 00 42 00 30 44 00 00 03 40 68 40 00 01 02 05 20 40 10 40 10 02 3c 09 [ 209.131517] 00000280: 04 0c 04 00 24 11 00 00 40 40 21 00 00 00 01 10 08 40 00 10 01 14 24 01 04 74 01 02 00 05 00 00 [ 209.142193] 000002a0: 10 60 6d 00 09 40 00 68 80 10 00 01 44 04 c1 04 18 00 40 11 80 45 50 54 40 04 d1 01 00 00 05 04 [ 209.152870] 000002c0: 64 16 00 3a 45 44 04 40 51 04 04 44 04 14 00 00 00 2d 40 11 04 00 01 04 00 01 0d 80 01 70 08 01 [ 209.163546] 000002e0: c4 40 01 34 00 04 40 01 00 20 09 15 04 02 11 50 40 00 11 80 05 04 01 01 01 81 04 40 08 14 c1 45 [ 209.174223] 00000300: 55 00 40 00 34 04 40 48 48 00 24 55 1d a8 fc b0 8c 1d 09 00 88 10 10 00 40 00 01 00 41 01 40 88 [ 209.184899] 00000320: 39 07 00 44 51 c0 04 40 44 10 00 12 64 2c 0f 04 00 00 50 14 11 00 02 04 00 00 01 49 80 02 04 40 [ 209.195575] 00000340: 01 7d 5a 40 6f 26 00 08 50 9c 60 8c 27 00 04 0c 04 c4 01 01 20 01 44 00 44 00 01 04 10 50 00 40 [ 209.206251] 00000360: 38 01 00 00 46 64 52 01 00 40 44 48 64 0d 09 04 40 01 00 04 40 04 40 00 00 10 01 6c 01 6e 02 00 [ 209.216928] 00000380: 15 94 57 8a 01 00 02 6c 03 95 2a 00 74 3b 02 00 04 09 10 40 74 25 02 00 00 42 00 10 60 32 09 00 [ 209.227604] 000003a0: 20 40 00 00 04 01 00 00 11 0c 98 6d 21 01 7c 48 90 27 05 50 00 10 02 10 01 00 24 61 45 11 90 12 [ 209.238281] 000003c0: 0c 51 00 84 40 00 04 04 20 40 08 40 04 10 10 20 90 81 74 5d 00 09 00 00 04 40 06 09 00 00 00 06 [ 209.248962] 000003e0: 42 00 25 28 00 18 00 09 00 00 10 40 01 0c 40 00 0c 71 76 00 81 05 50 b4 10 00 06 01 18 00 08 01 [ 209.259634] 00000400: 00 00 0c 04 00 04 10 00 80 00 05 40 20 20 40 00 10 30 44 72 1f 10 08 72 40 04 00 86 1c 20 80 6f [ 209.270310] 00000420: 20 60 81 10 64 72 af 8b 01 10 00 a8 00 0b 00 10 30 10 00 08 00 40 00 49 bb 58 39 7c dc 5c 74 59 [ 209.280986] 00000440: b0 1e bd 87 10 83 0e 01 30 02 72 73 00 90 78 4a 64 02 ba 53 0c 01 64 61 02 40 00 04 60 04 66 24 [ 209.291663] 00000460: 40 00 71 59 40 b5 25 80 70 01 d0 91 a0 0a 64 b3 01 00 40 02 01 81 26 04 68 55 bc 02 96 00 01 88 [ 209.302339] 00000480: 7d 26 06 7a a9 22 0c 90 0e 77 b1 40 02 08 7c 17 9c 93 04 00 04 00 88 00 01 40 98 a5 88 64 01 41 [ 209.313015] 000004a0: 00 04 02 68 3e 02 02 00 08 00 10 78 66 02 05 08 00 48 20 7c b4 00 03 00 00 c0 00 90 00 d2 00 08 [ 209.323692] 000004c0: 04 60 00 42 48 80 00 00 70 10 20 10 80 22 00 20 04 00 80 40 40 10 00 48 81 04 00 85 88 09 00 00 [ 209.334368] 000004e0: 60 00 06 98 00 14 40 00 44 40 00 11 00 00 8c 08 00 00 84 80 41 c2 18 10 22 08 08 54 00 00 50 10 [ 209.345045] 00000500: 00 80 78 aa 02 14 00 04 19 80 70 7a 00 12 06 20 04 10 44 00 00 20 d5 1c 00 04 08 01 10 02 26 80 [ 209.355721] 00000520: 40 00 06 40 08 20 00 82 00 12 01 00 0c 49 80 00 00 04 8c 39 04 04 00 94 02 00 10 50 8c 6e 00 09 [ 209.366398] 00000540: 00 07 00 01 09 00 85 00 88 01 50 20 00 02 28 00 80 20 80 02 09 48 8c c8 44 c7 7d 88 1f 04 00 00 [ 209.377074] 00000560: 14 40 80 40 c0 68 1b 6c 20 6e 1b 51 00 70 67 02 00 10 20 11 40 88 8d 02 20 02 00 02 24 76 20 02 [ 209.387750] 00000580: 40 80 3f 80 24 6f 31 10 00 40 75 74 01 db 51 04 08 08 78 0f 74 33 7c 00 04 60 00 02 20 00 08 42 [ 209.398427] 000005a0: e8 2d 68 02 61 2c 01 78 44 69 0f 40 68 27 68 87 70 01 80 4c 9c 61 64 4d 05 08 60 18 20 00 06 00 [ 209.409103] 000005c0: 20 68 b6 6c 06 a4 04 8b 37 00 01 01 84 0a 00 14 04 08 01 40 01 02 20 80 71 50 00 00 28 00 80 8c [ 209.419780] 000005e0: 41 00 02 52 00 00 49 a0 04 4c 00 80 00 08 44 10 00 06 00 02 80 00 68 06 06 48 0d 02 30 c0 00 11 [ 209.430456] 00000600: 4c 02 68 18 00 0e 08 00 20 81 04 20 54 12 02 40 00 00 20 10 20 05 90 86 02 08 54 08 00 81 68 10 [ 209.441133] 00000620: 00 40 11 05 09 70 7c 56 02 08 05 0e 10 01 7d 4c 08 95 70 02 60 67 0c 20 08 00 04 04 30 60 60 00 [ 209.451809] 00000640: 03 00 10 44 06 02 80 4e 0b 30 80 10 84 01 00 00 14 20 11 40 42 10 04 7c 16 02 42 00 00 49 20 60 [ 209.462485] 00000660: 67 07 18 00 01 01 10 07 10 00 12 10 9c 24 07 92 00 00 01 7c d2 c9 9d db 31 a4 19 00 01 40 09 90 [ 209.473162] 00000680: 00 01 18 10 01 00 10 01 41 00 20 02 42 00 49 10 64 79 78 0a 70 77 01 81 00 34 41 60 22 01 04 09 [ 209.483838] 000006a0: 80 00 60 48 80 59 02 40 04 01 40 14 70 28 8c 32 9c 08 03 40 00 30 00 20 20 78 b7 8d 2a 21 60 23 [ 209.494514] 000006c0: 22 db 20 80 40 05 7c 03 68 a1 6c 98 dc 3a 22 10 21 0c 50 00 00 43 e0 10 10 90 40 08 80 01 08 80 [ 209.505197] 000006e0: 00 64 83 04 a0 45 08 80 04 04 60 8c 0c 04 00 00 80 68 04 20 40 6c 89 08 00 45 00 01 40 28 20 10 [ 209.515868] 00000700: 00 c2 30 68 21 70 3a 78 3c 00 26 10 40 10 20 19 20 00 01 08 31 c0 a2 08 11 05 02 06 20 10 00 80 [ 209.526544] 00000720: 80 0a 00 a2 48 00 20 8a 4f 0a 41 12 60 00 00 05 40 a2 01 28 00 02 9c 01 00 01 00 02 24 e0 8c 00 [ 209.537220] 00000740: 0d 24 00 6c 28 07 01 99 00 48 20 09 04 00 50 b1 74 13 02 00 00 04 05 92 78 4d 01 81 00 0b 21 64 [ 209.547897] 00000760: f0 00 49 41 50 00 42 24 02 25 40 49 01 04 02 01 10 30 08 d0 00 40 02 00 41 42 20 84 80 08 90 00 [ 209.558573] 00000780: 01 02 14 09 84 50 44 00 a4 18 40 00 42 05 40 02 00 a8 14 09 27 00 00 01 11 08 02 08 d2 40 30 98 [ 209.569250] 000007a0: a0 89 80 c5 c0 00 f0 00 a0 42 00 80 41 92 70 00 28 06 c0 42 ac 20 7f 3b 94 32 5d 4f 00 00 7c 0d [ 209.579926] 000007c0: 00 22 33 00 8b 01 82 0b 90 09 40 90 90 59 b1 00 60 18 34 28 80 14 80 60 03 51 2d 40 42 0a 80 00 [ 209.590602] 000007e0: 03 90 09 14 00 10 00 01 00 80 0d 48 0d 04 00 90 05 60 00 08 00 b4 74 a0 06 28 21 90 40 08 00 02 [ 209.601278] 00000800: 49 00 22 80 24 09 00 90 04 26 00 40 01 20 01 01 00 4a 64 6f 60 0b 00 02 00 04 01 84 20 21 00 40 [ 209.611954] 00000820: 0a 00 44 00 24 00 08 40 10 80 00 03 22 7c 21 03 03 0a 00 00 00 d0 88 97 00 03 02 42 c0 00 88 00 [ 209.622631] 00000840: 0a 08 00 40 42 02 00 60 00 00 00 0c 02 00 43 22 68 25 01 02 02 10 04 95 b5 01 78 38 74 09 02 04 [ 209.633308] 00000860: 40 02 01 06 70 01 00 07 f0 22 08 40 88 2a 08 00 22 24 24 00 c0 00 02 00 82 c0 04 90 02 50 02 04 [ 209.643984] 00000880: 80 74 2f 05 b0 00 2a 80 20 04 20 90 64 90 00 57 42 10 00 04 80 06 40 40 03 00 18 02 02 08 84 02 [ 209.654661] 000008a0: 50 00 01 00 01 50 10 00 40 b8 0c 80 80 88 02 04 01 00 80 02 98 00 00 08 02 8a 00 13 00 81 00 04 [ 209.665337] 000008c0: 80 02 e0 04 00 0f 91 12 40 02 10 40 88 80 28 08 00 00 c0 81 08 42 00 40 80 09 10 04 10 02 00 10 [ 209.676013] 000008e0: 50 00 48 00 04 50 44 00 80 00 08 10 80 00 09 26 00 40 24 00 03 00 c3 00 20 22 2c 29 00 16 00 11 [ 209.686690] 00000900: 81 88 02 03 01 80 04 02 12 01 04 02 00 03 80 80 16 40 00 23 68 04 08 84 c0 12 81 28 08 08 00 80 [ 209.697367] 00000920: 2e 12 b1 c6 96 05 68 19 09 00 00 80 04 4a 00 08 40 0c 80 42 41 6d 66 31 70 ba 00 12 40 c2 40 00 [ 209.708043] 00000940: 80 00 00 08 a0 00 a8 44 10 28 00 00 13 00 84 00 10 40 69 00 04 08 64 42 e8 02 c9 10 80 00 30 30 [ 209.718719] 00000960: 22 6c 25 02 20 20 04 08 00 60 a2 22 2c 29 04 40 01 00 40 09 02 01 60 59 05 11 80 88 10 00 00 48 [ 209.729395] 00000980: 08 68 e1 00 0e 04 08 00 08 8a 90 08 80 83 a4 00 82 88 1c 00 45 50 20 10 04 00 80 04 41 04 20 20 [ 209.740071] 000009a0: 00 22 00 1d 00 94 a6 01 20 20 00 24 22 44 27 23 57 26 80 00 08 70 5b 04 02 05 20 00 00 86 20 60 [ 209.750748] 000009c0: 4c 05 81 10 00 00 32 00 01 22 70 0d 02 02 01 04 00 21 22 34 25 01 04 00 00 45 97 c1 30 43 00 84 [ 209.761431] 000009e0: 02 00 01 00 04 82 00 00 44 00 00 84 81 44 95 03 00 04 14 82 40 12 64 ee 07 80 00 0d 85 20 50 04 [ 209.772102] 00000a00: 10 08 24 23 44 2c 00 06 40 10 09 04 40 08 84 00 00 08 40 20 05 40 08 80 00 08 08 44 00 20 40 02 [ 209.782778] 00000a20: 64 3c 08 01 41 45 00 00 40 11 00 00 00 44 22 cc 20 7f 23 15 01 41 64 70 01 51 00 03 24 8c 7a 0e [ 209.793463] 00000a40: 80 81 03 d1 10 01 c0 00 82 24 41 00 44 50 00 80 44 22 30 24 00 08 01 41 30 04 08 04 01 04 13 c4 [ 209.804130] 00000a60: 00 00 81 11 14 61 00 00 45 04 40 60 00 00 90 10 70 09 0a 01 16 00 30 50 70 82 7c 9d 19 16 8f 7e [ 209.814806] 00000a80: 6c 0a 6c 00 78 0d 22 d4 27 08 02 10 03 00 0c b0 40 05 40 00 30 22 c8 22 06 c6 40 00 54 00 01 30 [ 209.825483] 00000aa0: 00 13 69 8d 40 22 4a 20 00 80 22 08 29 06 80 00 13 31 14 00 30 04 03 22 c8 31 0d 04 03 30 10 00 [ 209.836159] 00000ac0: 80 04 58 80 04 00 00 c9 40 00 02 a5 ca 50 23 17 29 00 40 04 22 c0 23 04 70 40 40 20 00 10 0c 74 [ 209.846836] 00000ae0: a9 0b 03 30 00 02 00 40 08 04 04 48 81 00 00 03 22 c4 27 7c 0f 28 0c 00 74 86 6a 96 00 11 22 0a [ 209.857512] 00000b00: 27 01 18 78 7d 27 74 00 02 62 00 00 00 03 22 ac 2a 64 02 06 90 00 00 00 68 80 80 08 48 98 05 0f [ 209.868188] 00000b20: 00 10 80 03 82 01 44 00 10 00 04 45 80 04 40 40 28 60 6c 1a 00 02 24 00 80 80 44 40 08 00 01 14 [ 209.878865] 00000b40: 40 08 82 40 01 10 00 82 80 c0 78 a4 70 60 24 2c 33 0a 02 00 00 05 10 80 00 22 00 00 10 80 04 68 [ 209.889542] 00000b60: d3 68 0b 6c 00 23 04 22 70 a4 0d 01 00 13 00 20 40 10 00 41 08 00 20 42 00 40 28 7f 0f 02 10 84 [ 209.900218] 00000b80: 77 3f 40 01 40 23 37 2b a0 24 02 64 da 01 04 02 08 02 9c bf 22 24 25 02 10 00 10 51 00 6c 05 6c [ 209.910894] 00000ba0: a1 24 70 33 03 54 fe a1 01 1c 75 70 0b 6c 00 01 04 00 01 30 6c 14 03 00 04 24 01 28 20 60 55 06 [ 209.921571] 00000bc0: 00 01 01 14 00 00 11 40 11 67 cd 00 00 8c 24 18 25 7c 2e 01 10 04 08 28 68 4f 05 08 00 00 08 84 [ 209.932246] 00000be0: 00 08 c0 72 ff 08 80 22 28 25 01 00 00 04 20 23 a8 23 68 0a 6d 00 12 70 00 01 00 80 08 00 73 48 [ 209.942924] 00000c00: 02 20 05 87 d2 04 04 61 23 5c 22 04 00 02 00 41 20 14 00 73 2c 00 10 01 22 85 32 00 22 b8 2c 01 [ 209.953599] 00000c20: 04 00 40 01 22 48 21 02 00 05 80 04 82 d5 09 04 78 d0 03 00 00 20 50 7c 28 80 2c 22 a8 2f 00 16 [ 209.964279] 00000c40: 00 00 90 00 20 00 80 a8 04 00 81 28 89 8c 10 01 82 84 08 84 00 01 20 21 50 08 00 00 09 00 88 60 [ 209.974952] 00000c60: 00 20 40 28 00 a0 00 08 60 db 00 7e 04 90 32 00 05 00 2c 04 c0 12 00 02 04 14 a0 08 80 10 91 20 [ 209.985629] 00000c80: 01 01 8c c2 84 02 00 80 11 00 00 12 01 98 13 c2 00 68 01 08 40 21 82 08 82 0e 22 20 80 18 60 50 [ 209.996305] 00000ca0: 00 48 90 00 20 80 82 41 11 8a 02 08 20 11 00 10 22 00 04 00 21 10 82 38 48 28 00 00 00 21 84 20 [ 210.006982] 00000cc0: 20 01 c9 84 28 a8 08 89 44 00 02 40 04 00 02 12 00 08 04 08 40 00 20 08 12 08 0a 00 2a 80 00 08 [ 210.017664] 00000ce0: a8 08 89 81 3a 44 42 00 04 00 1d 41 22 00 80 40 04 04 40 43 e9 74 9d d0 a6 00 00 00 78 22 00 0d [ 210.028335] 00000d00: 08 c0 10 00 e5 38 89 45 e1 08 c8 90 0c 62 00 82 02 08 00 04 03 00 00 a8 08 00 0a 88 80 90 0c 6c [ 210.039011] 00000d20: 37 00 2a 90 0c a0 20 94 a1 00 08 12 e5 04 90 84 46 20 80 46 28 40 04 08 60 00 00 48 48 08 14 00 [ 210.049688] 00000d40: 21 0a 54 08 a0 10 c0 00 84 00 80 d0 25 38 00 48 a8 04 02 00 19 61 08 80 81 98 00 08 80 01 89 11 [ 210.060361] 00000d60: 00 00 [ 210.063240] UBIFS error (ubi0:0 pid 2489): do_readpage: cannot read page 105 of inode 66, error -22 [ 210.072926] UBIFS error (ubi0:0 pid 2489): ubifs_decompress: cannot decompress 3426 bytes, compressor lzo, error -22 [ 210.083398] UBIFS error (ubi0:0 pid 2489): do_readpage: bad data node (block 105, inode 66) [ 210.091708] magic 0x6101831 [ 210.095351] crc 0x45df308d [ 210.099083] node_type 1 (data node) [ 210.103076] group_type 0 (no node group) [ 210.107415] sqnum 149 [ 210.110540] len 3474 [ 210.113753] key (66, data, 105) [ 210.117918] size 4096 [ 210.121129] compr_typ 1 [ 210.124070] data size 3426 [ 210.127291] data: [ 210.129291] 00000000: 03 00 00 00 08 00 00 2b 01 00 41 2b 37 00 00 20 80 9c 01 2a 14 00 02 90 00 01 00 08 94 02 01 00 [ 210.139969] 00000020: 00 00 20 e3 01 00 00 02 c8 01 06 04 00 80 c0 00 03 10 80 05 90 03 05 04 00 00 00 10 08 00 80 92 [ 210.150655] 00000040: 01 08 10 6c 04 00 0b 04 00 02 10 00 04 20 00 20 08 40 00 82 40 00 09 80 04 00 10 04 40 00 04 00 [ 210.161325] 00000060: 80 00 11 10 7e 05 00 40 9c 0e 03 80 00 80 90 00 42 7e 07 00 12 82 0e 02 00 7c 07 bc 0c 75 00 10 [ 210.171999] 00000080: 60 09 08 01 20 00 08 08 00 06 10 02 02 08 6c 0c 7d 02 01 8d 11 21 6c 0d 64 14 98 15 02 19 80 00 [ 210.182675] 000000a0: 28 80 69 05 88 b8 02 95 00 30 7e 09 00 00 78 08 04 00 02 fa 85 ea cc e3 98 02 12 00 08 00 94 0d [ 210.193351] 000000c0: 88 1d 04 08 00 28 00 40 08 01 7c 0b 01 10 00 00 01 9c 03 01 28 00 00 00 b8 22 88 1f 64 09 8c 17 [ 210.204036] 000000e0: 01 00 00 00 04 fc 02 80 05 03 00 01 02 00 00 40 ee 25 20 70 88 19 a4 03 73 15 00 00 40 6c 07 a0 [ 210.214705] 00000100: 02 27 41 06 80 29 94 00 a8 10 2a 93 00 08 00 02 90 10 94 2f 65 05 04 6c 04 00 10 01 00 80 40 20 [ 210.225380] 00000120: 00 00 40 42 44 00 16 04 40 02 04 24 40 00 44 82 40 07 40 01 00 80 01 04 04 40 40 02 04 7c 0d 05 [ 210.236061] 00000140: 02 10 04 53 00 10 80 00 70 15 00 37 ca 00 51 04 04 11 92 01 18 10 11 40 92 10 00 50 00 00 82 00 [ 210.246734] 00000160: 0e 42 02 40 02 15 80 06 04 00 03 04 00 10 00 40 c0 40 04 00 01 00 c4 00 0a 00 00 40 80 50 40 04 [ 210.257410] 00000180: 41 01 90 54 00 10 40 00 c0 00 00 10 10 00 82 00 00 01 02 00 06 60 02 06 10 83 04 90 00 50 00 80 [ 210.268088] 000001a0: 54 68 19 00 07 42 10 02 00 15 04 84 08 40 40 00 80 82 44 02 10 50 14 8a 40 04 00 00 10 c0 78 18 [ 210.278762] 000001c0: 0c 10 80 01 20 42 40 10 82 40 60 33 39 0b 9f 19 7c 05 0d 00 00 44 40 10 44 10 20 14 00 41 40 00 [ 210.289438] 000001e0: 40 06 10 78 41 60 30 07 10 00 00 40 01 05 40 00 40 00 64 09 07 10 40 01 04 10 40 00 50 40 00 7d [ 210.300115] 00000200: 44 50 68 27 60 2b 0b 00 00 14 00 00 14 01 00 00 01 10 01 11 18 70 2d 09 04 14 40 04 50 00 04 10 [ 210.310791] 00000220: 04 04 40 03 69 4b 44 6c 03 07 04 10 00 40 04 04 00 00 03 00 68 04 80 28 68 3c 84 08 70 13 9e 10 [ 210.321469] 00000240: 40 0c 7c 29 2b 49 06 02 61 3c 04 93 38 04 00 00 74 21 64 13 60 28 0b 20 00 40 00 44 00 14 05 02 [ 210.332144] 00000260: 28 00 00 20 03 78 43 00 1e 00 42 00 30 44 00 00 03 40 68 40 00 01 02 05 20 40 10 40 10 02 3c 09 [ 210.342820] 00000280: 04 0c 04 00 24 11 00 00 40 40 21 00 00 00 01 10 08 40 00 10 01 14 24 01 04 74 01 02 00 05 00 00 [ 210.353496] 000002a0: 10 60 6d 00 09 40 00 68 80 10 00 01 44 04 c1 04 18 00 40 11 80 45 50 54 40 04 d1 01 00 00 05 04 [ 210.364173] 000002c0: 64 16 00 3a 45 44 04 40 51 04 04 44 04 14 00 00 00 2d 40 11 04 00 01 04 00 01 0d 80 01 70 08 01 [ 210.374850] 000002e0: c4 40 01 34 00 04 40 01 00 20 09 15 04 02 11 50 40 00 11 80 05 04 01 01 01 81 04 40 08 14 c1 45 [ 210.385526] 00000300: 55 00 40 00 34 04 40 48 48 00 24 55 1d a8 fc b0 8c 1d 09 00 88 10 10 00 40 00 01 00 41 01 40 88 [ 210.396202] 00000320: 39 07 00 44 51 c0 04 40 44 10 00 12 64 2c 0f 04 00 00 50 14 11 00 02 04 00 00 01 49 80 02 04 40 [ 210.406879] 00000340: 01 7d 5a 40 6f 26 00 08 50 9c 60 8c 27 00 04 0c 04 c4 01 01 20 01 44 00 44 00 01 04 10 50 00 40 [ 210.417555] 00000360: 38 01 00 00 46 64 52 01 00 40 44 48 64 0d 09 04 40 01 00 04 40 04 40 00 00 10 01 6c 01 6e 02 00 [ 210.428232] 00000380: 15 94 57 8a 01 00 02 6c 03 95 2a 00 74 3b 02 00 04 09 10 40 74 25 02 00 00 42 00 10 60 32 09 00 [ 210.438908] 000003a0: 20 40 00 00 04 01 00 00 11 0c 98 6d 21 01 7c 48 90 27 05 50 00 10 02 10 01 00 24 61 45 11 90 12 [ 210.449584] 000003c0: 0c 51 00 84 40 00 04 04 20 40 08 40 04 10 10 20 90 81 74 5d 00 09 00 00 04 40 06 09 00 00 00 06 [ 210.460266] 000003e0: 42 00 25 28 00 18 00 09 00 00 10 40 01 0c 40 00 0c 71 76 00 81 05 50 b4 10 00 06 01 18 00 08 01 [ 210.470940] 00000400: 00 00 0c 04 00 04 10 00 80 00 05 40 20 20 40 00 10 30 44 72 1f 10 08 72 40 04 00 86 1c 20 80 6f [ 210.481614] 00000420: 20 60 81 10 64 72 af 8b 01 10 00 a8 00 0b 00 10 30 10 00 08 00 40 00 49 bb 58 39 7c dc 5c 74 59 [ 210.492290] 00000440: b0 1e bd 87 10 83 0e 01 30 02 72 73 00 90 78 4a 64 02 ba 53 0c 01 64 61 02 40 00 04 60 04 66 24 [ 210.502966] 00000460: 40 00 71 59 40 b5 25 80 70 01 d0 91 a0 0a 64 b3 01 00 40 02 01 81 26 04 68 55 bc 02 96 00 01 88 [ 210.513642] 00000480: 7d 26 06 7a a9 22 0c 90 0e 77 b1 40 02 08 7c 17 9c 93 04 00 04 00 88 00 01 40 98 a5 88 64 01 41 [ 210.524319] 000004a0: 00 04 02 68 3e 02 02 00 08 00 10 78 66 02 05 08 00 48 20 7c b4 00 03 00 00 c0 00 90 00 d2 00 08 [ 210.534996] 000004c0: 04 60 00 42 48 80 00 00 70 10 20 10 80 22 00 20 04 00 80 40 40 10 00 48 81 04 00 85 88 09 00 00 [ 210.545672] 000004e0: 60 00 06 98 00 14 40 00 44 40 00 11 00 00 8c 08 00 00 84 80 41 c2 18 10 22 08 08 54 00 00 50 10 [ 210.556348] 00000500: 00 80 78 aa 02 14 00 04 19 80 70 7a 00 12 06 20 04 10 44 00 00 20 d5 1c 00 04 08 01 10 02 26 80 [ 210.567024] 00000520: 40 00 06 40 08 20 00 82 00 12 01 00 0c 49 80 00 00 04 8c 39 04 04 00 94 02 00 10 50 8c 6e 00 09 [ 210.577701] 00000540: 00 07 00 01 09 00 85 00 88 01 50 20 00 02 28 00 80 20 80 02 09 48 8c c8 44 c7 7d 88 1f 04 00 00 [ 210.588377] 00000560: 14 40 80 40 c0 68 1b 6c 20 6e 1b 51 00 70 67 02 00 10 20 11 40 88 8d 02 20 02 00 02 24 76 20 02 [ 210.599054] 00000580: 40 80 3f 80 24 6f 31 10 00 40 75 74 01 db 51 04 08 08 78 0f 74 33 7c 00 04 60 00 02 20 00 08 42 [ 210.609730] 000005a0: e8 2d 68 02 61 2c 01 78 44 69 0f 40 68 27 68 87 70 01 80 4c 9c 61 64 4d 05 08 60 18 20 00 06 00 [ 210.620406] 000005c0: 20 68 b6 6c 06 a4 04 8b 37 00 01 01 84 0a 00 14 04 08 01 40 01 02 20 80 71 50 00 00 28 00 80 8c [ 210.631083] 000005e0: 41 00 02 52 00 00 49 a0 04 4c 00 80 00 08 44 10 00 06 00 02 80 00 68 06 06 48 0d 02 30 c0 00 11 [ 210.641759] 00000600: 4c 02 68 18 00 0e 08 00 20 81 04 20 54 12 02 40 00 00 20 10 20 05 90 86 02 08 54 08 00 81 68 10 [ 210.652435] 00000620: 00 40 11 05 09 70 7c 56 02 08 05 0e 10 01 7d 4c 08 95 70 02 60 67 0c 20 08 00 04 04 30 60 60 00 [ 210.663113] 00000640: 03 00 10 44 06 02 80 4e 0b 30 80 10 84 01 00 00 14 20 11 40 42 10 04 7c 16 02 42 00 00 49 20 60 [ 210.673789] 00000660: 67 07 18 00 01 01 10 07 10 00 12 10 9c 24 07 92 00 00 01 7c d2 c9 9d db 31 a4 19 00 01 40 09 90 [ 210.684465] 00000680: 00 01 18 10 01 00 10 01 41 00 20 02 42 00 49 10 64 79 78 0a 70 77 01 81 00 34 41 60 22 01 04 09 [ 210.695141] 000006a0: 80 00 60 48 80 59 02 40 04 01 40 14 70 28 8c 32 9c 08 03 40 00 30 00 20 20 78 b7 8d 2a 21 60 23 [ 210.705818] 000006c0: 22 db 20 80 40 05 7c 03 68 a1 6c 98 dc 3a 22 10 21 0c 50 00 00 43 e0 10 10 90 40 08 80 01 08 80 [ 210.716499] 000006e0: 00 64 83 04 a0 45 08 80 04 04 60 8c 0c 04 00 00 80 68 04 20 40 6c 89 08 00 45 00 01 40 28 20 10 [ 210.727171] 00000700: 00 c2 30 68 21 70 3a 78 3c 00 26 10 40 10 20 19 20 00 01 08 31 c0 a2 08 11 05 02 06 20 10 00 80 [ 210.737847] 00000720: 80 0a 00 a2 48 00 20 8a 4f 0a 41 12 60 00 00 05 40 a2 01 28 00 02 9c 01 00 01 00 02 24 e0 8c 00 [ 210.748524] 00000740: 0d 24 00 6c 28 07 01 99 00 48 20 09 04 00 50 b1 74 13 02 00 00 04 05 92 78 4d 01 81 00 0b 21 64 [ 210.759200] 00000760: f0 00 49 41 50 00 42 24 02 25 40 49 01 04 02 01 10 30 08 d0 00 40 02 00 41 42 20 84 80 08 90 00 [ 210.769876] 00000780: 01 02 14 09 84 50 44 00 a4 18 40 00 42 05 40 02 00 a8 14 09 27 00 00 01 11 08 02 08 d2 40 30 98 [ 210.780552] 000007a0: a0 89 80 c5 c0 00 f0 00 a0 42 00 80 41 92 70 00 28 06 c0 42 ac 20 7f 3b 94 32 5d 4f 00 00 7c 0d [ 210.791237] 000007c0: 00 22 33 00 8b 01 82 0b 90 09 40 90 90 59 b1 00 60 18 34 28 80 14 80 60 03 51 2d 40 42 0a 80 00 [ 210.801906] 000007e0: 03 90 09 14 00 10 00 01 00 80 0d 48 0d 04 00 90 05 60 00 08 00 b4 74 a0 06 28 21 90 40 08 00 02 [ 210.812582] 00000800: 49 00 22 80 24 09 00 90 04 26 00 40 01 20 01 01 00 4a 64 6f 60 0b 00 02 00 04 01 84 20 21 00 40 [ 210.823268] 00000820: 0a 00 44 00 24 00 08 40 10 80 00 03 22 7c 21 03 03 0a 00 00 00 d0 88 97 00 03 02 42 c0 00 88 00 [ 210.833936] 00000840: 0a 08 00 40 42 02 00 60 00 00 00 0c 02 00 43 22 68 25 01 02 02 10 04 95 b5 01 78 38 74 09 02 04 [ 210.844611] 00000860: 40 02 01 06 70 01 00 07 f0 22 08 40 88 2a 08 00 22 24 24 00 c0 00 02 00 82 c0 04 90 02 50 02 04 [ 210.855289] 00000880: 80 74 2f 05 b0 00 2a 80 20 04 20 90 64 90 00 57 42 10 00 04 80 06 40 40 03 00 18 02 02 08 84 02 [ 210.865964] 000008a0: 50 00 01 00 01 50 10 00 40 b8 0c 80 80 88 02 04 01 00 80 02 98 00 00 08 02 8a 00 13 00 81 00 04 [ 210.876641] 000008c0: 80 02 e0 04 00 0f 91 12 40 02 10 40 88 80 28 08 00 00 c0 81 08 42 00 40 80 09 10 04 10 02 00 10 [ 210.887316] 000008e0: 50 00 48 00 04 50 44 00 80 00 08 10 80 00 09 26 00 40 24 00 03 00 c3 00 20 22 2c 29 00 16 00 11 [ 210.897993] 00000900: 81 88 02 03 01 80 04 02 12 01 04 02 00 03 80 80 16 40 00 23 68 04 08 84 c0 12 81 28 08 08 00 80 [ 210.908669] 00000920: 2e 12 b1 c6 96 05 68 19 09 00 00 80 04 4a 00 08 40 0c 80 42 41 6d 66 31 70 ba 00 12 40 c2 40 00 [ 210.919346] 00000940: 80 00 00 08 a0 00 a8 44 10 28 00 00 13 00 84 00 10 40 69 00 04 08 64 42 e8 02 c9 10 80 00 30 30 [ 210.930022] 00000960: 22 6c 25 02 20 20 04 08 00 60 a2 22 2c 29 04 40 01 00 40 09 02 01 60 59 05 11 80 88 10 00 00 48 [ 210.940699] 00000980: 08 68 e1 00 0e 04 08 00 08 8a 90 08 80 83 a4 00 82 88 1c 00 45 50 20 10 04 00 80 04 41 04 20 20 [ 210.951375] 000009a0: 00 22 00 1d 00 94 a6 01 20 20 00 24 22 44 27 23 57 26 80 00 08 70 5b 04 02 05 20 00 00 86 20 60 [ 210.962052] 000009c0: 4c 05 81 10 00 00 32 00 01 22 70 0d 02 02 01 04 00 21 22 34 25 01 04 00 00 45 97 c1 30 43 00 84 [ 210.972733] 000009e0: 02 00 01 00 04 82 00 00 44 00 00 84 81 44 95 03 00 04 14 82 40 12 64 ee 07 80 00 0d 85 20 50 04 [ 210.983428] 00000a00: 10 08 24 23 44 2c 00 06 40 10 09 04 40 08 84 00 00 08 40 20 05 40 08 80 00 08 08 44 00 20 40 02 [ 210.994082] 00000a20: 64 3c 08 01 41 45 00 00 40 11 00 00 00 44 22 cc 20 7f 23 15 01 41 64 70 01 51 00 03 24 8c 7a 0e [ 211.004757] 00000a40: 80 81 03 d1 10 01 c0 00 82 24 41 00 44 50 00 80 44 22 30 24 00 08 01 41 30 04 08 04 01 04 13 c4 [ 211.015433] 00000a60: 00 00 81 11 14 61 00 00 45 04 40 60 00 00 90 10 70 09 0a 01 16 00 30 50 70 82 7c 9d 19 16 8f 7e [ 211.026110] 00000a80: 6c 0a 6c 00 78 0d 22 d4 27 08 02 10 03 00 0c b0 40 05 40 00 30 22 c8 22 06 c6 40 00 54 00 01 30 [ 211.036786] 00000aa0: 00 13 69 8d 40 22 4a 20 00 80 22 08 29 06 80 00 13 31 14 00 30 04 03 22 c8 31 0d 04 03 30 10 00 [ 211.047463] 00000ac0: 80 04 58 80 04 00 00 c9 40 00 02 a5 ca 50 23 17 29 00 40 04 22 c0 23 04 70 40 40 20 00 10 0c 74 [ 211.058139] 00000ae0: a9 0b 03 30 00 02 00 40 08 04 04 48 81 00 00 03 22 c4 27 7c 0f 28 0c 00 74 86 6a 96 00 11 22 0a [ 211.068815] 00000b00: 27 01 18 78 7d 27 74 00 02 62 00 00 00 03 22 ac 2a 64 02 06 90 00 00 00 68 80 80 08 48 98 05 0f [ 211.079492] 00000b20: 00 10 80 03 82 01 44 00 10 00 04 45 80 04 40 40 28 60 6c 1a 00 02 24 00 80 80 44 40 08 00 01 14 [ 211.090168] 00000b40: 40 08 82 40 01 10 00 82 80 c0 78 a4 70 60 24 2c 33 0a 02 00 00 05 10 80 00 22 00 00 10 80 04 68 [ 211.100844] 00000b60: d3 68 0b 6c 00 23 04 22 70 a4 0d 01 00 13 00 20 40 10 00 41 08 00 20 42 00 40 28 7f 0f 02 10 84 [ 211.111522] 00000b80: 77 3f 40 01 40 23 37 2b a0 24 02 64 da 01 04 02 08 02 9c bf 22 24 25 02 10 00 10 51 00 6c 05 6c [ 211.122197] 00000ba0: a1 24 70 33 03 54 fe a1 01 1c 75 70 0b 6c 00 01 04 00 01 30 6c 14 03 00 04 24 01 28 20 60 55 06 [ 211.132874] 00000bc0: 00 01 01 14 00 00 11 40 11 67 cd 00 00 8c 24 18 25 7c 2e 01 10 04 08 28 68 4f 05 08 00 00 08 84 [ 211.143550] 00000be0: 00 08 c0 72 ff 08 80 22 28 25 01 00 00 04 20 23 a8 23 68 0a 6d 00 12 70 00 01 00 80 08 00 73 48 [ 211.154227] 00000c00: 02 20 05 87 d2 04 04 61 23 5c 22 04 00 02 00 41 20 14 00 73 2c 00 10 01 22 85 32 00 22 b8 2c 01 [ 211.164903] 00000c20: 04 00 40 01 22 48 21 02 00 05 80 04 82 d5 09 04 78 d0 03 00 00 20 50 7c 28 80 2c 22 a8 2f 00 16 [ 211.175579] 00000c40: 00 00 90 00 20 00 80 a8 04 00 81 28 89 8c 10 01 82 84 08 84 00 01 20 21 50 08 00 00 09 00 88 60 [ 211.186256] 00000c60: 00 20 40 28 00 a0 00 08 60 db 00 7e 04 90 32 00 05 00 2c 04 c0 12 00 02 04 14 a0 08 80 10 91 20 [ 211.196932] 00000c80: 01 01 8c c2 84 02 00 80 11 00 00 12 01 98 13 c2 00 68 01 08 40 21 82 08 82 0e 22 20 80 18 60 50 [ 211.207608] 00000ca0: 00 48 90 00 20 80 82 41 11 8a 02 08 20 11 00 10 22 00 04 00 21 10 82 38 48 28 00 00 00 21 84 20 [ 211.218285] 00000cc0: 20 01 c9 84 28 a8 08 89 44 00 02 40 04 00 02 12 00 08 04 08 40 00 20 08 12 08 0a 00 2a 80 00 08 [ 211.228967] 00000ce0: a8 08 89 81 3a 44 42 00 04 00 1d 41 22 00 80 40 04 04 40 43 e9 74 9d d0 a6 00 00 00 78 22 00 0d [ 211.239638] 00000d00: 08 c0 10 00 e5 38 89 45 e1 08 c8 90 0c 62 00 82 02 08 00 04 03 00 00 a8 08 00 0a 88 80 90 0c 6c [ 211.250314] 00000d20: 37 00 2a 90 0c a0 20 94 a1 00 08 12 e5 04 90 84 46 20 80 46 28 40 04 08 60 00 00 48 48 08 14 00 [ 211.260991] 00000d40: 21 0a 54 08 a0 10 c0 00 84 00 80 d0 25 38 00 48 a8 04 02 00 19 61 08 80 81 98 00 08 80 01 89 11 [ 211.271665] 00000d60: 00 00 [ 211.274546] UBIFS error (ubi0:0 pid 2489): do_readpage: cannot read page 105 of inode 66, error -22 [ 211.284322] UBIFS error (ubi0:0 pid 2489): ubifs_decompress: cannot decompress 3426 bytes, compressor lzo, error -22 [ 211.294819] UBIFS error (ubi0:0 pid 2489): do_readpage: bad data node (block 105, inode 66) [ 211.303104] magic 0x6101831 [ 211.306746] crc 0x45df308d [ 211.310479] node_type 1 (data node) [ 211.314474] group_type 0 (no node group) [ 211.318811] sqnum 149 [ 211.321935] len 3474 [ 211.325150] key (66, data, 105) [ 211.329313] size 4096 [ 211.332524] compr_typ 1 [ 211.335468] data size 3426 [ 211.338687] data: [ 211.340687] 00000000: 03 00 00 00 08 00 00 2b 01 00 41 2b 37 00 00 20 80 9c 01 2a 14 00 02 90 00 01 00 08 94 02 01 00 [ 211.351364] 00000020: 00 00 20 e3 01 00 00 02 c8 01 06 04 00 80 c0 00 03 10 80 05 90 03 05 04 00 00 00 10 08 00 80 92 [ 211.362048] 00000040: 01 08 10 6c 04 00 0b 04 00 02 10 00 04 20 00 20 08 40 00 82 40 00 09 80 04 00 10 04 40 00 04 00 [ 211.372718] 00000060: 80 00 11 10 7e 05 00 40 9c 0e 03 80 00 80 90 00 42 7e 07 00 12 82 0e 02 00 7c 07 bc 0c 75 00 10 [ 211.383393] 00000080: 60 09 08 01 20 00 08 08 00 06 10 02 02 08 6c 0c 7d 02 01 8d 11 21 6c 0d 64 14 98 15 02 19 80 00 [ 211.394074] 000000a0: 28 80 69 05 88 b8 02 95 00 30 7e 09 00 00 78 08 04 00 02 fa 85 ea cc e3 98 02 12 00 08 00 94 0d [ 211.404747] 000000c0: 88 1d 04 08 00 28 00 40 08 01 7c 0b 01 10 00 00 01 9c 03 01 28 00 00 00 b8 22 88 1f 64 09 8c 17 [ 211.415422] 000000e0: 01 00 00 00 04 fc 02 80 05 03 00 01 02 00 00 40 ee 25 20 70 88 19 a4 03 73 15 00 00 40 6c 07 a0 [ 211.426098] 00000100: 02 27 41 06 80 29 94 00 a8 10 2a 93 00 08 00 02 90 10 94 2f 65 05 04 6c 04 00 10 01 00 80 40 20 [ 211.436775] 00000120: 00 00 40 42 44 00 16 04 40 02 04 24 40 00 44 82 40 07 40 01 00 80 01 04 04 40 40 02 04 7c 0d 05 [ 211.447451] 00000140: 02 10 04 53 00 10 80 00 70 15 00 37 ca 00 51 04 04 11 92 01 18 10 11 40 92 10 00 50 00 00 82 00 [ 211.458128] 00000160: 0e 42 02 40 02 15 80 06 04 00 03 04 00 10 00 40 c0 40 04 00 01 00 c4 00 0a 00 00 40 80 50 40 04 [ 211.468804] 00000180: 41 01 90 54 00 10 40 00 c0 00 00 10 10 00 82 00 00 01 02 00 06 60 02 06 10 83 04 90 00 50 00 80 [ 211.479480] 000001a0: 54 68 19 00 07 42 10 02 00 15 04 84 08 40 40 00 80 82 44 02 10 50 14 8a 40 04 00 00 10 c0 78 18 [ 211.490157] 000001c0: 0c 10 80 01 20 42 40 10 82 40 60 33 39 0b 9f 19 7c 05 0d 00 00 44 40 10 44 10 20 14 00 41 40 00 [ 211.500833] 000001e0: 40 06 10 78 41 60 30 07 10 00 00 40 01 05 40 00 40 00 64 09 07 10 40 01 04 10 40 00 50 40 00 7d [ 211.511510] 00000200: 44 50 68 27 60 2b 0b 00 00 14 00 00 14 01 00 00 01 10 01 11 18 70 2d 09 04 14 40 04 50 00 04 10 [ 211.522186] 00000220: 04 04 40 03 69 4b 44 6c 03 07 04 10 00 40 04 04 00 00 03 00 68 04 80 28 68 3c 84 08 70 13 9e 10 [ 211.532863] 00000240: 40 0c 7c 29 2b 49 06 02 61 3c 04 93 38 04 00 00 74 21 64 13 60 28 0b 20 00 40 00 44 00 14 05 02 [ 211.543539] 00000260: 28 00 00 20 03 78 43 00 1e 00 42 00 30 44 00 00 03 40 68 40 00 01 02 05 20 40 10 40 10 02 3c 09 [ 211.554215] 00000280: 04 0c 04 00 24 11 00 00 40 40 21 00 00 00 01 10 08 40 00 10 01 14 24 01 04 74 01 02 00 05 00 00 [ 211.564892] 000002a0: 10 60 6d 00 09 40 00 68 80 10 00 01 44 04 c1 04 18 00 40 11 80 45 50 54 40 04 d1 01 00 00 05 04 [ 211.575568] 000002c0: 64 16 00 3a 45 44 04 40 51 04 04 44 04 14 00 00 00 2d 40 11 04 00 01 04 00 01 0d 80 01 70 08 01 [ 211.586244] 000002e0: c4 40 01 34 00 04 40 01 00 20 09 15 04 02 11 50 40 00 11 80 05 04 01 01 01 81 04 40 08 14 c1 45 [ 211.596921] 00000300: 55 00 40 00 34 04 40 48 48 00 24 55 1d a8 fc b0 8c 1d 09 00 88 10 10 00 40 00 01 00 41 01 40 88 [ 211.607597] 00000320: 39 07 00 44 51 c0 04 40 44 10 00 12 64 2c 0f 04 00 00 50 14 11 00 02 04 00 00 01 49 80 02 04 40 [ 211.618274] 00000340: 01 7d 5a 40 6f 26 00 08 50 9c 60 8c 27 00 04 0c 04 c4 01 01 20 01 44 00 44 00 01 04 10 50 00 40 [ 211.628950] 00000360: 38 01 00 00 46 64 52 01 00 40 44 48 64 0d 09 04 40 01 00 04 40 04 40 00 00 10 01 6c 01 6e 02 00 [ 211.639626] 00000380: 15 94 57 8a 01 00 02 6c 03 95 2a 00 74 3b 02 00 04 09 10 40 74 25 02 00 00 42 00 10 60 32 09 00 [ 211.650303] 000003a0: 20 40 00 00 04 01 00 00 11 0c 98 6d 21 01 7c 48 90 27 05 50 00 10 02 10 01 00 24 61 45 11 90 12 [ 211.660979] 000003c0: 0c 51 00 84 40 00 04 04 20 40 08 40 04 10 10 20 90 81 74 5d 00 09 00 00 04 40 06 09 00 00 00 06 [ 211.671656] 000003e0: 42 00 25 28 00 18 00 09 00 00 10 40 01 0c 40 00 0c 71 76 00 81 05 50 b4 10 00 06 01 18 00 08 01 [ 211.682332] 00000400: 00 00 0c 04 00 04 10 00 80 00 05 40 20 20 40 00 10 30 44 72 1f 10 08 72 40 04 00 86 1c 20 80 6f [ 211.693009] 00000420: 20 60 81 10 64 72 af 8b 01 10 00 a8 00 0b 00 10 30 10 00 08 00 40 00 49 bb 58 39 7c dc 5c 74 59 [ 211.703685] 00000440: b0 1e bd 87 10 83 0e 01 30 02 72 73 00 90 78 4a 64 02 ba 53 0c 01 64 61 02 40 00 04 60 04 66 24 [ 211.714361] 00000460: 40 00 71 59 40 b5 25 80 70 01 d0 91 a0 0a 64 b3 01 00 40 02 01 81 26 04 68 55 bc 02 96 00 01 88 [ 211.725038] 00000480: 7d 26 06 7a a9 22 0c 90 0e 77 b1 40 02 08 7c 17 9c 93 04 00 04 00 88 00 01 40 98 a5 88 64 01 41 [ 211.735714] 000004a0: 00 04 02 68 3e 02 02 00 08 00 10 78 66 02 05 08 00 48 20 7c b4 00 03 00 00 c0 00 90 00 d2 00 08 [ 211.746394] 000004c0: 04 60 00 42 48 80 00 00 70 10 20 10 80 22 00 20 04 00 80 40 40 10 00 48 81 04 00 85 88 09 00 00 [ 211.757068] 000004e0: 60 00 06 98 00 14 40 00 44 40 00 11 00 00 8c 08 00 00 84 80 41 c2 18 10 22 08 08 54 00 00 50 10 [ 211.767743] 00000500: 00 80 78 aa 02 14 00 04 19 80 70 7a 00 12 06 20 04 10 44 00 00 20 d5 1c 00 04 08 01 10 02 26 80 [ 211.778420] 00000520: 40 00 06 40 08 20 00 82 00 12 01 00 0c 49 80 00 00 04 8c 39 04 04 00 94 02 00 10 50 8c 6e 00 09 [ 211.789096] 00000540: 00 07 00 01 09 00 85 00 88 01 50 20 00 02 28 00 80 20 80 02 09 48 8c c8 44 c7 7d 88 1f 04 00 00 [ 211.799773] 00000560: 14 40 80 40 c0 68 1b 6c 20 6e 1b 51 00 70 67 02 00 10 20 11 40 88 8d 02 20 02 00 02 24 76 20 02 [ 211.810449] 00000580: 40 80 3f 80 24 6f 31 10 00 40 75 74 01 db 51 04 08 08 78 0f 74 33 7c 00 04 60 00 02 20 00 08 42 [ 211.821125] 000005a0: e8 2d 68 02 61 2c 01 78 44 69 0f 40 68 27 68 87 70 01 80 4c 9c 61 64 4d 05 08 60 18 20 00 06 00 [ 211.831802] 000005c0: 20 68 b6 6c 06 a4 04 8b 37 00 01 01 84 0a 00 14 04 08 01 40 01 02 20 80 71 50 00 00 28 00 80 8c [ 211.842478] 000005e0: 41 00 02 52 00 00 49 a0 04 4c 00 80 00 08 44 10 00 06 00 02 80 00 68 06 06 48 0d 02 30 c0 00 11 [ 211.853154] 00000600: 4c 02 68 18 00 0e 08 00 20 81 04 20 54 12 02 40 00 00 20 10 20 05 90 86 02 08 54 08 00 81 68 10 [ 211.863831] 00000620: 00 40 11 05 09 70 7c 56 02 08 05 0e 10 01 7d 4c 08 95 70 02 60 67 0c 20 08 00 04 04 30 60 60 00 [ 211.874507] 00000640: 03 00 10 44 06 02 80 4e 0b 30 80 10 84 01 00 00 14 20 11 40 42 10 04 7c 16 02 42 00 00 49 20 60 [ 211.885184] 00000660: 67 07 18 00 01 01 10 07 10 00 12 10 9c 24 07 92 00 00 01 7c d2 c9 9d db 31 a4 19 00 01 40 09 90 [ 211.895860] 00000680: 00 01 18 10 01 00 10 01 41 00 20 02 42 00 49 10 64 79 78 0a 70 77 01 81 00 34 41 60 22 01 04 09 [ 211.906536] 000006a0: 80 00 60 48 80 59 02 40 04 01 40 14 70 28 8c 32 9c 08 03 40 00 30 00 20 20 78 b7 8d 2a 21 60 23 [ 211.917213] 000006c0: 22 db 20 80 40 05 7c 03 68 a1 6c 98 dc 3a 22 10 21 0c 50 00 00 43 e0 10 10 90 40 08 80 01 08 80 [ 211.927889] 000006e0: 00 64 83 04 a0 45 08 80 04 04 60 8c 0c 04 00 00 80 68 04 20 40 6c 89 08 00 45 00 01 40 28 20 10 [ 211.938566] 00000700: 00 c2 30 68 21 70 3a 78 3c 00 26 10 40 10 20 19 20 00 01 08 31 c0 a2 08 11 05 02 06 20 10 00 80 [ 211.949242] 00000720: 80 0a 00 a2 48 00 20 8a 4f 0a 41 12 60 00 00 05 40 a2 01 28 00 02 9c 01 00 01 00 02 24 e0 8c 00 [ 211.959918] 00000740: 0d 24 00 6c 28 07 01 99 00 48 20 09 04 00 50 b1 74 13 02 00 00 04 05 92 78 4d 01 81 00 0b 21 64 [ 211.970595] 00000760: f0 00 49 41 50 00 42 24 02 25 40 49 01 04 02 01 10 30 08 d0 00 40 02 00 41 42 20 84 80 08 90 00 [ 211.981271] 00000780: 01 02 14 09 84 50 44 00 a4 18 40 00 42 05 40 02 00 a8 14 09 27 00 00 01 11 08 02 08 d2 40 30 98 [ 211.991948] 000007a0: a0 89 80 c5 c0 00 f0 00 a0 42 00 80 41 92 70 00 28 06 c0 42 ac 20 7f 3b 94 32 5d 4f 00 00 7c 0d [ 212.002624] 000007c0: 00 22 33 00 8b 01 82 0b 90 09 40 90 90 59 b1 00 60 18 34 28 80 14 80 60 03 51 2d 40 42 0a 80 00 [ 212.013301] 000007e0: 03 90 09 14 00 10 00 01 00 80 0d 48 0d 04 00 90 05 60 00 08 00 b4 74 a0 06 28 21 90 40 08 00 02 [ 212.023977] 00000800: 49 00 22 80 24 09 00 90 04 26 00 40 01 20 01 01 00 4a 64 6f 60 0b 00 02 00 04 01 84 20 21 00 40 [ 212.034653] 00000820: 0a 00 44 00 24 00 08 40 10 80 00 03 22 7c 21 03 03 0a 00 00 00 d0 88 97 00 03 02 42 c0 00 88 00 [ 212.045330] 00000840: 0a 08 00 40 42 02 00 60 00 00 00 0c 02 00 43 22 68 25 01 02 02 10 04 95 b5 01 78 38 74 09 02 04 [ 212.056006] 00000860: 40 02 01 06 70 01 00 07 f0 22 08 40 88 2a 08 00 22 24 24 00 c0 00 02 00 82 c0 04 90 02 50 02 04 [ 212.066683] 00000880: 80 74 2f 05 b0 00 2a 80 20 04 20 90 64 90 00 57 42 10 00 04 80 06 40 40 03 00 18 02 02 08 84 02 [ 212.077359] 000008a0: 50 00 01 00 01 50 10 00 40 b8 0c 80 80 88 02 04 01 00 80 02 98 00 00 08 02 8a 00 13 00 81 00 04 [ 212.088035] 000008c0: 80 02 e0 04 00 0f 91 12 40 02 10 40 88 80 28 08 00 00 c0 81 08 42 00 40 80 09 10 04 10 02 00 10 [ 212.098711] 000008e0: 50 00 48 00 04 50 44 00 80 00 08 10 80 00 09 26 00 40 24 00 03 00 c3 00 20 22 2c 29 00 16 00 11 [ 212.109388] 00000900: 81 88 02 03 01 80 04 02 12 01 04 02 00 03 80 80 16 40 00 23 68 04 08 84 c0 12 81 28 08 08 00 80 [ 212.120064] 00000920: 2e 12 b1 c6 96 05 68 19 09 00 00 80 04 4a 00 08 40 0c 80 42 41 6d 66 31 70 ba 00 12 40 c2 40 00 [ 212.130741] 00000940: 80 00 00 08 a0 00 a8 44 10 28 00 00 13 00 84 00 10 40 69 00 04 08 64 42 e8 02 c9 10 80 00 30 30 [ 212.141417] 00000960: 22 6c 25 02 20 20 04 08 00 60 a2 22 2c 29 04 40 01 00 40 09 02 01 60 59 05 11 80 88 10 00 00 48 [ 212.152094] 00000980: 08 68 e1 00 0e 04 08 00 08 8a 90 08 80 83 a4 00 82 88 1c 00 45 50 20 10 04 00 80 04 41 04 20 20 [ 212.162770] 000009a0: 00 22 00 1d 00 94 a6 01 20 20 00 24 22 44 27 23 57 26 80 00 08 70 5b 04 02 05 20 00 00 86 20 60 [ 212.173446] 000009c0: 4c 05 81 10 00 00 32 00 01 22 70 0d 02 02 01 04 00 21 22 34 25 01 04 00 00 45 97 c1 30 43 00 84 [ 212.184123] 000009e0: 02 00 01 00 04 82 00 00 44 00 00 84 81 44 95 03 00 04 14 82 40 12 64 ee 07 80 00 0d 85 20 50 04 [ 212.194800] 00000a00: 10 08 24 23 44 2c 00 06 40 10 09 04 40 08 84 00 00 08 40 20 05 40 08 80 00 08 08 44 00 20 40 02 [ 212.205476] 00000a20: 64 3c 08 01 41 45 00 00 40 11 00 00 00 44 22 cc 20 7f 23 15 01 41 64 70 01 51 00 03 24 8c 7a 0e [ 212.216152] 00000a40: 80 81 03 d1 10 01 c0 00 82 24 41 00 44 50 00 80 44 22 30 24 00 08 01 41 30 04 08 04 01 04 13 c4 [ 212.226828] 00000a60: 00 00 81 11 14 61 00 00 45 04 40 60 00 00 90 10 70 09 0a 01 16 00 30 50 70 82 7c 9d 19 16 8f 7e [ 212.237505] 00000a80: 6c 0a 6c 00 78 0d 22 d4 27 08 02 10 03 00 0c b0 40 05 40 00 30 22 c8 22 06 c6 40 00 54 00 01 30 [ 212.248181] 00000aa0: 00 13 69 8d 40 22 4a 20 00 80 22 08 29 06 80 00 13 31 14 00 30 04 03 22 c8 31 0d 04 03 30 10 00 [ 212.258857] 00000ac0: 80 04 58 80 04 00 00 c9 40 00 02 a5 ca 50 23 17 29 00 40 04 22 c0 23 04 70 40 40 20 00 10 0c 74 [ 212.269534] 00000ae0: a9 0b 03 30 00 02 00 40 08 04 04 48 81 00 00 03 22 c4 27 7c 0f 28 0c 00 74 86 6a 96 00 11 22 0a [ 212.280210] 00000b00: 27 01 18 78 7d 27 74 00 02 62 00 00 00 03 22 ac 2a 64 02 06 90 00 00 00 68 80 80 08 48 98 05 0f [ 212.290887] 00000b20: 00 10 80 03 82 01 44 00 10 00 04 45 80 04 40 40 28 60 6c 1a 00 02 24 00 80 80 44 40 08 00 01 14 [ 212.301563] 00000b40: 40 08 82 40 01 10 00 82 80 c0 78 a4 70 60 24 2c 33 0a 02 00 00 05 10 80 00 22 00 00 10 80 04 68 [ 212.312240] 00000b60: d3 68 0b 6c 00 23 04 22 70 a4 0d 01 00 13 00 20 40 10 00 41 08 00 20 42 00 40 28 7f 0f 02 10 84 [ 212.322916] 00000b80: 77 3f 40 01 40 23 37 2b a0 24 02 64 da 01 04 02 08 02 9c bf 22 24 25 02 10 00 10 51 00 6c 05 6c [ 212.333592] 00000ba0: a1 24 70 33 03 54 fe a1 01 1c 75 70 0b 6c 00 01 04 00 01 30 6c 14 03 00 04 24 01 28 20 60 55 06 [ 212.344269] 00000bc0: 00 01 01 14 00 00 11 40 11 67 cd 00 00 8c 24 18 25 7c 2e 01 10 04 08 28 68 4f 05 08 00 00 08 84 [ 212.354945] 00000be0: 00 08 c0 72 ff 08 80 22 28 25 01 00 00 04 20 23 a8 23 68 0a 6d 00 12 70 00 01 00 80 08 00 73 48 [ 212.365622] 00000c00: 02 20 05 87 d2 04 04 61 23 5c 22 04 00 02 00 41 20 14 00 73 2c 00 10 01 22 85 32 00 22 b8 2c 01 [ 212.376298] 00000c20: 04 00 40 01 22 48 21 02 00 05 80 04 82 d5 09 04 78 d0 03 00 00 20 50 7c 28 80 2c 22 a8 2f 00 16 [ 212.386974] 00000c40: 00 00 90 00 20 00 80 a8 04 00 81 28 89 8c 10 01 82 84 08 84 00 01 20 21 50 08 00 00 09 00 88 60 [ 212.397651] 00000c60: 00 20 40 28 00 a0 00 08 60 db 00 7e 04 90 32 00 05 00 2c 04 c0 12 00 02 04 14 a0 08 80 10 91 20 [ 212.408327] 00000c80: 01 01 8c c2 84 02 00 80 11 00 00 12 01 98 13 c2 00 68 01 08 40 21 82 08 82 0e 22 20 80 18 60 50 [ 212.419003] 00000ca0: 00 48 90 00 20 80 82 41 11 8a 02 08 20 11 00 10 22 00 04 00 21 10 82 38 48 28 00 00 00 21 84 20 [ 212.429680] 00000cc0: 20 01 c9 84 28 a8 08 89 44 00 02 40 04 00 02 12 00 08 04 08 40 00 20 08 12 08 0a 00 2a 80 00 08 [ 212.440356] 00000ce0: a8 08 89 81 3a 44 42 00 04 00 1d 41 22 00 80 40 04 04 40 43 e9 74 9d d0 a6 00 00 00 78 22 00 0d [ 212.451033] 00000d00: 08 c0 10 00 e5 38 89 45 e1 08 c8 90 0c 62 00 82 02 08 00 04 03 00 00 a8 08 00 0a 88 80 90 0c 6c [ 212.461709] 00000d20: 37 00 2a 90 0c a0 20 94 a1 00 08 12 e5 04 90 84 46 20 80 46 28 40 04 08 60 00 00 48 48 08 14 00 [ 212.472386] 00000d40: 21 0a 54 08 a0 10 c0 00 84 00 80 d0 25 38 00 48 a8 04 02 00 19 61 08 80 81 98 00 08 80 01 89 11 [ 212.483060] 00000d60: 00 00 [ 212.485939] UBIFS error (ubi0:0 pid 2489): do_readpage: cannot read page 105 of inode 66, error -22 cp: read error: Input/output error [ 212.557243] UBIFS error (ubi0:0 pid 2489): ubifs_decompress: cannot decompress 3733 bytes, compressor lzo, error -22 [ 212.567710] UBIFS error (ubi0:0 pid 2489): do_readpage: bad data node (block 171, inode 67) [ 212.576027] magic 0x6101831 [ 212.579670] crc 0xe72ffbc8 [ 212.583402] node_type 1 (data node) [ 212.587395] group_type 0 (no node group) [ 212.591734] sqnum 1637 [ 212.594945] len 3781 [ 212.598171] key (67, data, 171) [ 212.602329] size 4096 [ 212.605536] compr_typ 1 [ 212.608487] data size 3733 [ 212.611688] data: [ 212.613701] 00000000: 00 5f 04 00 00 38 04 02 21 00 00 21 01 01 00 11 40 20 00 41 08 40 01 20 01 02 00 52 01 00 01 10 [ 212.624375] 00000020: 01 00 04 00 00 00 04 02 00 00 00 03 00 15 01 04 00 00 10 00 00 40 10 51 10 03 00 04 00 01 20 04 [ 212.635052] 00000040: 03 08 10 44 08 00 00 30 58 00 41 00 40 00 40 00 00 00 02 04 01 04 00 01 00 00 44 01 00 00 00 00 [ 212.645731] 00000060: 01 01 10 08 00 00 00 00 00 00 00 10 00 00 88 80 00 00 00 6c 01 0e 05 20 00 00 00 02 08 10 01 02 [ 212.656404] 00000080: 08 00 00 40 20 20 08 7e 0a 40 40 62 0e f0 80 6c 01 70 24 02 00 2c 04 10 00 75 07 12 74 01 09 81 [ 212.667080] 000000a0: 0a 00 01 50 00 04 0a 00 01 00 00 7c 0c 03 00 20 06 48 00 41 67 03 00 04 40 88 06 01 10 00 0c 40 [ 212.677757] 000000c0: 98 15 73 00 02 10 02 6c 03 05 10 00 00 01 40 00 04 08 66 05 04 18 66 02 40 10 7d 05 0c 74 03 00 [ 212.688433] 000000e0: 02 20 42 00 00 00 40 01 02 30 00 00 00 08 08 80 00 00 40 40 40 78 16 04 20 86 ad 1a f7 2f 72 74 [ 212.699110] 00000100: 05 06 00 00 00 18 02 08 10 86 60 64 17 05 21 00 d0 00 04 10 00 80 7d 0f 04 70 00 0c 00 24 08 00 [ 212.709786] 00000120: 01 10 10 00 24 80 08 00 04 00 10 7c 0e 70 13 98 13 d4 07 08 00 10 24 00 40 04 00 00 24 40 00 66 [ 212.720463] 00000140: 17 00 10 80 1f 07 00 00 04 40 08 09 00 02 08 30 60 21 69 2c d1 dc 05 6d 19 c0 b0 0b 78 02 0b 00 [ 212.731139] 00000160: 02 00 00 40 08 04 40 00 14 40 20 02 00 75 0f 02 64 17 03 00 00 80 00 08 20 90 23 06 20 20 00 00 [ 212.741815] 00000180: 14 09 00 02 04 6c 1f 02 02 01 10 00 00 a5 1f 04 74 03 0e 80 90 92 40 80 00 80 c0 02 22 04 42 00 [ 212.752492] 000001a0: 52 00 00 06 78 0f 08 04 08 24 04 40 00 09 84 00 40 80 6c 09 06 08 80 84 03 40 00 41 44 11 64 1a [ 212.763168] 000001c0: 08 80 0a 6c 88 00 20 80 00 02 00 40 78 0b 00 28 56 88 01 42 80 a1 01 10 81 06 02 4a 40 00 00 84 [ 212.773851] 000001e0: 10 11 00 02 82 20 12 11 00 00 45 00 10 00 42 18 22 08 06 14 10 12 20 00 08 05 00 01 00 04 20 00 [ 212.784522] 00000200: 01 00 08 04 00 00 04 12 20 30 ac 20 00 20 88 00 00 78 00 18 03 00 88 38 66 18 12 20 48 00 01 10 [ 212.795197] 00000220: 82 00 10 00 18 03 60 03 02 00 40 44 04 00 21 44 00 00 40 25 0a 84 04 61 00 d3 73 b8 a4 3f b7 00 [ 212.805884] 00000240: 98 20 cc 2c 05 12 61 27 12 63 20 16 ac 78 33 03 00 01 00 20 43 02 74 25 00 0a 08 02 00 00 d4 00 [ 212.816551] 00000260: 12 03 00 40 12 00 0f 10 04 20 10 60 40 00 01 02 00 04 03 00 00 0a 79 49 38 74 1a 0b 48 90 00 06 [ 212.827227] 00000280: 04 08 04 11 00 80 00 56 10 20 70 11 60 23 74 58 06 20 00 02 21 02 30 00 04 04 6c 28 02 00 08 00 [ 212.837903] 000002a0: 20 00 78 42 01 41 54 40 01 70 41 05 40 10 60 49 19 11 68 06 68 42 0a 01 00 20 40 80 00 40 30 12 [ 212.848580] 000002c0: 82 00 00 20 60 31 94 4c 6c 09 6a 39 81 00 84 46 74 2c 0f 01 02 20 44 3a 18 24 00 14 01 00 00 60 [ 212.859256] 000002e0: 00 00 00 50 00 7c 14 70 06 94 06 87 06 80 11 00 60 0e 00 03 06 00 40 40 84 00 09 80 06 18 04 20 [ 212.869933] 00000300: 01 14 40 12 02 01 00 04 41 74 30 00 1c 01 00 08 05 11 00 14 c0 00 80 02 04 20 00 48 05 90 03 00 [ 212.880608] 00000320: 20 00 20 c0 08 24 00 02 02 42 20 00 58 40 10 40 00 00 0b 00 80 00 60 04 00 80 12 bc 0b 04 00 01 [ 212.891285] 00000340: 00 01 02 10 84 78 6c 0e 04 20 00 08 40 09 08 09 00 00 08 0b 84 08 40 11 40 88 10 6b 5a 12 80 03 [ 212.901961] 00000360: 6f 52 94 00 48 74 50 00 02 20 08 44 01 00 08 20 40 04 40 22 c4 10 08 1e f3 ec db 12 46 88 2e 70 [ 212.912638] 00000380: 1f 02 00 02 08 24 10 80 38 02 01 00 20 02 02 88 08 0a 41 04 00 08 10 80 00 44 02 00 20 80 12 68 [ 212.923314] 000003a0: 1e 0e 42 84 02 60 e4 08 00 00 06 20 08 01 30 08 84 32 00 63 4d 40 08 81 6c 78 00 0b 41 00 02 00 [ 212.933990] 000003c0: 20 c0 00 10 08 82 00 50 40 00 02 06 24 00 01 20 01 50 00 41 44 10 00 05 44 6c 03 80 6e 01 41 50 [ 212.944667] 000003e0: 04 01 7c 2f c4 59 01 10 00 00 04 60 5b 00 07 00 44 40 00 c0 00 80 00 04 04 40 02 00 80 00 24 22 [ 212.955343] 00000400: 02 30 41 02 00 01 82 04 68 80 04 01 00 00 88 80 20 08 60 84 00 04 00 00 00 10 82 25 40 c0 04 02 [ 212.966020] 00000420: 10 80 80 80 e0 02 00 80 08 42 52 66 6c 1c 0c 40 00 08 40 10 00 25 00 49 00 01 00 02 10 20 8c 31 [ 212.976696] 00000440: 07 82 94 00 82 98 24 00 00 80 0c 78 19 00 24 01 48 00 10 c0 08 0e 28 20 16 d0 10 24 40 00 42 00 [ 212.987372] 00000460: 00 08 20 01 00 01 90 80 45 98 04 00 10 40 04 00 40 01 80 00 02 10 40 60 00 00 60 10 00 0c c2 0e [ 212.998049] 00000480: 04 00 08 00 79 68 6a 02 28 00 24 00 05 68 0f 00 0c 00 61 18 00 08 a0 00 01 80 54 81 80 20 40 00 [ 213.008725] 000004a0: 90 90 90 00 00 9c 10 40 00 01 26 03 00 42 00 70 70 68 82 0f 08 40 12 02 09 02 00 00 10 08 26 28 [ 213.019401] 000004c0: 00 00 04 80 80 22 74 79 07 50 20 00 00 ea 3a 52 33 fc 96 ac 2e 00 02 22 04 10 13 04 03 12 28 00 [ 213.030084] 000004e0: 08 41 04 00 80 00 0c 02 00 a6 0c 68 46 0b 21 00 84 00 04 16 00 74 2d 28 10 a4 10 24 60 9e 00 3d [ 213.040755] 00000500: ca 82 00 2b 90 04 42 60 08 05 70 44 10 02 61 21 01 00 20 04 62 0c 64 02 10 01 0a d1 20 42 9a 20 [ 213.051431] 00000520: c8 4a 00 08 a9 1d 02 00 10 00 03 08 8c 24 80 00 04 08 90 e3 31 0a 60 0b 40 13 09 00 12 09 04 05 [ 213.062107] 00000540: 10 42 00 7c 00 02 00 20 0a 00 10 20 21 00 21 74 34 00 0b 00 00 80 01 41 0a 00 02 06 82 08 00 20 [ 213.072783] 00000560: 02 40 00 03 60 00 03 00 01 c2 08 80 00 2e 00 20 70 88 03 40 02 00 21 02 04 64 35 64 97 70 54 00 [ 213.083460] 00000580: 03 00 14 00 01 04 40 05 00 00 01 26 00 21 20 01 2c 88 12 40 04 02 6c 3a 0b 84 04 00 12 80 06 04 [ 213.094136] 000005a0: 20 02 00 08 00 34 03 64 5f 0c 24 04 82 00 49 10 18 40 00 08 00 02 20 00 20 79 57 88 7c 02 00 01 [ 213.104813] 000005c0: 48 01 40 20 28 11 20 08 40 0a 08 08 0a a4 20 e0 04 00 0e 70 41 00 1c 40 10 20 00 80 10 50 20 04 [ 213.115488] 000005e0: 10 00 00 28 80 00 88 66 08 08 00 40 01 00 40 40 00 83 40 08 00 a8 08 84 08 04 38 30 a0 10 e0 21 [ 213.126166] 00000600: 06 03 00 06 00 88 cd 00 20 10 00 05 00 04 14 40 10 24 44 00 01 61 84 00 60 0c 00 32 c1 80 90 00 [ 213.136842] 00000620: 40 10 00 03 20 10 84 20 02 02 08 40 80 20 4a 2c 04 00 02 c4 f1 d1 84 15 42 c8 00 b0 2e 00 28 40 [ 213.147519] 00000640: 0a 33 04 00 90 41 80 12 00 a0 29 20 41 90 00 20 20 03 72 50 21 ba 63 22 21 40 48 08 08 18 88 03 [ 213.158195] 00000660: 42 00 63 42 46 00 81 40 60 11 12 00 20 00 28 42 10 20 00 60 72 00 00 02 66 60 56 04 24 12 04 2c [ 213.168870] 00000680: 65 90 80 6c c8 07 03 04 20 00 02 02 a8 e2 80 20 60 1b 00 14 00 0a 02 00 08 01 a1 00 00 01 14 84 ^C[ 213.179547] 000006a0: 00 a1 08 d1 21 02 22 00 00 80 54 00 00 12 08 00 02 08 00 08 84 a0 00 22 13 20 68 c4 0b 21 00 84 [ 213.190398] 000006c0: 10 60 40 20 11 d0 86 20 24 44 a9 62 57 20 c0 6c 5a 0a 02 03 20 81 40 00 24 12 04 00 01 00 28 6c [ 213.201074] 000006e0: 15 07 0c 29 1c 80 12 20 08 00 83 00 68 9a 0c 00 00 00 c0 04 26 80 08 50 00 08 18 40 05 10 64 b9 [ 213.211750] 00000700: 00 05 20 00 01 c0 c4 00 18 10 31 00 00 44 80 01 80 04 00 14 00 92 20 00 34 70 f6 00 04 02 00 44 [ 213.222426] 00000720: 10 80 80 01 c4 02 00 02 30 00 02 80 44 10 a0 40 07 00 10 68 69 01 40 00 02 23 7c b7 05 20 00 10 [ 213.233103] 00000740: 40 01 60 20 20 65 ce 0c 7b 98 81 98 22 70 b3 68 d2 08 80 01 04 00 40 70 41 90 c2 00 88 7e 6c 2d [ 213.243779] 00000760: 00 6e 9d 10 10 7c 40 00 04 20 10 00 10 00 48 80 80 00 0c 00 00 25 10 00 00 30 00 23 60 84 00 88 [ 213.254456] 00000780: 03 70 cf 0c 01 00 a0 00 48 88 01 30 00 58 f2 40 ce 5a 9c 78 18 74 23 00 1a 30 42 18 00 21 00 82 [ 213.265132] 000007a0: 04 00 20 14 08 80 04 13 34 00 90 22 84 0a 82 00 10 06 00 64 00 42 00 20 20 10 21 90 21 09 24 00 [ 213.275808] 000007c0: 82 2c 00 42 2c 7c 1f 00 14 60 00 01 81 20 00 01 14 00 40 10 04 40 10 08 81 21 20 4c 12 00 08 08 [ 213.286490] 000007e0: 02 40 58 00 20 40 30 05 40 04 04 00 03 44 00 7c b0 04 e0 00 10 00 03 00 78 60 0d 6b 6c 00 00 50 [ 213.297162] 00000800: 73 1c 00 84 80 68 2d 03 84 80 00 20 04 20 64 01 88 77 0f 00 00 0c 00 20 20 2c 08 90 94 81 00 10 [ 213.307837] 00000820: 05 00 00 60 44 68 91 06 44 00 40 61 48 80 c2 05 21 6f 08 08 00 24 7b 82 01 21 40 7a 16 08 41 8c [ 213.318514] 00000840: 92 07 20 84 80 80 24 2c 01 08 88 05 6d 09 88 65 26 10 70 05 0e 05 04 06 c0 00 00 20 01 14 24 00 [ 213.329190] 00000860: 90 08 00 c0 01 90 22 96 20 0a 01 22 c9 21 10 78 a2 0d 00 48 81 20 00 00 84 44 02 94 00 11 05 08 [ 213.339866] 00000880: 08 10 7a 28 62 88 22 e4 23 01 12 80 20 08 78 e5 06 8d 80 10 82 02 80 14 60 08 a8 3c 07 01 00 10 [ 213.350543] 000008a0: 43 00 08 04 02 02 81 79 0b 00 61 2a 10 7c 2d 22 92 24 c0 00 64 12 6c 1c 05 24 02 d0 00 00 02 80 [ 213.361220] 000008c0: 00 7f 26 20 04 00 60 03 08 00 00 44 08 08 80 82 d8 28 10 04 80 75 6c c2 83 01 82 00 06 7c 21 09 [ 213.371896] 000008e0: 30 00 10 a4 28 00 00 06 80 00 88 44 90 49 00 05 01 20 41 00 00 41 00 34 09 00 44 40 04 90 40 60 [ 213.382573] 00000900: 40 00 40 48 06 04 20 68 0c 60 cf 60 19 00 05 10 00 00 24 04 00 40 00 01 80 10 00 85 10 04 03 00 [ 213.393248] 00000920: 10 40 02 c0 00 02 22 48 25 70 56 00 03 00 00 00 83 81 00 04 03 02 00 04 08 20 20 84 20 0c 01 00 [ 213.403925] 00000940: 04 10 6c dd 03 60 01 11 a0 00 00 78 ce 0a 42 00 24 00 40 04 01 01 40 82 00 80 48 6d c6 c4 98 1a [ 213.414601] 00000960: 64 7b 80 01 24 79 27 80 60 c0 00 5b 00 80 10 00 90 38 00 58 28 00 00 15 80 10 08 88 18 f0 01 00 [ 213.425278] 00000980: 10 a0 10 48 28 00 00 08 10 40 08 0e 01 1a 10 21 00 88 48 12 83 12 08 00 b0 00 03 00 00 00 30 08 [ 213.435954] 000009a0: 0e 30 82 14 40 0c a0 a1 02 00 08 18 05 81 00 00 04 01 23 88 20 02 01 08 00 00 90 81 12 84 00 c0 [ 213.446631] 000009c0: 00 04 00 0e 8a c0 80 c0 22 08 b2 00 04 40 48 88 20 01 00 00 82 14 06 42 02 23 40 21 0e 08 80 00 [ 213.457307] 000009e0: 08 62 3a 48 01 00 00 08 40 00 23 40 2b 81 22 98 26 00 09 20 04 40 98 00 02 00 06 00 08 84 2a 08 [ 213.467984] 00000a00: 84 60 80 08 08 02 01 00 81 0a 02 24 00 88 70 06 00 07 60 20 80 20 40 80 0a 41 10 88 9a 00 41 46 [ 213.478660] 00000a20: 80 00 22 81 80 24 6c 29 06 fb 5a 98 19 00 40 00 80 02 0c 80 04 01 48 20 41 21 22 80 08 00 00 08 [ 213.489336] 00000a40: 00 01 01 02 40 70 10 45 ce 00 40 00 80 40 80 10 01 00 84 00 00 96 80 08 2e 0c 91 42 80 01 80 80 [ 213.500012] 00000a60: 44 94 00 40 08 40 c6 09 20 09 44 84 00 10 81 45 94 20 54 c0 a0 20 09 40 84 30 84 02 00 44 00 44 [ 213.510692] 00000a80: c2 9c c4 01 88 08 c0 00 74 c2 00 06 20 01 08 00 05 08 4b 44 50 3a 40 00 40 c4 30 02 a1 00 10 00 [ 213.521366] 00000aa0: 90 28 00 02 22 20 28 00 83 02 74 86 88 01 10 80 10 62 60 0d e0 80 00 09 40 80 08 91 40 80 21 21 [ 213.532042] 00000ac0: 20 04 0c 42 42 00 00 84 89 02 03 60 80 09 08 00 82 80 00 00 02 40 00 10 00 e0 12 02 40 08 a4 c0 [ 213.542724] 00000ae0: 00 88 00 04 22 20 05 02 02 04 10 10 04 10 30 85 40 02 60 81 80 20 80 00 80 00 a2 00 00 36 52 00 [ 213.553395] 00000b00: 00 10 00 b0 82 40 04 18 09 10 04 40 00 06 68 80 08 80 00 44 30 08 20 00 02 42 08 00 05 40 02 40 [ 213.564071] 00000b20: 00 02 20 41 84 82 80 18 00 10 0a 00 20 13 08 00 00 60 20 08 00 00 40 24 04 4a 01 00 50 00 60 4c [ 213.574748] 00000b40: 00 1c 12 08 82 04 22 48 20 40 49 00 08 08 12 a0 01 00 81 59 94 07 00 c6 00 08 a3 90 50 00 79 40 [ 213.585424] 00000b60: 11 00 c2 00 00 00 01 80 01 40 08 00 84 80 02 41 6c f4 02 00 c2 01 08 12 68 42 02 18 00 11 08 88 [ 213.596101] 00000b80: 68 52 00 05 19 06 42 21 04 80 02 00 21 10 14 01 00 10 04 a3 20 bd 54 e1 93 4e 83 ac 2e 00 05 72 [ 213.606777] 00000ba0: 0a 81 22 8a 06 03 08 00 e8 00 04 00 02 82 02 03 0a 06 90 00 20 07 70 f5 00 0c c0 04 60 08 40 44 [ 213.617453] 00000bc0: 82 00 84 82 84 00 02 05 0a 00 41 04 00 00 04 88 20 82 40 00 50 00 a9 06 22 e0 2c 00 18 00 08 00 [ 213.628130] 00000be0: 11 14 86 08 40 00 88 80 00 00 44 04 08 80 22 00 40 28 04 88 81 08 00 03 11 00 24 02 04 28 00 00 [ 213.638806] 00000c00: 01 80 00 c0 00 1a 08 64 5e 0a 10 c6 52 10 42 0a 00 00 09 01 01 20 05 60 cd 00 10 08 02 00 45 20 [ 213.649482] 00000c20: 40 00 26 84 12 02 80 05 20 40 22 14 00 00 05 90 10 82 c1 20 20 20 00 02 c0 40 8a 84 18 22 20 35 [ 213.660159] 00000c40: 0c 06 10 02 88 04 01 c2 08 44 80 71 80 e1 02 12 22 28 29 22 94 28 68 6c 03 08 02 00 0a 09 90 78 [ 213.670835] 00000c60: 82 00 01 80 48 00 00 10 06 21 c0 2a 80 82 10 02 80 02 00 02 80 80 22 50 31 05 20 88 82 21 40 26 [ 213.681512] 00000c80: a0 09 6d 79 b4 64 4a 00 16 08 00 80 00 0a 30 24 08 10 00 28 90 80 91 00 00 90 20 02 80 00 90 80 [ 213.692188] 00000ca0: 00 20 00 08 82 0a 14 00 98 48 08 00 28 00 10 a0 02 70 5a 09 00 0a 02 a2 03 80 00 1a 01 10 9c 14 [ 213.702864] 00000cc0: 70 25 03 02 0a 09 30 80 e0 7c 2d 74 01 03 08 1c c0 40 00 09 64 01 22 f5 33 22 83 5c 00 08 10 22 [ 213.713541] 00000ce0: 3f 25 40 03 01 7c 88 06 02 00 21 00 09 00 18 80 11 22 d4 32 03 ee 44 a6 b5 f6 b5 b8 05 01 01 80 [ 213.724217] 00000d00: 02 01 22 84 2c 0b 08 b0 00 00 00 04 00 80 60 02 02 00 08 6a 8c d6 01 28 00 80 48 60 b8 0c 00 88 [ 213.734894] 00000d20: 04 2c 02 88 00 10 23 02 08 40 22 00 29 22 e5 2e 0b 79 08 02 60 33 07 40 83 00 80 4c 04 60 08 11 [ 213.745570] 00000d40: 98 b0 ae 98 5b 05 08 90 00 20 30 02 30 88 6c 1a 0c 00 02 80 20 18 00 24 90 00 00 21 28 00 03 00 [ 213.756246] 00000d60: 7c 41 06 00 20 20 50 00 00 04 13 20 66 ab 40 08 6c 9f 00 01 02 12 00 82 20 06 80 48 00 a8 0a 00 [ 213.766923] 00000d80: 00 08 04 b2 00 40 11 7b 85 48 42 10 78 be 09 a2 10 00 00 a0 00 08 08 00 29 20 8a 22 ea 2d 02 40 [ 213.777599] 00000da0: 78 bf 22 14 2e 00 01 02 0c 0a 20 02 00 0a 0a 08 00 01 00 30 01 08 21 02 92 2a 6c f8 22 2c 30 a1 [ 213.788276] 00000dc0: 33 80 60 45 0b 02 00 04 19 00 00 80 4c 20 00 80 24 01 6a 70 af 22 e4 38 64 a4 00 06 20 02 01 20 [ 213.798957] 00000de0: 07 00 04 20 30 10 06 25 00 80 b2 00 0c 40 20 04 00 08 28 00 80 99 80 c3 02 18 00 18 00 20 81 02 [ 213.809629] 00000e00: 00 74 c9 02 02 00 00 22 20 74 37 01 00 22 00 80 88 bb 04 40 02 40 22 22 08 80 22 4c 37 0c 00 84 [ 213.820304] 00000e20: 00 1c 00 08 14 20 00 10 c1 60 00 02 00 22 c0 2f 7c da 07 22 20 80 02 56 e6 6c 29 ae ee ac 2e 00 [ 213.830981] 00000e40: 05 08 42 00 00 02 8a 10 01 80 10 8a 20 10 00 68 0a 00 20 bc 20 00 00 01 94 c8 02 02 00 06 82 20 [ 213.841658] 00000e60: 7c e8 68 18 03 20 30 08 40 08 08 64 5d 0d 08 0e 10 00 02 a0 02 20 20 02 40 a0 00 00 10 30 64 9d [ 213.852339] 00000e80: 0e a1 08 01 a0 84 80 40 28 02 02 00 40 40 00 8c 20 a1 11 00 00 [ 213.860162] UBIFS error (ubi0:0 pid 2489): do_readpage: cannot read page 171 of inode 67, error -22
Thanks for all your help with this !
/Otto

Am Samstag, 19. Mai 2018, 01:56:33 CEST schrieb Otto Blom:
UBIFS error (ubi0:0 pid 0): crypto_comp_decompress: cannot decompress 2801 bytes, compressor lzo, error -6
LZO_E_LOOKBEHIND_OVERRUN...
UBIFS error (ubi0:0 pid 0): ubifs_decompress: cannot decompress 2801 bytes, compressor lzo, error -6 ubifs_decompress RC: -6 len: 4096 out_len: 3377 UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 3, inode 68) magic 0x6101831 crc 0xf15144c6 node_type 1 (data node) group_type 0 (no node group) sqnum 3276 len 2849 key (68, data, 3) size 4096 compr_typ 1 data size 2801 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 3 of inode 68, error -22 Error reading file '/boot/Image'
So, LZO *does* return an error. Did you edit the logs in your last mails? Or was some U-Boot silencing option enabled?
Please double-check whether your setup is correct. Does it work if you disable compression?
Your UBIFS image looks good. I checked the data node by hand and was able to read that file on 4.9.100 and linus as of today.
Thanks, //richard

Hi Richard !
To summarize the observations from the last few days.
* Linux 4.9 & U-boot 2018 behave the same when attempting to read from a ubifs file system * Whenever Linux 4.14 writes to a ubifs there is some form of incompatibility introduced causing assorted errors when the file system is read in Linux 4.9 or U-boot. However the files can still be read in Linux 4.14.
This lead me to suspect a problem with the OOB data. So I copied over a 16MB textfile to a freshly minted no-compression ubifs partition (running 4.14) and ran a nanddump both from Linux 4.9 and 4.14 and the contents are different - Bit errors are present in the 4.9-dump..
See https://www.dropbox.com/s/sbi64wfqi62noxi/bit_error.png?dl=0
So I tried to write a 94Mb file directly to the NAND using flash_eraseall /dev/mtd2 nandwrite -p /dev/mtd2 Bronte2_fw_20180509-r.bin nanddump -f mtd2.dump /dev/mtd2 -l 94103952
And to my big surprise the file written in 4.14 reads back identically in 4.9 and vice versa.
Any idea on what could be causing something like this ? Does ubifs use a different writing method compared to nandwrite ? Its almost like the two have different ECC / OOB processing
Thanks for your time !
/Otto
On Sat, May 19, 2018 at 1:37 AM, Richard Weinberger richard@nod.at wrote:
Am Samstag, 19. Mai 2018, 01:56:33 CEST schrieb Otto Blom:
UBIFS error (ubi0:0 pid 0): crypto_comp_decompress: cannot decompress 2801 bytes, compressor lzo, error -6
LZO_E_LOOKBEHIND_OVERRUN...
UBIFS error (ubi0:0 pid 0): ubifs_decompress: cannot decompress 2801 bytes, compressor lzo, error -6 ubifs_decompress RC: -6 len: 4096 out_len: 3377 UBIFS error (ubi0:0 pid 0): read_block: bad data node (block 3, inode 68) magic 0x6101831 crc 0xf15144c6 node_type 1 (data node) group_type 0 (no node group) sqnum 3276 len 2849 key (68, data, 3) size 4096 compr_typ 1 data size 2801 data: UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 3 of inode 68, error -22 Error reading file '/boot/Image'
So, LZO *does* return an error. Did you edit the logs in your last mails? Or was some U-Boot silencing option enabled?
I did not edit the logs. Under the previous scenario ubifs_decompress returned zero, but there was a length mismatch (len != len_out). The difference between the two scenarios is that now I'm using a freshly formatted partition that was initialized while running Linux 4.14. Previously I was testing with the a rootfs being written using the -f option of ubiformat, followed by updating a single file (/boot/Image). Purpose of the later test was to eliminate the ubi-file being part of the problem.
Does it work if you disable compression?
I tried disabling compression and also switched to using a large (16Mb) text file so it would be easier to see any corruption. Still fails unfortunately.. See below for the full log. The thing that I find the most strange is that the file can still be read correctly in Linux 4.14..
Not sure if the nanddump of the ubifs partition is of any value, but I zipped it up and put it on dropbox just in case
https://www.dropbox.com/s/sd8ctph9ie7u20m/rootfs.zip?dl=0
root@bronte2:~# flash_eraseall /dev/mtd2 flash_eraseall has been replaced by `flash_erase <mtddev> 0 0`; please use it Erasing 128 Kibyte @ 7f60000 -- 99 % complete flash_erase: Skipping bad block at 07f80000 flash_erase: Skipping bad block at 07fa0000 flash_erase: Skipping bad block at 07fc0000 flash_erase: Skipping bad block at 07fe0000 Erasing 128 Kibyte @ 7fe0000 -- 100 % complete
ubiattach /dev/ubi_ctrl -p /dev/mtd2 -d 2 ubimkvol /dev/ubi2 -N rootfs -m mkdir -p /mnt/ubifs3 mount -t ubifs -o compr=none /dev/ubi2_0 /mnt/ubifs3 cp /tmp/iliad_big.txt /mnt/ubifs3/iliad_16M.txt umount /mnt/ubifs3/ ubidetach -p /dev/mtd2 nanddump -f rootfs.ubi /dev/mtd2 # <---- File on dropbox
[Booting into u-boot 2018.1]
ZynqMP> ubi part misc Bad block table found at page 262080, version 0x01 Bad block table found at page 262016, version 0x01 ubi0: attaching mtd2 ubi0: scanning is finished ubi0 warning: ubi_calculate_reserved: number of bad PEBs (4) is above the expected limit (0), not reserving any PEBs for bad PEB handling, will use available PEBs (if any) ubi0: attached mtd2 (name "mtd=2", size 128 MiB) ubi0: PEB size: 131072 bytes (128 KiB), LEB size: 126976 bytes ubi0: min./max. I/O unit sizes: 2048/2048, sub-page size 2048 ubi0: VID header offset: 2048 (aligned 2048), data offset: 4096 ubi0: good PEBs: 1020, bad PEBs: 4, corrupted PEBs: 0 ubi0: user volume: 1, internal volumes: 1, max. volumes count: 128 ubi0: max/mean erase counter: 2/1, WL threshold: 4096, image sequence number: 468243014 ubi0: available PEBs: 76, total reserved PEBs: 944, PEBs reserved for bad PEB handling: 0
ZynqMP> ubifsmount ubi0:rootfs UBIFS DBG io: LEB 0:0, superblock node, length 4096 UBIFS DBG scan: scan LEB 1:0 UBIFS DBG scan: look at LEB 1:0 (126976 bytes left) UBIFS DBG scan: scanning master node at LEB 1:0 UBIFS DBG scan: look at LEB 1:512 (126464 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:512 UBIFS DBG scan: 1508 bytes padded at LEB 1:512, offset now 2048 UBIFS DBG scan: look at LEB 1:2048 (124928 bytes left) UBIFS DBG scan: scanning master node at LEB 1:2048 UBIFS DBG scan: look at LEB 1:2560 (124416 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:2560 UBIFS DBG scan: 1508 bytes padded at LEB 1:2560, offset now 4096 UBIFS DBG scan: look at LEB 1:4096 (122880 bytes left) UBIFS DBG scan: scanning master node at LEB 1:4096 UBIFS DBG scan: look at LEB 1:4608 (122368 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:4608 UBIFS DBG scan: 1508 bytes padded at LEB 1:4608, offset now 6144 UBIFS DBG scan: look at LEB 1:6144 (120832 bytes left) UBIFS DBG scan: scanning master node at LEB 1:6144 UBIFS DBG scan: look at LEB 1:6656 (120320 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:6656 UBIFS DBG scan: 1508 bytes padded at LEB 1:6656, offset now 8192 UBIFS DBG scan: look at LEB 1:8192 (118784 bytes left) UBIFS DBG scan: scanning master node at LEB 1:8192 UBIFS DBG scan: look at LEB 1:8704 (118272 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:8704 UBIFS DBG scan: 1508 bytes padded at LEB 1:8704, offset now 10240 UBIFS DBG scan: look at LEB 1:10240 (116736 bytes left) UBIFS DBG scan: scanning master node at LEB 1:10240 UBIFS DBG scan: look at LEB 1:10752 (116224 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:10752 UBIFS DBG scan: 1508 bytes padded at LEB 1:10752, offset now 12288 UBIFS DBG scan: look at LEB 1:12288 (114688 bytes left) UBIFS DBG scan: scanning master node at LEB 1:12288 UBIFS DBG scan: look at LEB 1:12800 (114176 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:12800 UBIFS DBG scan: 1508 bytes padded at LEB 1:12800, offset now 14336 UBIFS DBG scan: look at LEB 1:14336 (112640 bytes left) UBIFS DBG scan: scanning master node at LEB 1:14336 UBIFS DBG scan: look at LEB 1:14848 (112128 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:14848 UBIFS DBG scan: 1508 bytes padded at LEB 1:14848, offset now 16384 UBIFS DBG scan: look at LEB 1:16384 (110592 bytes left) UBIFS DBG scan: scanning master node at LEB 1:16384 UBIFS DBG scan: look at LEB 1:16896 (110080 bytes left) UBIFS DBG scan: scanning padding node at LEB 1:16896 UBIFS DBG scan: 1508 bytes padded at LEB 1:16896, offset now 18432 UBIFS DBG scan: look at LEB 1:18432 (108544 bytes left) UBIFS DBG scan: hit empty space at LEB 1:18432 UBIFS DBG scan: stop scanning LEB 1 at offset 18432 UBIFS DBG scan: scan LEB 2:0 UBIFS DBG scan: look at LEB 2:0 (126976 bytes left) UBIFS DBG scan: scanning master node at LEB 2:0 UBIFS DBG scan: look at LEB 2:512 (126464 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:512 UBIFS DBG scan: 1508 bytes padded at LEB 2:512, offset now 2048 UBIFS DBG scan: look at LEB 2:2048 (124928 bytes left) UBIFS DBG scan: scanning master node at LEB 2:2048 UBIFS DBG scan: look at LEB 2:2560 (124416 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:2560 UBIFS DBG scan: 1508 bytes padded at LEB 2:2560, offset now 4096 UBIFS DBG scan: look at LEB 2:4096 (122880 bytes left) UBIFS DBG scan: scanning master node at LEB 2:4096 UBIFS DBG scan: look at LEB 2:4608 (122368 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:4608 UBIFS DBG scan: 1508 bytes padded at LEB 2:4608, offset now 6144 UBIFS DBG scan: look at LEB 2:6144 (120832 bytes left) UBIFS DBG scan: scanning master node at LEB 2:6144 UBIFS DBG scan: look at LEB 2:6656 (120320 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:6656 UBIFS DBG scan: 1508 bytes padded at LEB 2:6656, offset now 8192 UBIFS DBG scan: look at LEB 2:8192 (118784 bytes left) UBIFS DBG scan: scanning master node at LEB 2:8192 UBIFS DBG scan: look at LEB 2:8704 (118272 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:8704 UBIFS DBG scan: 1508 bytes padded at LEB 2:8704, offset now 10240 UBIFS DBG scan: look at LEB 2:10240 (116736 bytes left) UBIFS DBG scan: scanning master node at LEB 2:10240 UBIFS DBG scan: look at LEB 2:10752 (116224 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:10752 UBIFS DBG scan: 1508 bytes padded at LEB 2:10752, offset now 12288 UBIFS DBG scan: look at LEB 2:12288 (114688 bytes left) UBIFS DBG scan: scanning master node at LEB 2:12288 UBIFS DBG scan: look at LEB 2:12800 (114176 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:12800 UBIFS DBG scan: 1508 bytes padded at LEB 2:12800, offset now 14336 UBIFS DBG scan: look at LEB 2:14336 (112640 bytes left) UBIFS DBG scan: scanning master node at LEB 2:14336 UBIFS DBG scan: look at LEB 2:14848 (112128 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:14848 UBIFS DBG scan: 1508 bytes padded at LEB 2:14848, offset now 16384 UBIFS DBG scan: look at LEB 2:16384 (110592 bytes left) UBIFS DBG scan: scanning master node at LEB 2:16384 UBIFS DBG scan: look at LEB 2:16896 (110080 bytes left) UBIFS DBG scan: scanning padding node at LEB 2:16896 UBIFS DBG scan: 1508 bytes padded at LEB 2:16896, offset now 18432 UBIFS DBG scan: look at LEB 2:18432 (108544 bytes left) UBIFS DBG scan: hit empty space at LEB 2:18432 UBIFS DBG scan: stop scanning LEB 2 at offset 18432 UBIFS DBG lp: space_bits 14 UBIFS DBG lp: lpt_lnum_bits 2 UBIFS DBG lp: lpt_offs_bits 17 UBIFS DBG lp: lpt_spc_bits 17 UBIFS DBG lp: pcnt_bits 8 UBIFS DBG lp: lnum_bits 10 UBIFS DBG lp: pnode_sz 17 UBIFS DBG lp: nnode_sz 12 UBIFS DBG lp: ltab_sz 11 UBIFS DBG lp: lsave_sz 323 UBIFS DBG lp: lsave_cnt 256 UBIFS DBG lp: lpt_hght 4 UBIFS DBG lp: big_lpt 0 UBIFS DBG lp: LPT root is at 7:16518 UBIFS DBG lp: LPT head is at 7:18432 UBIFS DBG lp: LPT ltab is at 7:16384 UBIFS DBG lp: LEB 7 add 12 to 13512 UBIFS DBG lp: LEB 7 add 11 to 13524 UBIFS DBG lp: LEB 7 add 12 to 13535 UBIFS DBG lp: LEB 7 add 12 to 13547 UBIFS DBG lp: LEB 7 add 12 to 13559 UBIFS DBG lp: LEB 7 add 17 to 13571 UBIFS DBG lp: LEB 159, free 124928, dirty 1000, flags 34 UBIFS DBG lp: LEB 159, free -2147483647, dirty -2147483647, flags 50 UBIFS DBG lp: LEB 159, free 124928, dirty 1000, flags 34 UBIFS DBG mnt: start replaying the journal UBIFS DBG mnt: replay log LEB 5:0 UBIFS DBG scan: scan LEB 5:0 UBIFS DBG scan: look at LEB 5:0 (126976 bytes left) UBIFS DBG scan: scanning commit start node at LEB 5:0 UBIFS DBG scan: look at LEB 5:32 (126944 bytes left) UBIFS DBG scan: scanning reference node at LEB 5:32 UBIFS DBG scan: look at LEB 5:96 (126880 bytes left) UBIFS DBG scan: scanning reference node at LEB 5:96 UBIFS DBG scan: look at LEB 5:160 (126816 bytes left) UBIFS DBG scan: scanning padding node at LEB 5:160 UBIFS DBG scan: 1860 bytes padded at LEB 5:160, offset now 2048 UBIFS DBG scan: look at LEB 5:2048 (124928 bytes left) UBIFS DBG scan: hit empty space at LEB 5:2048 UBIFS DBG scan: stop scanning LEB 5 at offset 2048 UBIFS DBG mnt: commit start sqnum 5167 UBIFS DBG mnt: add replay bud LEB 12:4096, head 1 UBIFS DBG log: LEB 12:4096, jhead 1 (base), bud_bytes 122880 UBIFS DBG mnt: add replay bud LEB 156:90112, head 2 UBIFS DBG log: LEB 156:90112, jhead 2 (data), bud_bytes 159744 UBIFS DBG mnt: replay log LEB 6:0 UBIFS DBG scan: scan LEB 6:0 UBIFS DBG scan: look at LEB 6:0 (126976 bytes left) UBIFS DBG scan: hit empty space at LEB 6:0 UBIFS DBG scan: stop scanning LEB 6 at offset 0 UBIFS DBG mnt: replay bud LEB 12, head 1, offs 4096, is_last 1 UBIFS DBG scan: scan LEB 12:4096 UBIFS DBG scan: look at LEB 12:4096 (122880 bytes left) UBIFS DBG scan: hit empty space at LEB 12:4096 UBIFS DBG scan: stop scanning LEB 12 at offset 4096 UBIFS DBG mnt: bud LEB 12 replied: dirty 0, free 122880 UBIFS DBG mnt: replay bud LEB 156, head 2, offs 90112, is_last 1 UBIFS DBG scan: scan LEB 156:90112 UBIFS DBG scan: look at LEB 156:90112 (36864 bytes left) UBIFS DBG scan: hit empty space at LEB 156:90112 UBIFS DBG scan: stop scanning LEB 156 at offset 90112 UBIFS DBG mnt: bud LEB 156 replied: dirty 0, free 36864 UBIFS DBG lp: LEB 7 add 12 to 13588 UBIFS DBG lp: LEB 7 add 12 to 13600 UBIFS DBG lp: LEB 7 add 17 to 13612 UBIFS DBG lp: LEB 12, free 122880, dirty 3704, flags 3 UBIFS DBG lp: LEB 12, free 122880, dirty 3704, flags 19 UBIFS DBG lp: LEB 12, free 122880, dirty 3704, flags 3 UBIFS DBG io: LEB 12:4096, jhead 1 (base) UBIFS DBG lp: LEB 7 add 17 to 13629 UBIFS DBG lp: LEB 156, free 36864, dirty 1216, flags 3 UBIFS DBG lp: LEB 156, free 36864, dirty 1216, flags 19 UBIFS DBG lp: LEB 156, free 36864, dirty 1216, flags 3 UBIFS DBG io: LEB 156:90112, jhead 2 (data) UBIFS DBG mnt: finished, log head LEB 5:2048, max_sqnum 5172, highest_inum 65 UBIFS DBG lp: LEB 13, free 126976, dirty 0, flags 4 UBIFS DBG lp: LEB 13, free 126976, dirty 0, flags 20 UBIFS DBG lp: LEB 13, free 126976, dirty 0, flags 4 UBIFS (ubi0:0): UBIFS: mounted UBI device 0, volume 0, name "rootfs", R/O mode UBIFS (ubi0:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes UBIFS (ubi0:0): FS size: 117960704 bytes (112 MiB, 929 LEBs), journal size 5967872 bytes (5 MiB, 47 LEBs) UBIFS (ubi0:0): reserved for root: 4952683 bytes (4836 KiB) UBIFS (ubi0:0): media format: w5/r0 (latest is w4/r0), UUID e1efcee9-698e-403a-9510-46b5cc634f84, small LPT model UBIFS DBG tnc: search key (1, inode) UBIFS DBG io: LEB 159:976, indexing node, length 68 UBIFS DBG tnc: LEB 159:976, level 4, 2 branch UBIFS DBG io: LEB 11:119040, indexing node, length 188 UBIFS DBG tnc: LEB 11:119040, level 3, 8 branch UBIFS DBG io: LEB 11:15872, indexing node, length 188 UBIFS DBG tnc: LEB 11:15872, level 2, 8 branch UBIFS DBG io: LEB 11:3584, indexing node, length 188 UBIFS DBG tnc: LEB 11:3584, level 1, 8 branch UBIFS DBG io: LEB 11:2048, indexing node, length 188 UBIFS DBG tnc: LEB 11:2048, level 0, 8 branch UBIFS DBG tnc: found 1, lvl 0, n 0 UBIFS DBG io: LEB 12:2280, inode node, length 160, jhead 1 (base) UBIFS DBG io: LEB 12:2280, inode node, length 160
ZynqMP> ubifsload 0x10000000 iliad_16M.txt <snip> UBIFS DBG io: LEB 101:62160, data node, length 4144 UBIFS DBG tnc: search key (65, data, 2626) UBIFS DBG tnc: found 1, lvl 0, n 5 UBIFS DBG tnc: LEB 101:66304, key (65, data, 2626) UBIFS DBG io: LEB 101:66304, data node, length 4144 UBIFS DBG tnc: search key (65, data, 2627) UBIFS DBG tnc: found 1, lvl 0, n 6 UBIFS DBG tnc: LEB 101:70448, key (65, data, 2627) UBIFS DBG io: LEB 101:70448, data node, length 4144 UBIFS DBG tnc: search key (65, data, 2628) UBIFS DBG tnc: found 1, lvl 0, n 7 UBIFS DBG tnc: LEB 101:74592, key (65, data, 2628) UBIFS DBG io: LEB 101:74592, data node, length 4144 UBIFS DBG tnc: search key (65, data, 2629) UBIFS DBG io: LEB 11:76800, indexing node, length 188 UBIFS error (ubi0:0 pid 0): ubifs_check_node: bad CRC: calculated 0x9ded2d86, read 0x6f74842d UBIFS error (ubi0:0 pid 0): ubifs_check_node: bad node at LEB 11:76800 magic 0x6101831 crc 0x6f74842d node_type 9 (indexing node) group_type 0 (no node group) sqnum 1052213 len 188 child_cnt 8 level 0 Branches: 0: LEB 101:78736 len 4144 key (65, data, 2629) 1: LEB 101:82880 len 4144 key (65, data, 2630) 2: LEB 101:87024 len 4144 key (65, data, 2631) 3: LEB 101:91168 len 536875056 key (65, data, 2632) 4: LEB 2149:95312 len 4144 key (65, data, 2633) 5: LEB 101:99456 len 4144 key (65, data, 2634) 6: LEB 101:103600 len 4144 key (65, data, 2635) UBIFS error (ubi0:0 pid 0): ubifs_read_node: expected node type 9 UBIFS error (ubi0:0 pid 0): do_readpage: cannot read page 2629 of inode 65, error -117 Error reading file 'iliad_16M.txt' ** File not found iliad_16M.txt **
[Booted Back in Linux 4.14 and verified file can be read and matches original file]
[Booting Linux 4.9 and when attempting to read the file I get the same error as in U-boot]
[ 51.813210] UBIFS error (ubi2:0 pid 2461): ubifs_read_superblock: on-flash format version is w5/r0, but software only supports up to version w4/r0 [ 51.826300] UBIFS (ubi2:0): only R/O mounting is possible [ 51.862365] UBIFS (ubi2:0): recovery needed [ 51.899551] UBIFS (ubi2:0): recovery deferred [ 51.899622] UBIFS (ubi2:0): UBIFS: mounted UBI device 2, volume 0, name "rootfs", R/O mode [ 51.899630] UBIFS (ubi2:0): LEB size: 126976 bytes (124 KiB), min./max. I/O unit sizes: 2048 bytes/2048 bytes [ 51.899639] UBIFS (ubi2:0): FS size: 117960704 bytes (112 MiB, 929 LEBs), journal size 5967872 bytes (5 MiB, 47 LEBs) [ 51.899645] UBIFS (ubi2:0): reserved for root: 4952683 bytes (4836 KiB) [ 51.899654] UBIFS (ubi2:0): media format: w5/r0 (latest is w4/r0), UUID E1EFCEE9-698E-403A-9510-46B5CC634F84, small LPT model [ 97.130054] UBIFS error (ubi2:0 pid 2487): ubifs_check_node: bad CRC: calculated 0x9ded2d86, read 0x6f74842d [ 97.139857] UBIFS error (ubi2:0 pid 2487): ubifs_check_node: bad node at LEB 11:76800 [ 97.147637] magic 0x6101831 [ 97.151280] crc 0x6f74842d [ 97.155017] node_type 9 (indexing node) [ 97.159347] group_type 0 (no node group) [ 97.163689] sqnum 1052213 [ 97.167157] len 188 [ 97.170286] child_cnt 8 [ 97.173233] level 0 [ 97.176184] Branches: [ 97.178536] 0: LEB 101:78736 len 4144 key (65, data, 2629) [ 97.184091] 1: LEB 101:82880 len 4144 key (65, data, 2630) [ 97.189645] 2: LEB 101:87024 len 4144 key (65, data, 2631) [ 97.195207] 3: LEB 101:91168 len 536875056 key (65, data, 2632) [ 97.201190] 4: LEB 2149:95312 len 4144 key (65, data, 2633) [ 97.206833] 5: LEB 101:99456 len 4144 key (65, data, 2634) [ 97.212386] 6: LEB 101:103600 len 4144 key (65, data, 2635) [ 97.218033] CPU: 0 PID: 2487 Comm: diff Tainted: G O 4.9.0-xilinx-v2017.3 #1 [ 97.218037] Hardware name: xlnx,zynqmp (DT) [ 97.218040] Call trace: [ 97.218054] [<ffffff8008088138>] dump_backtrace+0x0/0x1d0 [ 97.218063] [<ffffff800808831c>] show_stack+0x14/0x20 [ 97.218072] [<ffffff8008462614>] dump_stack+0x94/0xb8 [ 97.218079] [<ffffff800832dd28>] ubifs_check_node+0x160/0x228 [ 97.218085] [<ffffff800832f5bc>] ubifs_read_node+0x284/0x2d8 [ 97.218093] [<ffffff800834e308>] ubifs_load_znode+0x88/0x458 [ 97.218100] [<ffffff8008332da0>] ubifs_lookup_level0+0xd0/0x330 [ 97.218107] [<ffffff8008333054>] ubifs_tnc_locate+0x54/0x1e0 [ 97.218116] [<ffffff8008324cb8>] do_readpage+0x140/0x3f8 [ 97.218124] [<ffffff8008325df0>] ubifs_readpage+0x48/0x458 [ 97.218134] [<ffffff8008139558>] generic_file_read_iter+0x3e0/0x730 [ 97.218144] [<ffffff80081914bc>] __vfs_read+0xac/0xf8 [ 97.218152] [<ffffff80081921ac>] vfs_read+0x84/0x148 [ 97.218160] [<ffffff800819363c>] SyS_read+0x44/0xa0 [ 97.218167] [<ffffff8008082ef0>] el0_svc_naked+0x24/0x28 [ 97.218182] UBIFS error (ubi2:0 pid 2487): ubifs_read_node: expected node type 9 [ 97.225525] UBIFS error (ubi2:0 pid 2487): do_readpage: cannot read page 2629 of inode 65, error -117 [ 97.234858] UBIFS error (ubi2:0 pid 2487): ubifs_check_node: bad CRC: calculated 0x9ded2d86, read 0x6f74842d [ 97.244645] UBIFS error (ubi2:0 pid 2487): ubifs_check_node: bad node at LEB 11:76800 [ 97.252420] magic 0x6101831 [ 97.256072] crc 0x6f74842d [ 97.259797] node_type 9 (indexing node) [ 97.264136] group_type 0 (no node group) [ 97.268475] sqnum 1052213 [ 97.271946] len 188 [ 97.275074] child_cnt 8 [ 97.278029] level 0 [ 97.280974] Branches: [ 97.283313] 0: LEB 101:78736 len 4144 key (65, data, 2629) [ 97.288880] 1: LEB 101:82880 len 4144 key (65, data, 2630) [ 97.294433] 2: LEB 101:87024 len 4144 key (65, data, 2631) [ 97.299995] 3: LEB 101:91168 len 536875056 key (65, data, 2632) [ 97.305977] 4: LEB 2149:95312 len 4144 key (65, data, 2633) [ 97.311618] 5: LEB 101:99456 len 4144 key (65, data, 2634) [ 97.317174] 6: LEB 101:103600 len 4144 key (65, data, 2635) [ 97.322823] CPU: 1 PID: 2487 Comm: diff Tainted: G O 4.9.0-xilinx-v2017.3 #1 [ 97.322826] Hardware name: xlnx,zynqmp (DT) [ 97.322829] Call trace: [ 97.322839] [<ffffff8008088138>] dump_backtrace+0x0/0x1d0 [ 97.322847] [<ffffff800808831c>] show_stack+0x14/0x20 [ 97.322855] [<ffffff8008462614>] dump_stack+0x94/0xb8 [ 97.322862] [<ffffff800832dd28>] ubifs_check_node+0x160/0x228 [ 97.322868] [<ffffff800832f5bc>] ubifs_read_node+0x284/0x2d8 [ 97.322874] [<ffffff800834e308>] ubifs_load_znode+0x88/0x458 [ 97.322881] [<ffffff8008332da0>] ubifs_lookup_level0+0xd0/0x330 [ 97.322888] [<ffffff8008333054>] ubifs_tnc_locate+0x54/0x1e0 [ 97.322897] [<ffffff8008324cb8>] do_readpage+0x140/0x3f8 [ 97.322905] [<ffffff8008325df0>] ubifs_readpage+0x48/0x458 [ 97.322913] [<ffffff8008139558>] generic_file_read_iter+0x3e0/0x730 [ 97.322922] [<ffffff80081914bc>] __vfs_read+0xac/0xf8 [ 97.322930] [<ffffff80081921ac>] vfs_read+0x84/0x148 [ 97.322937] [<ffffff800819363c>] SyS_read+0x44/0xa0 [ 97.322944] [<ffffff8008082ef0>] el0_svc_naked+0x24/0x28 [ 97.322952] UBIFS error (ubi2:0 pid 2487): ubifs_read_node: expected node type 9 [ 97.330280] UBIFS error (ubi2:0 pid 2487): do_readpage: cannot read page 2629 of inode 65, error -117
[Sanity check to make sure compression is off]
root@bronte2:~# hexdump -C /dev/mtd2 <snip> 02201000 31 18 10 06 fb 14 b8 a0 0f 00 00 00 00 00 00 00 |1...............| 02201010 30 10 00 00 01 00 00 00 41 00 00 00 00 00 00 20 |0.......A...... | 02201020 00 00 00 00 00 00 00 00 00 10 00 00 00 00 00 00 |................| 02201030 50 72 6f 76 69 64 65 64 20 62 79 20 54 68 65 20 |Provided by The | 02201040 49 6e 74 65 72 6e 65 74 20 43 6c 61 73 73 69 63 |Internet Classic| 02201050 73 20 41 72 63 68 69 76 65 2e 0a 53 65 65 20 62 |s Archive..See b| 02201060 6f 74 74 6f 6d 20 66 6f 72 20 63 6f 70 79 72 69 |ottom for copyri| 02201070 67 68 74 2e 20 41 76 61 69 6c 61 62 6c 65 20 6f |ght. Available o| 02201080 6e 6c 69 6e 65 20 61 74 0a 20 20 20 20 68 74 74 |nline at. htt| 02201090 70 3a 2f 2f 63 6c 61 73 73 69 63 73 2e 6d 69 74 |p://classics.mit| 022010a0 2e 65 64 75 2f 2f 48 6f 6d 65 72 2f 69 6c 69 61 |.edu//Homer/ilia| 022010b0 64 2e 68 74 6d 6c 0a 0a 54 68 65 20 49 6c 69 61 |d.html..The Ilia| 022010c0 64 0a 42 79 20 48 6f 6d 65 72 0a 0a 0a 54 72 61 |d.By Homer...Tra| 022010d0 6e 73 6c 61 74 65 64 20 62 79 20 53 61 6d 75 65 |nslated by Samue| 022010e0 6c 20 42 75 74 6c 65 72 0a 0a 2d 2d 2d 2d 2d 2d |l Butler..------| 022010f0 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d 2d |----------------|
[Check to see how much we can read from the file]
hexdump -C /mnt/ubifs3/iliad_16M.txt <snip> 00a44fa0 6e 75 72 74 75 72 65 64 20 69 6e 20 61 6c 6c 20 |nurtured in all | 00a44fb0 61 62 75 6e 64 61 6e 63 65 2e 0a 41 67 61 6d 65 |abundance..Agame| 00a44fc0 6d 6e 6f 6e 20 68 61 73 20 74 68 72 65 65 20 64 |mnon has three d| 00a44fd0 61 75 67 68 74 65 72 73 2c 20 43 68 72 79 73 6f |aughters, Chryso| 00a44fe0 74 68 65 6d 69 73 2c 20 4c 61 6f 64 69 63 65 2c |themis, Laodice,| 00a44ff0 20 61 6e 64 20 49 70 68 69 61 6e 61 73 73 61 3b | and Iphianassa;| hexdump: /mnt/ubifs3//iliad_16M.txt: Input/output error
Could this be happening if the OOB format has changed in 4.14 ?

Otto,
Am Dienstag, 22. Mai 2018, 03:30:04 CEST schrieb Otto Blom:
Hi Richard !
To summarize the observations from the last few days.
- Linux 4.9 & U-boot 2018 behave the same when attempting to read from
a ubifs file system
- Whenever Linux 4.14 writes to a ubifs there is some form of
incompatibility introduced causing assorted errors when the file system is read in Linux 4.9 or U-boot. However the files can still be read in Linux 4.14.
This lead me to suspect a problem with the OOB data. So I copied over a 16MB textfile to a freshly minted no-compression ubifs partition (running 4.14) and ran a nanddump both from Linux 4.9 and 4.14 and the contents are different - Bit errors are present in the 4.9-dump..
This smells like a problem on MTD/NAND-Level. Decompression might fail because bits changes but didn't get fixed by your driver.
Thanks, //richard

Hello Otto,
Am 22.05.2018 um 08:24 schrieb Richard Weinberger:
Otto,
Am Dienstag, 22. Mai 2018, 03:30:04 CEST schrieb Otto Blom:
Hi Richard !
To summarize the observations from the last few days.
- Linux 4.9 & U-boot 2018 behave the same when attempting to read from
a ubifs file system
- Whenever Linux 4.14 writes to a ubifs there is some form of
incompatibility introduced causing assorted errors when the file system is read in Linux 4.9 or U-boot. However the files can still be read in Linux 4.14.
This lead me to suspect a problem with the OOB data. So I copied over a 16MB textfile to a freshly minted no-compression ubifs partition (running 4.14) and ran a nanddump both from Linux 4.9 and 4.14 and the contents are different - Bit errors are present in the 4.9-dump..
This smells like a problem on MTD/NAND-Level. Decompression might fail because bits changes but didn't get fixed by your driver.
+1 from my side ...
bye, Heiko

Thanks a lot for your help Richard & Heiko ! I appreciate it
I agree, this does not look u-boot or ubifs related anymore
/Otto
On Tue, May 22, 2018 at 2:31 AM, Heiko Schocher hs@denx.de wrote:
Hello Otto,
Am 22.05.2018 um 08:24 schrieb Richard Weinberger:
Otto,
Am Dienstag, 22. Mai 2018, 03:30:04 CEST schrieb Otto Blom:
Hi Richard !
To summarize the observations from the last few days.
- Linux 4.9 & U-boot 2018 behave the same when attempting to read from
a ubifs file system
- Whenever Linux 4.14 writes to a ubifs there is some form of
incompatibility introduced causing assorted errors when the file system is read in Linux 4.9 or U-boot. However the files can still be read in Linux 4.14.
This lead me to suspect a problem with the OOB data. So I copied over a 16MB textfile to a freshly minted no-compression ubifs partition (running 4.14) and ran a nanddump both from Linux 4.9 and 4.14 and the contents are different - Bit errors are present in the 4.9-dump..
This smells like a problem on MTD/NAND-Level. Decompression might fail because bits changes but didn't get fixed by your driver.
+1 from my side ...
bye, Heiko -- DENX Software Engineering GmbH, Managing Director: Wolfgang Denk HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany Phone: +49-8142-66989-52 Fax: +49-8142-66989-80 Email: hs@denx.de

Otto,
What did this issue end up being for you? I'm seeing a similar issue on my Xilinx-based platform?
Justin D.
-- Sent from: http://u-boot.10912.n7.nabble.com/
participants (4)
-
Heiko Schocher
-
jbd1986
-
Otto Blom
-
Richard Weinberger