Re: [PATCH v4 1/5] erofs-utils: introduce multi-threading framework

2024-02-29 Thread Yifan Zhao
On 2/29/24 17:43, Gao Xiang wrote: Hi Yifan, On 2024/2/29 00:16, Yifan Zhao wrote: Add a workqueue implementation for multi-threading support inspired by xfsprogs. Signed-off-by: Yifan Zhao Suggested-by: Gao Xiang ---   configure.ac  |  16 +   include/erofs/internal.h  |  

Re: [PATCH v4 1/5] erofs-utils: introduce multi-threading framework

2024-02-29 Thread Gao Xiang
On 2024/2/29 17:43, Gao Xiang wrote: Hi Yifan, On 2024/2/29 00:16, Yifan Zhao wrote: Add a workqueue implementation for multi-threading support inspired by xfsprogs. Signed-off-by: Yifan Zhao Suggested-by: Gao Xiang --- .. index 54b9c9c..7307f7b 100644 --- a/lib/Makefile.am +++ b/lib/

Re: [PATCH v4 1/5] erofs-utils: introduce multi-threading framework

2024-02-29 Thread Gao Xiang
Hi Yifan, On 2024/2/29 00:16, Yifan Zhao wrote: Add a workqueue implementation for multi-threading support inspired by xfsprogs. Signed-off-by: Yifan Zhao Suggested-by: Gao Xiang --- configure.ac | 16 + include/erofs/internal.h | 3 + include/erofs/workqueue.h | 37

[PATCH v4 1/5] erofs-utils: introduce multi-threading framework

2024-02-28 Thread Yifan Zhao
Add a workqueue implementation for multi-threading support inspired by xfsprogs. Signed-off-by: Yifan Zhao Suggested-by: Gao Xiang --- configure.ac | 16 + include/erofs/internal.h | 3 + include/erofs/workqueue.h | 37 +++ lib/Makefile.am | 4 ++ lib/w