[GIT PULL] exfat update for 6.12-rc1

From: Namjae Jeon
Date: Tue Sep 24 2024 - 09:00:29 EST


Hi Linus,

This is exfat update pull request for v6.12-rc1. I add description of
this pull request on below. Please pull exfat with following ones.

Thanks!

The following changes since commit a430d95c5efa2b545d26a094eb5f624e36732af0:

Merge tag 'lsm-pr-20240911' of
git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/lsm (2024-09-16
18:19:47 +0200)

are available in the Git repository at:

git://git.kernel.org/pub/scm/linux/kernel/git/linkinjeon/exfat.git
tags/exfat-for-6.12-rc1

for you to fetch changes up to cb7d85014fb1ca3387f7ff5f6067337b3d7f3c5a:

MAINTAINERS: exfat: add myself as reviewer (2024-09-23 21:38:15 +0900)

----------------------------------------------------------------
Description for this pull request:
- Clean-up unnecessary codes as ->valid_size is supported.
- buffered-IO fallback is no longer needed when using direct-IO.
- Move ->valid_size extension from mmap to ->page_mkwrite.
This improves the overhead caused by unnecessary zero-out during mmap.
- Fix memleaks from exfat_load_bitmap() and exfat_create_upcase_table().
- Add sops->shutdown and ioctl.
- Add Yuezhang Mo as a reviwer.

----------------------------------------------------------------
Daniel Yang (1):
exfat: resolve memory leak from exfat_create_upcase_table()

Dongliang Cui (1):
exfat: Implement sops->shutdown and ioctl

Yuezhang Mo (5):
exfat: drop ->i_size_ondisk
exfat: do not fallback to buffered write
exfat: fix memory leak in exfat_load_bitmap()
exfat: move extend valid_size into ->page_mkwrite()
MAINTAINERS: exfat: add myself as reviewer

MAINTAINERS | 1 +
fs/exfat/balloc.c | 10 ++---
fs/exfat/exfat_fs.h | 24 +++++++---
fs/exfat/file.c | 110 ++++++++++++++++++++++++++++-----------------
fs/exfat/inode.c | 94 +++++++++++---------------------------
fs/exfat/namei.c | 17 ++++++-
fs/exfat/nls.c | 5 ++-
fs/exfat/super.c | 41 ++++++++++++++++-
include/uapi/linux/exfat.h | 25 +++++++++++
9 files changed, 200 insertions(+), 127 deletions(-)
create mode 100644 include/uapi/linux/exfat.h