mbox series

[git,pull] exfat

Message ID 20200404183528.GO23230@ZenIV.linux.org.uk (mailing list archive)
State New, archived
Headers show
Series [git,pull] exfat | expand

Pull-request

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

Message

Al Viro April 4, 2020, 6:35 p.m. UTC
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

Comments

pr-tracker-bot@kernel.org April 4, 2020, 6:55 p.m. UTC | #1
The pull request you sent on Sat, 4 Apr 2020 19:35:28 +0100:

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

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/83eb69f3b80f7cf2ca6357fb9c23adc48632a0e3

Thank you!