Searched refs:fill_super (Results 1 – 11 of 11) sorted by relevance
/linux-4.1.27/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.1.27/include/linux/mtd/ |
D | super.h | 23 int (*fill_super)(struct super_block *, void *, int));
|
/linux-4.1.27/security/ |
D | inode.c | 33 static int fill_super(struct super_block *sb, void *data, int silent) in fill_super() function 44 return mount_single(fs_type, flags, data, fill_super); in get_sb()
|
/linux-4.1.27/fs/ |
D | super.c | 906 void *data, int (*fill_super)(struct super_block *, void *, int)) in mount_ns() 916 err = fill_super(sb, data, flags & MS_SILENT ? 1 : 0); in mount_ns() 951 int (*fill_super)(struct super_block *, void *, int)) in mount_bdev() 1005 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); in mount_bdev() 1043 int (*fill_super)(struct super_block *, void *, int)) in mount_nodev() 1051 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); in mount_nodev() 1068 int (*fill_super)(struct super_block *, void *, int)) in mount_single() 1077 error = fill_super(s, data, flags & MS_SILENT ? 1 : 0); in mount_single()
|
/linux-4.1.27/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 | 2579 mount_info->fill_super(s, mount_info); in nfs_fs_mount_common() 2613 .fill_super = nfs_fill_super, in nfs_fs_mount() 2676 .fill_super = nfs_clone_super, in nfs_xdev_mount()
|
/linux-4.1.27/include/linux/ |
D | fs.h | 1937 void *data, int (*fill_super)(struct super_block *, void *, int)); 1940 int (*fill_super)(struct super_block *, void *, int)); 1943 int (*fill_super)(struct super_block *, void *, int)); 1946 int (*fill_super)(struct super_block *, void *, int));
|
/linux-4.1.27/fs/gfs2/ |
D | ops_fstype.c | 1047 static int fill_super(struct super_block *sb, struct gfs2_args *args, int silent) in fill_super() function 1319 error = fill_super(s, &args, flags & MS_SILENT ? 1 : 0); in gfs2_mount()
|
/linux-4.1.27/Documentation/filesystems/caching/ |
D | backend-api.txt | 18 the fill_super() operation on mounting.
|
/linux-4.1.27/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:
|