From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from lists.ozlabs.org (lists.ozlabs.org [112.213.38.117]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 54F85C433F5 for ; Thu, 10 Feb 2022 12:43:50 +0000 (UTC) Received: from boromir.ozlabs.org (localhost [IPv6:::1]) by lists.ozlabs.org (Postfix) with ESMTP id 4Jvbyr0tqPz3bZf for ; Thu, 10 Feb 2022 23:43:48 +1100 (AEDT) Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=linux.alibaba.com (client-ip=115.124.30.131; helo=out30-131.freemail.mail.aliyun.com; envelope-from=hsiangkao@linux.alibaba.com; receiver=) Received: from out30-131.freemail.mail.aliyun.com (out30-131.freemail.mail.aliyun.com [115.124.30.131]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 4Jvbyd5sTpz2yQ8 for ; Thu, 10 Feb 2022 23:43:32 +1100 (AEDT) X-Alimail-AntiSpam: AC=PASS; BC=-1|-1; BR=01201311R201e4; CH=green; DM=||false|; DS=||; FP=0|-1|-1|-1|0|-1|-1|-1; HT=e01e01424; MF=hsiangkao@linux.alibaba.com; NM=1; PH=DS; RN=5; SR=0; TI=SMTPD_---0V44OMp2_1644497000; Received: from B-P7TQMD6M-0146.local(mailfrom:hsiangkao@linux.alibaba.com fp:SMTPD_---0V44OMp2_1644497000) by smtp.aliyun-inc.com(127.0.0.1); Thu, 10 Feb 2022 20:43:23 +0800 Date: Thu, 10 Feb 2022 20:43:20 +0800 From: Gao Xiang To: Tom Rini Subject: Re: [PATCH v3 0/5] fs/erofs: new filesystem Message-ID: References: <20210823123646.9765-1-jnhuang95@gmail.com> <20220208140513.30570-1-jnhuang95@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20220208140513.30570-1-jnhuang95@gmail.com> X-BeenThere: linux-erofs@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development of Linux EROFS file system List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: u-boot@lists.denx.de, linux-erofs@lists.ozlabs.org Errors-To: linux-erofs-bounces+linux-erofs=archiver.kernel.org@lists.ozlabs.org Sender: "Linux-erofs" Hi Tom, Would you mind taking some time having a look at this version if it meets what's needed, so we could have a chance to be merged in the next u-boot version? It's almost in sync with the latest erofs-utils soruce code, so it can be upgraded easily in the future together with the later erofs-utils versions. Thanks, Gao Xiang On Tue, Feb 08, 2022 at 10:05:08PM +0800, Huang Jianan wrote: > Changes since v2: > - sync up with erofs-utils 1.4; > - update lib/lz4 to v1.8.3; > - add test for filesystem functions; > > Changes since v1: > - fix the inconsistency between From and SoB; > - add missing license header; > > Huang Jianan (5): > fs/erofs: add erofs filesystem support > lib/lz4: update LZ4 decompressor module > fs/erofs: add lz4 decompression support > fs/erofs: add filesystem commands > test/py: Add tests for the erofs > > MAINTAINERS | 9 + > cmd/Kconfig | 6 + > cmd/Makefile | 1 + > cmd/erofs.c | 42 ++ > configs/sandbox_defconfig | 1 + > fs/Kconfig | 2 + > fs/Makefile | 1 + > fs/erofs/Kconfig | 21 + > fs/erofs/Makefile | 9 + > fs/erofs/data.c | 311 +++++++++++++ > fs/erofs/decompress.c | 78 ++++ > fs/erofs/decompress.h | 24 + > fs/erofs/erofs_fs.h | 436 ++++++++++++++++++ > fs/erofs/fs.c | 267 +++++++++++ > fs/erofs/internal.h | 313 +++++++++++++ > fs/erofs/namei.c | 252 +++++++++++ > fs/erofs/super.c | 105 +++++ > fs/erofs/zmap.c | 601 ++++++++++++++++++++++++ > fs/fs.c | 22 + > include/erofs.h | 19 + > include/fs.h | 1 + > include/u-boot/lz4.h | 49 ++ > lib/lz4.c | 679 ++++++++++++++++++++-------- > lib/lz4_wrapper.c | 23 +- > test/py/tests/test_fs/test_erofs.py | 211 +++++++++ > 25 files changed, 3268 insertions(+), 215 deletions(-) > create mode 100644 cmd/erofs.c > create mode 100644 fs/erofs/Kconfig > create mode 100644 fs/erofs/Makefile > create mode 100644 fs/erofs/data.c > create mode 100644 fs/erofs/decompress.c > create mode 100644 fs/erofs/decompress.h > create mode 100644 fs/erofs/erofs_fs.h > create mode 100644 fs/erofs/fs.c > create mode 100644 fs/erofs/internal.h > create mode 100644 fs/erofs/namei.c > create mode 100644 fs/erofs/super.c > create mode 100644 fs/erofs/zmap.c > create mode 100644 include/erofs.h > create mode 100644 test/py/tests/test_fs/test_erofs.py > > -- > 2.25.1 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id B3A04C433EF for ; Thu, 10 Feb 2022 12:45:09 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A3E0E816AB; Thu, 10 Feb 2022 13:45:07 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Received: by phobos.denx.de (Postfix, from userid 109) id 91B5E82045; Thu, 10 Feb 2022 13:43:31 +0100 (CET) Received: from out30-45.freemail.mail.aliyun.com (out30-45.freemail.mail.aliyun.com [115.124.30.45]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 13EFD800C2 for ; Thu, 10 Feb 2022 13:43:27 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=linux.alibaba.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=hsiangkao@linux.alibaba.com X-Alimail-AntiSpam: AC=PASS; BC=-1|-1; BR=01201311R201e4; CH=green; DM=||false|; DS=||; FP=0|-1|-1|-1|0|-1|-1|-1; HT=e01e01424; MF=hsiangkao@linux.alibaba.com; NM=1; PH=DS; RN=5; SR=0; TI=SMTPD_---0V44OMp2_1644497000; Received: from B-P7TQMD6M-0146.local(mailfrom:hsiangkao@linux.alibaba.com fp:SMTPD_---0V44OMp2_1644497000) by smtp.aliyun-inc.com(127.0.0.1); Thu, 10 Feb 2022 20:43:23 +0800 Date: Thu, 10 Feb 2022 20:43:20 +0800 From: Gao Xiang To: Tom Rini Cc: Huang Jianan , u-boot@lists.denx.de, linux-erofs@lists.ozlabs.org, xiang@kernel.org Subject: Re: [PATCH v3 0/5] fs/erofs: new filesystem Message-ID: References: <20210823123646.9765-1-jnhuang95@gmail.com> <20220208140513.30570-1-jnhuang95@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Disposition: inline In-Reply-To: <20220208140513.30570-1-jnhuang95@gmail.com> X-Mailman-Approved-At: Thu, 10 Feb 2022 13:45:06 +0100 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.5 at phobos.denx.de X-Virus-Status: Clean Hi Tom, Would you mind taking some time having a look at this version if it meets what's needed, so we could have a chance to be merged in the next u-boot version? It's almost in sync with the latest erofs-utils soruce code, so it can be upgraded easily in the future together with the later erofs-utils versions. Thanks, Gao Xiang On Tue, Feb 08, 2022 at 10:05:08PM +0800, Huang Jianan wrote: > Changes since v2: > - sync up with erofs-utils 1.4; > - update lib/lz4 to v1.8.3; > - add test for filesystem functions; > > Changes since v1: > - fix the inconsistency between From and SoB; > - add missing license header; > > Huang Jianan (5): > fs/erofs: add erofs filesystem support > lib/lz4: update LZ4 decompressor module > fs/erofs: add lz4 decompression support > fs/erofs: add filesystem commands > test/py: Add tests for the erofs > > MAINTAINERS | 9 + > cmd/Kconfig | 6 + > cmd/Makefile | 1 + > cmd/erofs.c | 42 ++ > configs/sandbox_defconfig | 1 + > fs/Kconfig | 2 + > fs/Makefile | 1 + > fs/erofs/Kconfig | 21 + > fs/erofs/Makefile | 9 + > fs/erofs/data.c | 311 +++++++++++++ > fs/erofs/decompress.c | 78 ++++ > fs/erofs/decompress.h | 24 + > fs/erofs/erofs_fs.h | 436 ++++++++++++++++++ > fs/erofs/fs.c | 267 +++++++++++ > fs/erofs/internal.h | 313 +++++++++++++ > fs/erofs/namei.c | 252 +++++++++++ > fs/erofs/super.c | 105 +++++ > fs/erofs/zmap.c | 601 ++++++++++++++++++++++++ > fs/fs.c | 22 + > include/erofs.h | 19 + > include/fs.h | 1 + > include/u-boot/lz4.h | 49 ++ > lib/lz4.c | 679 ++++++++++++++++++++-------- > lib/lz4_wrapper.c | 23 +- > test/py/tests/test_fs/test_erofs.py | 211 +++++++++ > 25 files changed, 3268 insertions(+), 215 deletions(-) > create mode 100644 cmd/erofs.c > create mode 100644 fs/erofs/Kconfig > create mode 100644 fs/erofs/Makefile > create mode 100644 fs/erofs/data.c > create mode 100644 fs/erofs/decompress.c > create mode 100644 fs/erofs/decompress.h > create mode 100644 fs/erofs/erofs_fs.h > create mode 100644 fs/erofs/fs.c > create mode 100644 fs/erofs/internal.h > create mode 100644 fs/erofs/namei.c > create mode 100644 fs/erofs/super.c > create mode 100644 fs/erofs/zmap.c > create mode 100644 include/erofs.h > create mode 100644 test/py/tests/test_fs/test_erofs.py > > -- > 2.25.1