Skip to content

Commit 92ebf5f

Browse files
committed
Merge tag 'erofs-for-5.17-rc7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs
Pull erofs fix from Gao Xiang: "A one-line patch to fix the new ztailpacking feature on > 4GiB filesystems because z_idataoff can get trimmed improperly. ztailpacking is still a brand new EXPERIMENTAL feature, but it'd be better to fix the issue as soon as possible to avoid unnecessary backporting. Summary: - Fix ztailpacking z_idataoff getting trimmed on > 4GiB filesystems" * tag 'erofs-for-5.17-rc7-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs: erofs: fix ztailpacking on > 4GiB filesystems
2 parents ae5f531 + 22ba5e9 commit 92ebf5f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fs/erofs/internal.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -325,7 +325,7 @@ struct erofs_inode {
325325
unsigned char z_algorithmtype[2];
326326
unsigned char z_logical_clusterbits;
327327
unsigned long z_tailextent_headlcn;
328-
unsigned int z_idataoff;
328+
erofs_off_t z_idataoff;
329329
unsigned short z_idata_size;
330330
};
331331
#endif /* CONFIG_EROFS_FS_ZIP */

0 commit comments

Comments
 (0)