Home
last modified time | relevance | path

Searched refs:fstype (Results 1 – 14 of 14) sorted by path

/linux/drivers/staging/wlan-ng/
H A Dp80211hdr.h142 static inline u16 wlan_ctl_framelen(u16 fstype) in wlan_ctl_framelen() argument
144 switch (fstype) { in wlan_ctl_framelen()
H A Dp80211netdev.c847 u16 fstype; in p80211_rx_typedrop() local
851 fstype = WLAN_GET_FC_FSTYPE(fc); in p80211_rx_typedrop()
861 switch (fstype) { in p80211_rx_typedrop()
910 switch (fstype) { in p80211_rx_typedrop()
938 switch (fstype) { in p80211_rx_typedrop()
/linux/fs/
H A Dnamespace.c3305 static int do_new_mount(struct path *path, const char *fstype, int sb_flags, in do_new_mount() argument
3313 if (!fstype) in do_new_mount()
3316 type = get_fs_type(fstype); in do_new_mount()
3321 subtype = strchr(fstype, '.'); in do_new_mount()
/linux/init/
H A Ddo_mounts.c333 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/scripts/gdb/linux/
H A Dproc.py193 fstype = superblock['s_type']['name'].string()
200 pathname, fstype, rd, info_opts(FS_INFO, s_flags),
/linux/scripts/selinux/mdp/
H A Dmdp.c154 #define FS_USE(behavior, fstype) \ in main() argument
156 behavior, fstype, mls ? ":" SYSTEMLOW : "") in main()
228 #define GENFSCON(fstype, prefix) \ in main() argument
230 fstype, prefix, mls ? ":" SYSTEMLOW : "") in main()
/linux/security/apparmor/
H A Dmount.c550 struct file_system_type *fstype; in aa_new_mount() local
552 fstype = get_fs_type(type); in aa_new_mount()
553 if (!fstype) in aa_new_mount()
555 binary = fstype->fs_flags & FS_BINARY_MOUNTDATA; in aa_new_mount()
556 requires_dev = fstype->fs_flags & FS_REQUIRES_DEV; in aa_new_mount()
557 put_filesystem(fstype); in aa_new_mount()
/linux/security/selinux/include/
H A Dsecurity.h329 int security_genfs_sid(const char *fstype, const char *path, u16 sclass,
332 int selinux_policy_genfs_sid(struct selinux_policy *policy, const char *fstype,
/linux/security/selinux/ss/
H A Dpolicydb.c812 kfree(g->fstype); in policydb_destroy()
2157 rc = str_read(&newgenfs->fstype, GFP_KERNEL, fp, len); in genfs_read()
2164 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) { in genfs_read()
2165 pr_err("SELinux: dup genfs fstype %s\n", in genfs_read()
2166 newgenfs->fstype); in genfs_read()
2169 if (strcmp(newgenfs->fstype, genfs->fstype) < 0) in genfs_read()
2216 genfs->fstype, c->u.name); in genfs_read()
2236 kfree(newgenfs->fstype); in ocontext_read()
[all...]
H A Dpolicydb.h207 char *fstype; member
H A Dservices.c2814 * @fstype: filesystem type
2827 const char *fstype, in __security_genfs_sid()
2846 cmp = strcmp(fstype, genfs->fstype); in __security_genfs_sid()
2869 * @fstype: filesystem type
2877 int security_genfs_sid(const char *fstype,
2893 retval = __security_genfs_sid(policy, fstype, path, in security_genfs_sid()
2901 const char *fstype, in selinux_policy_genfs_sid()
2907 return __security_genfs_sid(policy, fstype, path, orig_sclass, sid); in selinux_policy_genfs_sid()
2922 const char *fstype in security_fs_use()
2828 __security_genfs_sid(struct selinux_policy * policy,const char * fstype,const char * path,u16 orig_sclass,u32 * sid) __security_genfs_sid() argument
2878 security_genfs_sid(const char * fstype,const char * path,u16 orig_sclass,u32 * sid) security_genfs_sid() argument
2902 selinux_policy_genfs_sid(struct selinux_policy * policy,const char * fstype,const char * path,u16 orig_sclass,u32 * sid) selinux_policy_genfs_sid() argument
2923 const char *fstype = sb->s_type->name; security_fs_use() local
[all...]
/linux/security/tomoyo/
H A Dmount.c84 struct file_system_type *fstype = NULL; in tomoyo_mount_acl() local
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/tools/bpf/bpftool/
H A Dtracelog.c66 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 Dunprivileged-remount-test.c182 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()