/Linux-v4.19/drivers/mtd/ |
D | mtdsuper.c | 66 int (*fill_super)(struct super_block *, void *, int)) in mount_mtd_aux() 82 ret = fill_super(sb, data, flags & SB_SILENT ? 1 : 0); in mount_mtd_aux() 109 int (*fill_super)(struct super_block *, void *, int)) in mount_mtd_nr() 119 return mount_mtd_aux(fs_type, flags, dev_name, data, mtd, fill_super); in mount_mtd_nr() 127 int (*fill_super)(struct super_block *, void *, int)) in mount_mtd() 157 fill_super); in mount_mtd() 174 mtdnr, fill_super); in mount_mtd() 200 return mount_mtd_nr(fs_type, flags, dev_name, data, mtdnr, fill_super); in mount_mtd()
|
/Linux-v4.19/include/linux/mtd/ |
D | super.h | 23 int (*fill_super)(struct super_block *, void *, int));
|
/Linux-v4.19/security/ |
D | inode.c | 42 static int fill_super(struct super_block *sb, void *data, int silent) in fill_super() function 60 return mount_single(fs_type, flags, data, fill_super); in get_sb()
|
/Linux-v4.19/fs/ |
D | super.c | 1058 int (*fill_super)(struct super_block *, void *, int)) in mount_ns() 1075 err = fill_super(sb, data, flags & SB_SILENT ? 1 : 0); in mount_ns() 1106 int (*fill_super)(struct super_block *, void *, int)) in mount_bdev() 1158 error = fill_super(s, data, flags & SB_SILENT ? 1 : 0); in mount_bdev() 1196 int (*fill_super)(struct super_block *, void *, int)) in mount_nodev() 1204 error = fill_super(s, data, flags & SB_SILENT ? 1 : 0); in mount_nodev() 1221 int (*fill_super)(struct super_block *, void *, int)) in mount_single() 1230 error = fill_super(s, data, flags & SB_SILENT ? 1 : 0); in mount_single()
|
/Linux-v4.19/fs/nfs/ |
D | nfs4super.c | 267 .fill_super = nfs_fill_super, in nfs4_remote_referral_mount()
|
D | internal.h | 146 void (*fill_super)(struct super_block *, struct nfs_mount_info *); member
|
D | super.c | 2632 mount_info->fill_super(s, mount_info); in nfs_fs_mount_common() 2668 .fill_super = nfs_fill_super, in nfs_fs_mount() 2731 .fill_super = nfs_clone_super, in nfs_xdev_mount()
|
/Linux-v4.19/include/linux/ |
D | fs.h | 2142 int (*fill_super)(struct super_block *, void *, int)); 2146 int (*fill_super)(struct super_block *, void *, int)); 2150 int (*fill_super)(struct super_block *, void *, int)) in mount_bdev() 2157 int (*fill_super)(struct super_block *, void *, int)); 2160 int (*fill_super)(struct super_block *, void *, int));
|
/Linux-v4.19/fs/gfs2/ |
D | ops_fstype.c | 1035 static int fill_super(struct super_block *sb, struct gfs2_args *args, int silent) in fill_super() function 1302 error = fill_super(s, &args, flags & SB_SILENT ? 1 : 0); in gfs2_mount()
|
/Linux-v4.19/security/apparmor/ |
D | apparmorfs.c | 140 static int fill_super(struct super_block *sb, void *data, int silent) in fill_super() function 156 return mount_single(fs_type, flags, data, fill_super); in aafs_mount()
|
/Linux-v4.19/Documentation/filesystems/caching/ |
D | backend-api.txt | 18 the fill_super() operation on mounting.
|
/Linux-v4.19/Documentation/filesystems/ |
D | vfs.txt | 178 and provides a fill_super() callback instead. The generic variants are: 187 A fill_super() callback implementation has the following arguments:
|