[PATCH v4 0/1] exfat: Add support for FS_IOC_{GET,SET}FSLABEL

Ethan Ferguson posted 1 patch 1 month, 1 week ago
There is a newer version of this series
fs/exfat/exfat_fs.h  |   5 +
fs/exfat/exfat_raw.h |   6 ++
fs/exfat/file.c      |  88 +++++++++++++++++
fs/exfat/super.c     | 224 +++++++++++++++++++++++++++++++++++++++++++
4 files changed, 323 insertions(+)
[PATCH v4 0/1] exfat: Add support for FS_IOC_{GET,SET}FSLABEL
Posted by Ethan Ferguson 1 month, 1 week ago
Add support for reading / writing to the exfat volume label from the
FS_IOC_GETFSLABEL and FS_IOC_SETFSLABEL ioctls.

Implemented in similar ways to other fs drivers, namely btrfs and ext4,
where the ioctls are performed on file inodes.

v4:
Implement allocating a new cluster when the current dentry cluster would
be full as a result of inserting a volume label dentry.
v3:
Add lazy-loading of volume label into superblock.
Use better UTF-16 conversions to detect invalid characters.
If no volume label entry exists, overwrite a deleted dentry,
or create a new dentry if the cluster has space.
Link: https://lore.kernel.org/all/20250821150926.1025302-1-ethan.ferguson@zetier.com/
v2:
Fix endianness conversion as reported by kernel test robot
Link: https://lore.kernel.org/all/20250817003046.313497-1-ethan.ferguson@zetier.com/
v1:
Link: https://lore.kernel.org/all/20250815171056.103751-1-ethan.ferguson@zetier.com/

Ethan Ferguson (1):
  exfat: Add support for FS_IOC_{GET,SET}FSLABEL

 fs/exfat/exfat_fs.h  |   5 +
 fs/exfat/exfat_raw.h |   6 ++
 fs/exfat/file.c      |  88 +++++++++++++++++
 fs/exfat/super.c     | 224 +++++++++++++++++++++++++++++++++++++++++++
 4 files changed, 323 insertions(+)

-- 
2.34.1