mbox series

[GIT,PULL] ntfs3: changes for 6.5

Message ID c9649ce0-98c7-71cb-73c3-8a172d6689ff@paragon-software.com (mailing list archive)
State New, archived
Headers show
Series [GIT,PULL] ntfs3: changes for 6.5 | expand

Pull-request

https://github.com/Paragon-Software-Group/linux-ntfs3.git ntfs3_for_6.5

Message

Konstantin Komarov July 7, 2023, 2:14 p.m. UTC
Hi Linus,

Please pull this branch containing ntfs3 code for 6.5.

Added:
- support /proc/fs/ntfs3/<dev>/volinfo and label;
- alternative boot if primary boot is corrupted;
- small optimizations.

Fixed:
- some endian problem;
- some logic errors;
- code is refactored and reformatted.

Regards,

Konstantin

----------------------------------------------------------------

The following changes since commit 6995e2de6891c724bfeb2db33d7b87775f913ad1:

    Linux 6.4 (Sun Jun 25 16:29:58 2023 -0700)

are available in the Git repository at:

    https://github.com/Paragon-Software-Group/linux-ntfs3.git ntfs3_for_6.5

for you to fetch changes up to 44b4494d5c5971dc8f531c8783d90a637e862880:

    fs/ntfs3: Correct mode for label entry inside /proc/fs/ntfs3/ (Fri 
Jun 30 15:23:07 2023 +0400)

----------------------------------------------------------------

Edward Lo (2):
   fs/ntfs3: Enhance sanity check while generating attr_list
   fs/ntfs3: Return error for inconsistent extended attributes

Jia-Ju Bai (1):
   fs: ntfs3: Fix possible null-pointer dereferences in mi_read()

Konstantin Komarov (11):
   fs/ntfs3: Correct checking while generating attr_list
   fs/ntfs3: Fix ntfs_atomic_open
   fs/ntfs3: Mark ntfs dirty when on-disk struct is corrupted
   fs/ntfs3: Alternative boot if primary boot is corrupted
   fs/ntfs3: Do not update primary boot in ntfs_init_from_boot()
   fs/ntfs3: Code formatting
   fs/ntfs3: Code refactoring
   fs/ntfs3: Add ability to format new mft records with bigger/smaller
     header
   fs/ntfs3: Fix endian problem
   fs/ntfs3: Add support /proc/fs/ntfs3/<dev>/volinfo and
     /proc/fs/ntfs3/<dev>/label
   fs/ntfs3: Correct mode for label entry inside /proc/fs/ntfs3/

Tetsuo Handa (1):
   fs/ntfs3: Use __GFP_NOWARN allocation at ntfs_load_attr_list()

Yangtao Li (1):
   fs/ntfs3: Use wrapper i_blocksize() in ntfs_zero_range()

Zeng Heng (1):
   ntfs: Fix panic about slab-out-of-bounds caused by ntfs_listxattr()

  fs/ntfs3/attrib.c   |   2 +-
  fs/ntfs3/attrlist.c |   7 +-
  fs/ntfs3/bitmap.c   |  10 +-
  fs/ntfs3/file.c     |   6 +-
  fs/ntfs3/frecord.c  |  58 ++++-----
  fs/ntfs3/fslog.c    |  40 +++----
  fs/ntfs3/fsntfs.c   |  99 ++++++++++++----
  fs/ntfs3/index.c    |  20 ++--
  fs/ntfs3/inode.c    |  23 ++--
  fs/ntfs3/lznt.c     |   6 +-
  fs/ntfs3/namei.c    |  31 ++---
  fs/ntfs3/ntfs.h     | 117 ++++++++++--------
  fs/ntfs3/ntfs_fs.h  |  31 ++---
  fs/ntfs3/record.c   |  14 ++-
  fs/ntfs3/run.c      |   4 +-
  fs/ntfs3/super.c    | 280 ++++++++++++++++++++++++++++++++++++++------
  fs/ntfs3/xattr.c    |  20 ++--
  17 files changed, 531 insertions(+), 237 deletions(-)