/linux/init/ |
H A D | do_mounts.c | 333 static bool __init fs_is_nodev(char *fstype) in fs_is_nodev() argument 335 struct file_system_type *fs = get_fs_type(fstype); in fs_is_nodev() 348 char *fs_names, *fstype; in mount_nodev_root() local 357 for (i = 0, fstype = fs_names; i < num_fs; in mount_nodev_root() 358 i++, fstype += strlen(fstype) + 1) { in mount_nodev_root() 359 if (!*fstype) in mount_nodev_root() 361 if (!fs_is_nodev(fstype)) in mount_nodev_root() 363 err = do_mount_root(root_device_name, fstype, root_mountflags, in mount_nodev_root()
|
/linux/security/tomoyo/ |
H A D | mount.c | 84 struct file_system_type *fstype = NULL; in tomoyo_mount_acl() local 96 /* Get fstype. */ in tomoyo_mount_acl() 125 fstype = get_fs_type(type); in tomoyo_mount_acl() 126 if (!fstype) { in tomoyo_mount_acl() 130 if (fstype->fs_flags & FS_REQUIRES_DEV) in tomoyo_mount_acl() 171 if (fstype) in tomoyo_mount_acl() 172 put_filesystem(fstype); in tomoyo_mount_acl()
|
/linux/scripts/selinux/mdp/ |
H A D | mdp.c | 150 #define FS_USE(behavior, fstype) \ in main() argument 152 behavior, fstype, mls ? ":" SYSTEMLOW : "") in main() 221 #define GENFSCON(fstype, prefix) \ in main() argument 223 fstype, prefix, mls ? ":" SYSTEMLOW : "") in main()
|
/linux/tools/bpf/bpftool/ |
H A D | tracelog.c | 66 const char *fstype = "tracefs"; in get_tracefs_pipe() local 84 if (strcmp(type, fstype) == 0) { in get_tracefs_pipe()
|
/linux/tools/testing/selftests/mount/ |
H A D | unprivileged-remount-test.c | 182 bool test_unpriv_remount(const char *fstype, const char *mount_options, in test_unpriv_remount() argument 216 if (mount("testing", "/tmp", fstype, mount_flags, mount_options) != 0) { in test_unpriv_remount() 218 fstype, in test_unpriv_remount()
|
/linux/scripts/gdb/linux/ |
H A D | proc.py | 174 "mount", "super_block", "devname", "pathname", "fstype")) 193 fstype = superblock['s_type']['name'].string() 200 pathname, fstype, rd, info_opts(FS_INFO, s_flags),
|
/linux/security/selinux/include/ |
H A D | security.h | 347 int security_genfs_sid(const char *fstype, const char *path, u16 sclass, 350 int selinux_policy_genfs_sid(struct selinux_policy *policy, const char *fstype,
|
/linux/security/selinux/ss/ |
H A D | policydb.c | 821 kfree(g->fstype); in policydb_destroy() 2162 rc = str_read(&newgenfs->fstype, GFP_KERNEL, fp, len); in genfs_read() 2169 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) { in genfs_read() 2170 pr_err("SELinux: dup genfs fstype %s\n", in genfs_read() 2171 newgenfs->fstype); in genfs_read() 2174 if (strcmp(newgenfs->fstype, genfs->fstype) < 0) in genfs_read() 2221 genfs->fstype, c->u.name); in genfs_read() 2241 kfree(newgenfs->fstype); in genfs_read() [all...] |
H A D | services.c | 2877 * @fstype: filesystem type 2890 const char *fstype, in __security_genfs_sid() argument 2910 cmp = strcmp(fstype, genfs->fstype); in __security_genfs_sid() 2942 * @fstype: filesystem type 2950 int security_genfs_sid(const char *fstype, in security_genfs_sid() argument 2966 retval = __security_genfs_sid(policy, fstype, path, in security_genfs_sid() 2974 const char *fstype, in selinux_policy_genfs_sid() argument 2980 return __security_genfs_sid(policy, fstype, path, orig_sclass, sid); in selinux_policy_genfs_sid() 2995 const char *fstype in security_fs_use() local [all...] |
H A D | policydb.h | 173 char *name; /* name of initial SID, fs, netif, fstype, path */ 207 char *fstype; member
|
/linux/Documentation/filesystems/ |
H A D | multigrain-ts.rst | 121 fstype->fs_flags in order to opt-in, providing the ctime is only ever set via
|
/linux/fs/ |
H A D | namespace.c | 3761 static int do_new_mount(struct path *path, const char *fstype, int sb_flags, in do_new_mount() argument 3769 if (!fstype) in do_new_mount() 3772 type = get_fs_type(fstype); in do_new_mount() 3777 subtype = strchr(fstype, '.'); in do_new_mount()
|