From: Huang Jianan <jnhuang95@gmail.com>
To: u-boot@lists.denx.de, trini@konsulko.com
Cc: linux-erofs@lists.ozlabs.org
Subject: [PATCH v4 0/5] fs/erofs: new filesystem
Date: Sat, 26 Feb 2022 15:05:46 +0800 [thread overview]
Message-ID: <20220226070551.9833-1-jnhuang95@gmail.com> (raw)
Changes since v3:
- update tools/docker/Dockerfile;
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 +++++++++
tools/docker/Dockerfile | 1 +
26 files changed, 3269 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
WARNING: multiple messages have this Message-ID (diff)
From: Huang Jianan <jnhuang95@gmail.com>
To: u-boot@lists.denx.de, trini@konsulko.com
Cc: linux-erofs@lists.ozlabs.org, xiang@kernel.org,
Huang Jianan <jnhuang95@gmail.com>
Subject: [PATCH v4 0/5] fs/erofs: new filesystem
Date: Sat, 26 Feb 2022 15:05:46 +0800 [thread overview]
Message-ID: <20220226070551.9833-1-jnhuang95@gmail.com> (raw)
Changes since v3:
- update tools/docker/Dockerfile;
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 +++++++++
tools/docker/Dockerfile | 1 +
26 files changed, 3269 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
next reply other threads:[~2022-02-26 7:06 UTC|newest]
Thread overview: 42+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-02-26 7:05 Huang Jianan [this message]
2022-02-26 7:05 ` [PATCH v4 0/5] fs/erofs: new filesystem Huang Jianan
2022-02-26 7:05 ` [PATCH v4 1/5] fs/erofs: add erofs filesystem support Huang Jianan
2022-02-26 7:05 ` Huang Jianan
2022-03-16 12:10 ` Tom Rini
2022-03-16 12:10 ` Tom Rini
2022-02-26 7:05 ` [PATCH v4 2/5] lib/lz4: update LZ4 decompressor module Huang Jianan
2022-02-26 7:05 ` Huang Jianan
2022-03-16 12:10 ` Tom Rini
2022-03-16 12:10 ` Tom Rini
2024-05-24 14:26 ` Jonathan Liu
2024-05-24 14:26 ` Jonathan Liu
2024-05-24 16:52 ` Gao Xiang
2024-05-24 16:52 ` Gao Xiang
2024-05-26 8:06 ` Jonathan Liu
2024-05-26 8:06 ` Jonathan Liu
2024-05-26 12:18 ` Jianan Huang
2024-05-26 12:18 ` Jianan Huang
2024-05-28 13:28 ` Jonathan Liu
2024-05-28 13:28 ` Jonathan Liu
2024-05-28 14:03 ` Gao Xiang
2024-05-28 14:03 ` Gao Xiang
2022-02-26 7:05 ` [PATCH v4 3/5] fs/erofs: add lz4 decompression support Huang Jianan
2022-02-26 7:05 ` Huang Jianan
2022-03-16 12:10 ` Tom Rini
2022-03-16 12:10 ` Tom Rini
2022-02-26 7:05 ` [PATCH v4 4/5] fs/erofs: add filesystem commands Huang Jianan
2022-02-26 7:05 ` Huang Jianan
2022-03-16 12:10 ` Tom Rini
2022-03-16 12:10 ` Tom Rini
2022-02-26 7:05 ` [PATCH v4 5/5] test/py: Add tests for the erofs Huang Jianan
2022-02-26 7:05 ` Huang Jianan
2022-03-16 12:10 ` Tom Rini
2022-03-16 12:10 ` Tom Rini
2022-03-03 14:51 ` [PATCH v4 0/5] fs/erofs: new filesystem Huang Jianan
2022-03-03 14:51 ` Huang Jianan
2022-03-03 19:15 ` Tom Rini
2022-03-03 19:15 ` Tom Rini
2022-03-05 13:06 ` Huang Jianan
2022-03-05 13:06 ` Huang Jianan
2022-03-05 14:57 ` Tom Rini
2022-03-05 14:57 ` Tom Rini
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220226070551.9833-1-jnhuang95@gmail.com \
--to=jnhuang95@gmail.com \
--cc=linux-erofs@lists.ozlabs.org \
--cc=trini@konsulko.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.