mirror of
https://github.com/u-boot/u-boot.git
synced 2025-04-16 09:54:35 +00:00
fs/erofs: Remove an unnecessary assertion
In [1] Sam points out an assertion does not hold true for 32-bit
platforms, which only impacts Large File Support (LFS) API usage
in erofs-utils according to Xiang [2]. We don't think these APIs
are used in u-boot and this restriction could be safely removed.
[1] https://lists.denx.de/pipermail/u-boot/2023-July/524679.html
[2] https://lists.denx.de/pipermail/u-boot/2023-July/524727.html
Fixes: 3a21e92fc2
("fs/erofs: Introduce new features including ztailpacking, fragments and dedupe")
Signed-off-by: Yifan Zhao <zhaoyifan@sjtu.edu.cn>
Tested-by: Sam Edwards <CFSworks@gmail.com>
This commit is contained in:
parent
fa96774d29
commit
7ee1325a53
1 changed files with 0 additions and 3 deletions
|
@ -105,9 +105,6 @@ struct erofs_sb_info {
|
|||
u8 xattr_prefix_count;
|
||||
};
|
||||
|
||||
/* make sure that any user of the erofs headers has at least 64bit off_t type */
|
||||
extern int erofs_assert_largefile[sizeof(off_t) - 8];
|
||||
|
||||
static inline erofs_off_t iloc(erofs_nid_t nid)
|
||||
{
|
||||
return erofs_pos(sbi.meta_blkaddr) + (nid << sbi.islotbits);
|
||||
|
|
Loading…
Add table
Reference in a new issue