| /OK3568_Linux_fs/external/recovery/ |
| H A D | roots.c | 101 device_volumes[0].fs_type = "ramdisk"; in load_volume_table() 118 char fs_type[1024]; in load_volume_table() local 126 mount_point, fs_type, option, dump, pass); in load_volume_table() 142 device_volumes[num_volumes].fs_type = strdup(fs_type); in load_volume_table() 160 …printf(" %d %s %s %s %s %s %s\n", i, v->device, v->mount_point, v->fs_type, v->option, v->dump, v… in load_volume_table() 223 if (strcmp(v->fs_type, "ramdisk") == 0) { in ensure_path_mounted() 244 if (strcmp(v->fs_type, "yaffs2") == 0) { in ensure_path_mounted() 254 return mtd_mount_partition(partition, v->mount_point, v->fs_type, 0); in ensure_path_mounted() 255 } else if (strcmp(v->fs_type, "ext4") == 0 || in ensure_path_mounted() 256 strcmp(v->fs_type, "vfat") == 0 || in ensure_path_mounted() [all …]
|
| H A D | common.h | 93 const char* fs_type; // "yaffs2" or "ext4" or "vfat" member
|
| /OK3568_Linux_fs/u-boot/fs/ |
| H A D | fs.c | 26 static int fs_type = FS_TYPE_ANY; variable 287 fs_type = info->fstype; in fs_set_blk_dev() 312 fs_type = info->fstype; in fs_set_blk_dev_with_part() 329 info = fs_get_info(fs_type); in fs_get_fstype() 341 struct fstype_info *info = fs_get_info(fs_type); in fs_close() 345 fs_type = FS_TYPE_ANY; in fs_close() 350 struct fstype_info *info = fs_get_info(fs_type); in fs_uuid() 359 struct fstype_info *info = fs_get_info(fs_type); in fs_ls() 363 fs_type = FS_TYPE_ANY; in fs_ls() 373 struct fstype_info *info = fs_get_info(fs_type); in fs_exists() [all …]
|
| /OK3568_Linux_fs/kernel/fs/ |
| H A D | fs_context.c | 136 fc->fs_type->name, param->key); in vfs_parse_fs_param() 224 static struct fs_context *alloc_fs_context(struct file_system_type *fs_type, in alloc_fs_context() argument 241 fc->fs_type = get_filesystem(fs_type); in alloc_fs_context() 244 fc->log.prefix = fs_type->name; in alloc_fs_context() 263 init_fs_context = fc->fs_type->init_fs_context; in alloc_fs_context() 278 struct fs_context *fs_context_for_mount(struct file_system_type *fs_type, in fs_context_for_mount() argument 281 return alloc_fs_context(fs_type, NULL, sb_flags, 0, in fs_context_for_mount() 334 get_filesystem(fc->fs_type); in vfs_dup_fs_context() 453 put_filesystem(fc->fs_type); in put_fs_context() 578 if (fc->fs_type->fs_flags & FS_BINARY_MOUNTDATA) in legacy_parse_monolithic() [all …]
|
| H A D | fsopen.c | 104 fc->log.log->owner = fc->fs_type->owner; in fscontext_alloc_log() 117 struct file_system_type *fs_type; in SYSCALL_DEFINE2() local 132 fs_type = get_fs_type(fs_name); in SYSCALL_DEFINE2() 134 if (!fs_type) in SYSCALL_DEFINE2() 137 fc = fs_context_for_mount(fs_type, 0); in SYSCALL_DEFINE2() 138 put_filesystem(fs_type); in SYSCALL_DEFINE2()
|
| H A D | super.c | 488 if (!(fc->fs_type->fs_flags & FS_USERNS_MOUNT)) in mount_capable() 524 hlist_for_each_entry(old, &fc->fs_type->fs_supers, s_instances) { in sget_fc() 531 s = alloc_super(fc->fs_type, fc->sb_flags, user_ns); in sget_fc() 546 s->s_type = fc->fs_type; in sget_fc() 1295 bdev = blkdev_get_by_path(fc->source, mode, fc->fs_type); in get_tree_bdev() 1366 struct dentry *mount_bdev(struct file_system_type *fs_type, in mount_bdev() argument 1378 bdev = blkdev_get_by_path(dev_name, mode, fs_type); in mount_bdev() 1393 s = sget(fs_type, test_bdev_super, set_bdev_super, flags | SB_NOSEC, in mount_bdev() 1456 struct dentry *mount_nodev(struct file_system_type *fs_type, in mount_nodev() argument 1461 struct super_block *s = sget(fs_type, NULL, set_anon_super, flags, NULL); in mount_nodev() [all …]
|
| /OK3568_Linux_fs/kernel/include/linux/ |
| H A D | fs_enet_pd.h | 118 char fs_type[4]; /* controller type */ member 156 if(strstr(fpi->fs_type, "SCC")) in fs_get_id() 158 if(strstr(fpi->fs_type, "FCC")) in fs_get_id() 160 if(strstr(fpi->fs_type, "FEC")) in fs_get_id()
|
| H A D | fs_uart_pd.h | 51 char fs_type[4]; /* controller type */ member 64 if(strstr(fpi->fs_type, "SMC")) in fs_uart_get_id() 66 if(strstr(fpi->fs_type, "SCC")) in fs_uart_get_id()
|
| H A D | fs_context.h | 93 struct file_system_type *fs_type; member 127 extern struct fs_context *fs_context_for_mount(struct file_system_type *fs_type, 132 extern struct fs_context *fs_context_for_submount(struct file_system_type *fs_type,
|
| /OK3568_Linux_fs/buildroot/support/testing/tests/fs/ |
| H A D | test_ext.py | 28 def boot_img_and_check_fs_type(emulator, builddir, fs_type): argument 29 img = os.path.join(builddir, "images", "rootfs.{}".format(fs_type)) 33 "rootfstype={}".format(fs_type)], 36 _, exit_code = emulator.run(CHECK_FS_TYPE_CMD.format(fs_type))
|
| /OK3568_Linux_fs/buildroot/support/testing/tests/init/ |
| H A D | base.py | 7 def start_emulator(self, fs_type, kernel=None, dtb=None, init=None): argument 8 img = os.path.join(self.builddir, "images", "rootfs.{}".format(fs_type)) 23 "rootfstype={}".format(fs_type),
|
| H A D | test_none.py | 16 self.start_emulator(fs_type="squashfs", init="/bin/sh")
|
| /OK3568_Linux_fs/kernel/fs/autofs/ |
| H A D | init.c | 10 static struct dentry *autofs_mount(struct file_system_type *fs_type, in autofs_mount() argument 13 return mount_nodev(fs_type, flags, data, autofs_fill_super); in autofs_mount()
|
| /OK3568_Linux_fs/kernel/security/ |
| H A D | inode.c | 69 static struct file_system_type fs_type = { variable 121 error = simple_pin_fs(&fs_type, &mount, &mount_count); in securityfs_create_dentry() 339 retval = register_filesystem(&fs_type); in securityfs_init()
|
| /OK3568_Linux_fs/kernel/include/uapi/linux/ |
| H A D | msdos_fs.h | 134 __u8 fs_type[8]; /* file system type */ member 157 __u8 fs_type[8]; /* file system type */ member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/ |
| H A D | msdos_fs.h | 139 __u8 fs_type[8]; /* file system type */ member 162 __u8 fs_type[8]; /* file system type */ member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/ |
| H A D | msdos_fs.h | 139 __u8 fs_type[8]; /* file system type */ member 162 __u8 fs_type[8]; /* file system type */ member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/ |
| H A D | fstab.h | 63 const char *fs_type; /* FSTAB_* from fs_mntops */ member
|
| /OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/ |
| H A D | fstab.h | 63 const char *fs_type; /* FSTAB_* from fs_mntops */ member
|
| /OK3568_Linux_fs/kernel/fs/sysv/ |
| H A D | super.c | 531 static struct dentry *sysv_mount(struct file_system_type *fs_type, in sysv_mount() argument 534 return mount_bdev(fs_type, flags, dev_name, data, sysv_fill_super); in sysv_mount() 537 static struct dentry *v7_mount(struct file_system_type *fs_type, in v7_mount() argument 540 return mount_bdev(fs_type, flags, dev_name, data, v7_fill_super); in v7_mount()
|
| /OK3568_Linux_fs/u-boot/drivers/usb/gadget/ |
| H A D | f_fastboot.c | 272 const char **fs_type) in fb_get_fstype() argument 281 if (fs_get_fstype(fs_type)) in fb_get_fstype() 703 const char *fs_type = NULL; in fb_read_var() local 725 if (fb_get_fstype("mmc", part_num, &fs_type)) { in fb_read_var() 730 fs_type, NULL); in fb_read_var() 1186 const char *fs_type = NULL; in fb_getvar_all() local 1207 fs_type = NULL; in fb_getvar_all() 1209 &fs_type)) { in fb_getvar_all() 1219 fs_type, in fb_getvar_all()
|
| /OK3568_Linux_fs/kernel/fs/freevxfs/ |
| H A D | vxfs_super.c | 310 static struct dentry *vxfs_mount(struct file_system_type *fs_type, in vxfs_mount() argument 313 return mount_bdev(fs_type, flags, dev_name, data, vxfs_fill_super); in vxfs_mount()
|
| /OK3568_Linux_fs/kernel/fs/coda/ |
| H A D | inode.c | 316 static struct dentry *coda_mount(struct file_system_type *fs_type, in coda_mount() argument 319 return mount_nodev(fs_type, flags, data, coda_fill_super); in coda_mount()
|
| /OK3568_Linux_fs/u-boot/fs/fat/ |
| H A D | fat.c | 533 if (strncmp(FAT32_SIGN, vistart->fs_type, SIGNLEN) == 0) in read_bootsectandvi() 536 if (strncmp(FAT12_SIGN, vistart->fs_type, SIGNLEN) == 0) { in read_bootsectandvi() 540 if (strncmp(FAT16_SIGN, vistart->fs_type, SIGNLEN) == 0) { in read_bootsectandvi() 1027 volinfo.fs_type[5] = '\0'; in file_fat_detectfs() 1029 printf("Filesystem: %s \"%s\"\n", volinfo.fs_type, vol_label); in file_fat_detectfs()
|
| /OK3568_Linux_fs/kernel/fs/9p/ |
| H A D | vfs_super.c | 109 static struct dentry *v9fs_mount(struct file_system_type *fs_type, int flags, in v9fs_mount() argument 132 sb = sget(fs_type, NULL, v9fs_set_super, flags, v9ses); in v9fs_mount()
|