linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] exfat
@ 2020-04-04 18:35 Al Viro
  2020-04-04 18:55 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Al Viro @ 2020-04-04 18:35 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-kernel, linux-fsdevel

	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

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2020-04-04 18:55 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-04 18:35 [git pull] exfat Al Viro
2020-04-04 18:55 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).