All of lore.kernel.org
 help / color / mirror / Atom feed
From: Al Viro <viro@zeniv.linux.org.uk>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-fsdevel@vger.kernel.org
Subject: [git pull] exfat
Date: Sat, 4 Apr 2020 19:35:28 +0100	[thread overview]
Message-ID: <20200404183528.GO23230@ZenIV.linux.org.uk> (raw)

	fs/exfat replacement for drivers/staging/exfat.  Two conflicts -
drivers/staging/exfat/Kconfig modified in this branch and gone in mainline
and insertion into MAINTAINERS next to (now gone in mainline) entry for
drivers/staging variant.  Obvious resolution in both cases...

The following changes since commit bb6d3fb354c5ee8d6bde2d576eb7220ea09862b9:

  Linux 5.6-rc1 (2020-02-09 16:08:48 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs.git work.exfat

for you to fetch changes up to 9acd0d53800c55c6e2186e29b6433daf24617451:

  exfat: update file system parameter handling (2020-03-05 21:00:40 -0500)

----------------------------------------------------------------
Namjae Jeon (13):
      exfat: add in-memory and on-disk structures and headers
      exfat: add super block operations
      exfat: add inode operations
      exfat: add directory operations
      exfat: add file operations
      exfat: add fat entry operations
      exfat: add bitmap operations
      exfat: add exfat cache
      exfat: add misc operations
      exfat: add nls operations
      exfat: add Kconfig and Makefile
      MAINTAINERS: add exfat filesystem
      staging: exfat: make staging/exfat and fs/exfat mutually exclusive

Valdis Kletnieks (1):
      exfat: update file system parameter handling

 MAINTAINERS                   |    7 +
 drivers/staging/exfat/Kconfig |    2 +-
 fs/Kconfig                    |    3 +-
 fs/Makefile                   |    1 +
 fs/exfat/Kconfig              |   21 +
 fs/exfat/Makefile             |    8 +
 fs/exfat/balloc.c             |  280 ++++++++
 fs/exfat/cache.c              |  325 +++++++++
 fs/exfat/dir.c                | 1238 +++++++++++++++++++++++++++++++++++
 fs/exfat/exfat_fs.h           |  519 +++++++++++++++
 fs/exfat/exfat_raw.h          |  184 ++++++
 fs/exfat/fatent.c             |  463 +++++++++++++
 fs/exfat/file.c               |  360 ++++++++++
 fs/exfat/inode.c              |  671 +++++++++++++++++++
 fs/exfat/misc.c               |  163 +++++
 fs/exfat/namei.c              | 1448 +++++++++++++++++++++++++++++++++++++++++
 fs/exfat/nls.c                |  831 +++++++++++++++++++++++
 fs/exfat/super.c              |  722 ++++++++++++++++++++
 18 files changed, 7244 insertions(+), 2 deletions(-)
 create mode 100644 fs/exfat/Kconfig
 create mode 100644 fs/exfat/Makefile
 create mode 100644 fs/exfat/balloc.c
 create mode 100644 fs/exfat/cache.c
 create mode 100644 fs/exfat/dir.c
 create mode 100644 fs/exfat/exfat_fs.h
 create mode 100644 fs/exfat/exfat_raw.h
 create mode 100644 fs/exfat/fatent.c
 create mode 100644 fs/exfat/file.c
 create mode 100644 fs/exfat/inode.c
 create mode 100644 fs/exfat/misc.c
 create mode 100644 fs/exfat/namei.c
 create mode 100644 fs/exfat/nls.c
 create mode 100644 fs/exfat/super.c

             reply	other threads:[~2020-04-04 18:35 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-04-04 18:35 Al Viro [this message]
2020-04-04 18:55 ` [git pull] exfat pr-tracker-bot

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=20200404183528.GO23230@ZenIV.linux.org.uk \
    --to=viro@zeniv.linux.org.uk \
    --cc=linux-fsdevel@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.org \
    /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.