Home
last modified time | relevance | path

Searched refs:F_TYPE_EQUAL (Results 1 – 6 of 6) sorted by relevance

/systemd-251/src/nspawn/
Dnspawn-patch-uid.c269 return F_TYPE_EQUAL(sfs->f_type, BINFMTFS_MAGIC) || in is_fs_fully_userns_compatible()
270 F_TYPE_EQUAL(sfs->f_type, CGROUP_SUPER_MAGIC) || in is_fs_fully_userns_compatible()
271 F_TYPE_EQUAL(sfs->f_type, CGROUP2_SUPER_MAGIC) || in is_fs_fully_userns_compatible()
272 F_TYPE_EQUAL(sfs->f_type, DEBUGFS_MAGIC) || in is_fs_fully_userns_compatible()
273 F_TYPE_EQUAL(sfs->f_type, DEVPTS_SUPER_MAGIC) || in is_fs_fully_userns_compatible()
274 F_TYPE_EQUAL(sfs->f_type, EFIVARFS_MAGIC) || in is_fs_fully_userns_compatible()
275 F_TYPE_EQUAL(sfs->f_type, HUGETLBFS_MAGIC) || in is_fs_fully_userns_compatible()
276 F_TYPE_EQUAL(sfs->f_type, MQUEUE_MAGIC) || in is_fs_fully_userns_compatible()
277 F_TYPE_EQUAL(sfs->f_type, PROC_SUPER_MAGIC) || in is_fs_fully_userns_compatible()
278 F_TYPE_EQUAL(sfs->f_type, PSTOREFS_MAGIC) || in is_fs_fully_userns_compatible()
[all …]
/systemd-251/src/shared/
Dmachine-pool.c22 return F_TYPE_EQUAL(sfs.f_type, BTRFS_SUPER_MAGIC); in check_btrfs()
Dfind-esp.c335 if (!F_TYPE_EQUAL(sfs.f_type, MSDOS_SUPER_MAGIC)) in verify_esp()
/systemd-251/src/basic/
Dcgroup-util.c2108 if (F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC)) { in cg_unified_cached()
2111 } else if (F_TYPE_EQUAL(fs.f_type, TMPFS_MAGIC)) { in cg_unified_cached()
2113 F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC)) { in cg_unified_cached()
2127 if (F_TYPE_EQUAL(fs.f_type, CGROUP2_SUPER_MAGIC)) { in cg_unified_cached()
2131 } else if (F_TYPE_EQUAL(fs.f_type, CGROUP_SUPER_MAGIC)) { in cg_unified_cached()
2140 } else if (F_TYPE_EQUAL(fs.f_type, SYSFS_MAGIC)) { in cg_unified_cached()
Dstat-util.h58 #define F_TYPE_EQUAL(a, b) (a == (typeof(a)) b) macro
Dstat-util.c212 return F_TYPE_EQUAL(s->f_type, magic_value); in is_fs_type()