]> asedeno.scripts.mit.edu Git - linux.git/commit
staging: exfat: add exfat filesystem code to staging
authorValdis Klētnieks <valdis.kletnieks@vt.edu>
Wed, 28 Aug 2019 16:08:17 +0000 (18:08 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 30 Aug 2019 06:55:08 +0000 (08:55 +0200)
commitc48c9f7ff32b8b3965a08e40eb6763682d905b5d
treecdab82889ecc2783c645bb962aadf5ab75640281
parent3982f1df00df57768f0782bc702fc4fbea347ca2
staging: exfat: add exfat filesystem code to staging

The exfat code needs a lot of work to get it into "real" shape for
the fs/ part of the kernel, so put it into drivers/staging/ for now so
that it can be worked on by everyone in the community.

The full specification of the filesystem can be found at:
  https://docs.microsoft.com/en-us/windows/win32/fileio/exfat-specification

Signed-off-by: Valdis Kletnieks <valdis.kletnieks@vt.edu>
Signed-off-by: Sasha Levin <alexander.levin@microsoft.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Link: https://lore.kernel.org/r/20190828160817.6250-1-gregkh@linuxfoundation.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
13 files changed:
MAINTAINERS
drivers/staging/Kconfig
drivers/staging/Makefile
drivers/staging/exfat/Kconfig [new file with mode: 0644]
drivers/staging/exfat/Makefile [new file with mode: 0644]
drivers/staging/exfat/TODO [new file with mode: 0644]
drivers/staging/exfat/exfat.h [new file with mode: 0644]
drivers/staging/exfat/exfat_blkdev.c [new file with mode: 0644]
drivers/staging/exfat/exfat_cache.c [new file with mode: 0644]
drivers/staging/exfat/exfat_core.c [new file with mode: 0644]
drivers/staging/exfat/exfat_nls.c [new file with mode: 0644]
drivers/staging/exfat/exfat_super.c [new file with mode: 0644]
drivers/staging/exfat/exfat_upcase.c [new file with mode: 0644]