summaryrefslogtreecommitdiffstats
path: root/fs/ext4
diff options
context:
space:
mode:
authorKent Overstreet <kent.overstreet@linux.dev>2024-03-14 23:53:02 -0400
committerTheodore Ts'o <tytso@mit.edu>2024-05-02 15:21:23 -0400
commitfb092d407262eb4278f3d1ca24da54396a038c62 (patch)
tree2e9aa86ce11f7a8bc0ec29f64b26a9ca54edbde7 /fs/ext4
parent35a1f12f0ca857fee1d7a04ef52cbd5f1f84de13 (diff)
downloadlinux-fb092d407262eb4278f3d1ca24da54396a038c62.tar.gz
linux-fb092d407262eb4278f3d1ca24da54396a038c62.tar.bz2
linux-fb092d407262eb4278f3d1ca24da54396a038c62.zip
ext4: add support for FS_IOC_GETFSSYSFSPATH
The new sysfs path ioctl lets us get the /sys/fs/ path for a given filesystem in a fs agnostic way, potentially nudging us towards standarizing some of our reporting. Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev> Cc: Theodore Ts'o <tytso@mit.edu> Cc: Andreas Dilger <adilger.kernel@dilger.ca> Cc: linux-ext4@vger.kernel.org Link: https://lore.kernel.org/r/20240315035308.3563511-4-kent.overstreet@linux.dev Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Diffstat (limited to 'fs/ext4')
-rw-r--r--fs/ext4/super.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/ext4/super.c b/fs/ext4/super.c
index 28cbe0f1996f..9bde300b1551 100644
--- a/fs/ext4/super.c
+++ b/fs/ext4/super.c
@@ -5340,6 +5340,7 @@ static int __ext4_fill_super(struct fs_context *fc, struct super_block *sb)
sb->s_quota_types = QTYPE_MASK_USR | QTYPE_MASK_GRP | QTYPE_MASK_PRJ;
#endif
super_set_uuid(sb, es->s_uuid, sizeof(es->s_uuid));
+ super_set_sysfs_name_bdev(sb);
INIT_LIST_HEAD(&sbi->s_orphan); /* unlinked but open files */
mutex_init(&sbi->s_orphan_lock);