Searched refs:fill_super (Results 1 – 11 of 11) sorted by relevance
/linux-4.4.14/drivers/mtd/ |
D | mtdsuper.c | 62 int (*fill_super)(struct super_block *, void *, int)) in mount_mtd_aux() 78 ret = fill_super(sb, data, flags & MS_SILENT ? 1 : 0); in mount_mtd_aux() 105 int (*fill_super)(struct super_block *, void *, int)) in mount_mtd_nr() 115 return mount_mtd_aux(fs_type, flags, dev_name, data, mtd, fill_super); in mount_mtd_nr() 123 int (*fill_super)(struct super_block *, void *, int)) in mount_mtd() 153 fill_super); in mount_mtd() 170 mtdnr, fill_super); in mount_mtd() 196 return mount_mtd_nr(fs_type, flags, dev_name, data, mtdnr, fill_super); in mount_mtd()
|
/linux-4.4.14/include/linux/mtd/ |
D | super.h | 23 int (*fill_super)(struct super_block *, void *, int));
|
/linux-4.4.14/security/ |
D | inode.c | 28 static int fill_super(struct super_block *sb, void *data, int silent) in fill_super() function 39 return mount_single(fs_type, flags, data, fill_super); in get_sb()
|
/linux-4.4.14/fs/ |
D | super.c | 922 void *data, int (*fill_super)(struct super_block *, void *, int)) in mount_ns() 932 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0); in mount_ns() 967 int (*fill_super)(struct super_block *, void *, int)) in mount_bdev() 1021 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); in mount_bdev() 1059 int (*fill_super)(struct super_block *, void *, int)) in mount_nodev() 1067 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); in mount_nodev() 1084 int (*fill_super)(struct super_block *, void *, int)) in mount_single() 1093 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); in mount_single()
|
/linux-4.4.14/fs/nfs/ |
D | nfs4super.c | 267 .fill_super = nfs_fill_super, in nfs4_remote_referral_mount()
|
D | internal.h | 136 void (*fill_super)(struct super_block *, struct nfs_mount_info *); member
|
D | super.c | 2582 mount_info->fill_super(s, mount_info); in nfs_fs_mount_common() 2616 .fill_super = nfs_fill_super, in nfs_fs_mount() 2679 .fill_super = nfs_clone_super, in nfs_xdev_mount()
|
/linux-4.4.14/include/linux/ |
D | fs.h | 1962 void *data, int (*fill_super)(struct super_block *, void *, int)); 1965 int (*fill_super)(struct super_block *, void *, int)); 1968 int (*fill_super)(struct super_block *, void *, int)); 1971 int (*fill_super)(struct super_block *, void *, int));
|
/linux-4.4.14/fs/gfs2/ |
D | ops_fstype.c | 1048 static int fill_super(struct super_block *sb, struct gfs2_args *args, int silent) in fill_super() function 1322 error = fill_super(s, &args, flags & MS_SILENT ? 1 : 0); in gfs2_mount()
|
/linux-4.4.14/Documentation/filesystems/caching/ |
D | backend-api.txt | 18 the fill_super() operation on mounting.
|
/linux-4.4.14/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:
|