This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from b3d8e4228268 Merge tag 'nfsd-5.7' of git://git.linux-nfs.org/projects/c [...] new 1acf1a564b60 exfat: add in-memory and on-disk structures and headers new 719c1e182916 exfat: add super block operations new 5f2aa075070c exfat: add inode operations new ca06197382bd exfat: add directory operations new 98d917047e8b exfat: add file operations new 31023864e67a exfat: add fat entry operations new 1e49a94cf707 exfat: add bitmap operations new c35b6810c495 exfat: add exfat cache new 772b29cca528 exfat: add misc operations new 370e812b3ec1 exfat: add nls operations new b9d1e2e6265f exfat: add Kconfig and Makefile new 88ab55f16aae MAINTAINERS: add exfat filesystem new 1a3c0509ce83 staging: exfat: make staging/exfat and fs/exfat mutually e [...] new 9acd0d53800c exfat: update file system parameter handling new 83eb69f3b80f Merge branch 'work.exfat' of git://git.kernel.org/pub/scm/ [...]
The 15 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: MAINTAINERS | 7 + 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 +++++++++++++++++++++++++ 17 files changed, 7243 insertions(+), 1 deletion(-) 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