[xiang-erofs:dev-test] BUILD SUCCESS cf7f2732b4b83026842832e7e4e04bf862108ac2

2023-05-23 Thread kernel test robot
-randconfig-r006-20230521 gcc alpha defconfig gcc alpharandconfig-r001-20230522 gcc alpharandconfig-r011-20230522 gcc alpharandconfig-r013-20230521 gcc alpharandconfig-r013-20230523 gcc

Re: [GIT PULL] erofs fixes for 6.4-rc4

2023-05-23 Thread pr-tracker-bot
The pull request you sent on Wed, 24 May 2023 01:20:02 +0800: > git://git.kernel.org/pub/scm/linux/kernel/git/xiang/erofs.git > tags/erofs-for-6.4-rc4-fixes has been merged into torvalds/linux.git: https://git.kernel.org/torvalds/c/5fe326b4467689ef3690491ee2ad25ff4d81fe59 Thank you! --

[GIT PULL] erofs fixes for 6.4-rc4

2023-05-23 Thread Gao Xiang
Hi Linus, Could you consider these three patches for 6.4-rc4? One patch addresses a null-ptr-deref issue reported by syzbot weeks ago, which is caused by the new long xattr name prefix feature and needs to be fixed. The remaining two patches are minor cleanups to avoid unnecessary compilation

开源之夏

2023-05-23 Thread 狗卷 via Linux-erofs
您好,想了解一下EROFS文件系统社区的开源之夏项目,有没有交流群

Re: [PATCH v2] erofs: fix null-ptr-deref caused by erofs_xattr_prefixes_init

2023-05-23 Thread Chao Yu
On 2023/5/15 18:39, Jingbo Xu wrote: Fragments and dedupe share one feature bit, and thus packed inode may not exist when fragment feature bit (dedupe feature bit exactly) is set, e.g. when deduplication feature is in use while fragments feature is not. In this case, sbi->packed_inode could be

Re: [PATCH] erofs: avoid pcpubuf.c inclusion if CONFIG_EROFS_FS_ZIP is off

2023-05-23 Thread Chao Yu
On 2023/5/15 17:57, Yue Hu wrote: From: Yue Hu The function of pcpubuf.c is just for low-latency decompression algorithms (e.g. lz4). Signed-off-by: Yue Hu Reviewed-by: Gao Xiang Reviewed-by: Chao Yu Thanks,