All of lore.kernel.org
 help / color / mirror / Atom feed
From: Gao Xiang via Linux-erofs <linux-erofs@lists.ozlabs.org>
To: linux-erofs@lists.ozlabs.org
Subject: [WIP] [PATCH v3 00/12] erofs-utils: introduce fuse implementation
Date: Mon,  2 Nov 2020 23:55:46 +0800	[thread overview]
Message-ID: <20201102155558.1995-1-hsiangkao@aol.com> (raw)
In-Reply-To: 20201102155558.1995-1-hsiangkao.ref@aol.com

From: Gao Xiang <hsiangkao@redhat.com>

v2: https://lore.kernel.org/r/20201024130959.23720-1-hsiangkao@aol.com

background & v1:
https://lore.kernel.org/r/20201017051621.7810-1-hsiangkao@aol.com

kill a lot of insane logic, and hopefully it can get into shape
in the next iter.

Thanks,
Gao Xiang

Gao Xiang (9):
  erofs-utils: fuse: refactor raw data logic
  erofs-utils: fuse: kill sbk
  erofs-utils: fuse: kill nid2addr, addr2nid
  erofs-utils: fuse: kill erofs_get_root_nid()
  erofs-utils: fuse: move erofs_init() to main.c
  erofs-utils: fuse: move superblock logic into lib/
  erofs-utils: fuse: kill getattr.c
  erofs-utils: fuse: kill open.c
  erofs-utils: fuse: kill incomplate dcache

Huang Jianan (2):
  erofs-utils: fuse: add special file support
  erofs-utils: fuse: add compressed file support

Li Guifu (1):
  erofs-utils: introduce fuse implementation

 Makefile.am                |   2 +-
 README                     |  28 ++-
 configure.ac               |   3 +-
 fuse/Makefile.am           |  14 ++
 fuse/main.c                | 205 ++++++++++++++++++
 fuse/namei.c               | 237 +++++++++++++++++++++
 fuse/namei.h               |  17 ++
 fuse/read.c                | 173 +++++++++++++++
 fuse/read.h                |  17 ++
 fuse/readir.c              | 121 +++++++++++
 fuse/readir.h              |  17 ++
 fuse/zmap.c                | 417 +++++++++++++++++++++++++++++++++++++
 include/erofs/decompress.h |  35 ++++
 include/erofs/defs.h       |  16 ++
 include/erofs/internal.h   | 104 +++++++++
 include/erofs/io.h         |   1 +
 include/erofs_fs.h         |   4 +
 lib/Makefile.am            |   4 +-
 lib/data.c                 | 117 +++++++++++
 lib/decompress.c           |  87 ++++++++
 lib/io.c                   |  16 ++
 lib/super.c                |  79 +++++++
 22 files changed, 1709 insertions(+), 5 deletions(-)
 create mode 100644 fuse/Makefile.am
 create mode 100644 fuse/main.c
 create mode 100644 fuse/namei.c
 create mode 100644 fuse/namei.h
 create mode 100644 fuse/read.c
 create mode 100644 fuse/read.h
 create mode 100644 fuse/readir.c
 create mode 100644 fuse/readir.h
 create mode 100644 fuse/zmap.c
 create mode 100644 include/erofs/decompress.h
 create mode 100644 lib/data.c
 create mode 100644 lib/decompress.c
 create mode 100644 lib/super.c

-- 
2.24.0


       reply	other threads:[~2020-11-02 15:56 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <20201102155558.1995-1-hsiangkao.ref@aol.com>
2020-11-02 15:55 ` Gao Xiang via Linux-erofs [this message]
2020-11-02 15:55   ` [WIP] [PATCH v3 01/12] erofs-utils: introduce fuse implementation Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 02/12] erofs-utils: fuse: add special file support Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 03/12] erofs-utils: fuse: add compressed " Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 04/12] erofs-utils: fuse: refactor raw data logic Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 05/12] erofs-utils: fuse: kill sbk Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 06/12] erofs-utils: fuse: kill nid2addr, addr2nid Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 07/12] erofs-utils: fuse: kill erofs_get_root_nid() Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 08/12] erofs-utils: fuse: move erofs_init() to main.c Gao Xiang via Linux-erofs
2020-11-02 15:55   ` [WIP] [PATCH v3 09/12] erofs-utils: fuse: move superblock logic into lib/ Gao Xiang via Linux-erofs
2020-11-02 15:59     ` [WIP] [PATCH v3 10/12] erofs-utils: fuse: kill getattr.c Gao Xiang via Linux-erofs
2020-11-02 15:59       ` [WIP] [PATCH v3 11/12] erofs-utils: fuse: kill open.c Gao Xiang via Linux-erofs
2020-11-02 15:59       ` [WIP] [PATCH v3 12/12] erofs-utils: fuse: kill incomplate dcache Gao Xiang via Linux-erofs

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=20201102155558.1995-1-hsiangkao@aol.com \
    --to=linux-erofs@lists.ozlabs.org \
    --cc=hsiangkao@aol.com \
    /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.