]> git.dujemihanovic.xyz Git - u-boot.git/commit
ubifs: mount fails after power cycle
authorRavi Minnikanti <rminnikanti@marvell.com>
Tue, 30 Jul 2024 09:14:57 +0000 (02:14 -0700)
committerHeiko Schocher <hs@denx.de>
Sat, 10 Aug 2024 09:56:53 +0000 (11:56 +0200)
commitcf7ea719ce60cd885cce5023dfaf7833d9fc1442
treeb37d721ed20b4714a1660dfc90346d0a0d5a565d
parentca1f11d8c11dacd91c3bfd8e39d41db349e83f8b
ubifs: mount fails after power cycle

When kernel uses file system encryption, fscrypt on UBIFS v5,
after a hard power cycle UBIFS journal replay fails which results in mount failure.

Failure logs:
UBIFS: recovery needed
UBIFS error (pid 0): ubifs_validate_entry: bad directory entry node
UBIFS error (pid 0): replay_bud: bad node is at LEB 890:24576
UBIFS error (pid 0): ubifs_mount: Error reading superblock on volume 'ubi0:rootfs' errno=-22!

This change is ported from kernel:
commit id: 304790c038bc4af4f19774705409db27eafb09fc

Kernel commit description:
    Kernel commit description:
    ubifs: Relax checks in ubifs_validate_entry()

    With encrypted filenames we store raw binary data, doing
    string tests is no longer possible.

Signed-off-by: rminnikanti <rminnikanti@marvell.com>
Reviewed-by: Heiko Schocher <hs@denx.de>
fs/ubifs/replay.c