Searched refs:fstype (Results 1 - 14 of 14) sorted by relevance

/linux-master/init/
H A Ddo_mounts.c334 static bool __init fs_is_nodev(char *fstype) argument
336 struct file_system_type *fs = get_fs_type(fstype);
349 char *fs_names, *fstype; local
358 for (i = 0, fstype = fs_names; i < num_fs;
359 i++, fstype += strlen(fstype) + 1) {
360 if (!*fstype)
362 if (!fs_is_nodev(fstype))
364 err = do_mount_root(root_device_name, fstype, root_mountflags,
/linux-master/scripts/selinux/mdp/
H A Dmdp.c154 #define FS_USE(behavior, fstype) \
156 behavior, fstype, mls ? ":" SYSTEMLOW : "")
228 #define GENFSCON(fstype, prefix) \
230 fstype, prefix, mls ? ":" SYSTEMLOW : "")
/linux-master/security/tomoyo/
H A Dmount.c84 struct file_system_type *fstype = NULL; local
96 /* Get fstype. */
125 fstype = get_fs_type(type);
126 if (!fstype) {
130 if (fstype->fs_flags & FS_REQUIRES_DEV)
171 if (fstype)
172 put_filesystem(fstype);
/linux-master/tools/bpf/bpftool/
H A Dtracelog.c66 const char *fstype = "tracefs"; local
84 if (strcmp(type, fstype) == 0) {
/linux-master/drivers/staging/wlan-ng/
H A Dp80211hdr.h142 static inline u16 wlan_ctl_framelen(u16 fstype) argument
144 switch (fstype) {
H A Dp80211netdev.c847 u16 fstype; local
851 fstype = WLAN_GET_FC_FSTYPE(fc);
861 switch (fstype) {
910 switch (fstype) {
938 switch (fstype) {
/linux-master/tools/testing/selftests/mount/
H A Dunprivileged-remount-test.c182 bool test_unpriv_remount(const char *fstype, const char *mount_options, argument
216 if (mount("testing", "/tmp", fstype, mount_flags, mount_options) != 0) {
218 fstype,
/linux-master/security/apparmor/
H A Dmount.c92 audit_log_format(ab, " fstype=");
550 struct file_system_type *fstype; local
552 fstype = get_fs_type(type);
553 if (!fstype)
555 binary = fstype->fs_flags & FS_BINARY_MOUNTDATA;
556 requires_dev = fstype->fs_flags & FS_REQUIRES_DEV;
557 put_filesystem(fstype);
/linux-master/scripts/gdb/linux/
H A Dproc.py173 "mount", "super_block", "devname", "pathname", "fstype"))
193 fstype = superblock['s_type']['name'].string()
200 pathname, fstype, rd, info_opts(FS_INFO, s_flags),
/linux-master/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-master/security/selinux/ss/
H A Dpolicydb.h173 char *name; /* name of initial SID, fs, netif, fstype, path */
207 char *fstype; member in struct:genfs
H A Dpolicydb.c809 kfree(g->fstype);
2149 rc = str_read(&newgenfs->fstype, GFP_KERNEL, fp, len);
2156 if (strcmp(newgenfs->fstype, genfs->fstype) == 0) {
2157 pr_err("SELinux: dup genfs fstype %s\n",
2158 newgenfs->fstype);
2161 if (strcmp(newgenfs->fstype, genfs->fstype) < 0)
2208 genfs->fstype, c->u.name);
2228 kfree(newgenfs->fstype);
[all...]
H A Dservices.c2815 * @fstype: filesystem type
2828 const char *fstype,
2847 cmp = strcmp(fstype, genfs->fstype);
2870 * @fstype: filesystem type
2878 int security_genfs_sid(const char *fstype, argument
2894 retval = __security_genfs_sid(policy, fstype, path,
2902 const char *fstype,
2908 return __security_genfs_sid(policy, fstype, path, orig_sclass, sid);
2923 const char *fstype local
2827 __security_genfs_sid(struct selinux_policy *policy, const char *fstype, const char *path, u16 orig_sclass, u32 *sid) argument
2901 selinux_policy_genfs_sid(struct selinux_policy *policy, const char *fstype, const char *path, u16 orig_sclass, u32 *sid) argument
[all...]
/linux-master/fs/
H A Dnamespace.c3305 static int do_new_mount(struct path *path, const char *fstype, int sb_flags, argument
3313 if (!fstype)
3316 type = get_fs_type(fstype);
3321 subtype = strchr(fstype, '.');

Completed in 404 milliseconds