summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2026-06-15 00:55:36 +0300
committerLinus Torvalds <torvalds@linux-foundation.org>2026-06-15 00:55:36 +0300
commit0793d39ec8bab2b2255e3a288894c39e88ce5a75 (patch)
tree7dfb1928b48c9a4081be709a410cde4bbc3a09a8 /include/linux
parent50b900c564b0f0307c126de9f17c21d3a1ba039b (diff)
parent2c6f0c248a6b49a6fc8c301c84d367860c56ccd8 (diff)
downloadlinux-0793d39ec8bab2b2255e3a288894c39e88ce5a75.tar.xz
Merge tag 'vfs-7.2-rc1.super' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs
Pull vfs superblock updates from Christian Brauner: "This retires sget(). CIFS plus the two ext4 KUnit tests (extents-test, mballoc-test) were the last in-tree callers, and all three convert cleanly to sget_fc(). That lets sget() and its prototype come out, taking ~60 lines that only existed to be kept in lockstep with sget_fc() on every publish-path change" * tag 'vfs-7.2-rc1.super' of git://git.kernel.org/pub/scm/linux/kernel/git/vfs/vfs: fs: retire sget() smb: client: convert cifs_smb3_do_mount() to sget_fc() ext4: convert mballoc KUnit test to sget_fc() ext4: convert extents KUnit test to sget_fc()
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/fs.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index c5c31a6f7ed5..a220d14b1f91 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -2340,10 +2340,6 @@ void free_anon_bdev(dev_t);
struct super_block *sget_fc(struct fs_context *fc,
int (*test)(struct super_block *, struct fs_context *),
int (*set)(struct super_block *, struct fs_context *));
-struct super_block *sget(struct file_system_type *type,
- int (*test)(struct super_block *,void *),
- int (*set)(struct super_block *,void *),
- int flags, void *data);
struct super_block *sget_dev(struct fs_context *fc, dev_t dev);
/* Alas, no aliases. Too much hassle with bringing module.h everywhere */