Searched refs:sfs (Results 1 - 5 of 5) sorted by relevance
/systemd/src/shared/ |
H A D | machine-pool.c | 61 struct statfs sfs; local 63 if (statfs("/var/lib/machines", &sfs) < 0) { 67 if (statfs("/var/lib", &sfs) < 0) 71 return F_TYPE_EQUAL(sfs.f_type, BTRFS_SUPER_MAGIC);
|
/systemd/src/gpt-auto-generator/ |
H A D | gpt-auto-generator.c | 814 struct statfs sfs; local 831 if (statfs(path, &sfs) < 0) 834 if (F_TYPE_EQUAL(sfs.f_type, BTRFS_SUPER_MAGIC))
|
/systemd/src/boot/ |
H A D | bootctl.c | 50 struct statfs sfs; local 57 if (statfs(p, &sfs) < 0) 60 if (sfs.f_type != 0x4d44) {
|
/systemd/src/journal/ |
H A D | sd-journal.c | 1180 struct statfs sfs; local 1187 if (fstatfs(fd, &sfs) < 0) 1191 F_TYPE_EQUAL(sfs.f_type, CIFS_MAGIC_NUMBER) || 1192 F_TYPE_EQUAL(sfs.f_type, CODA_SUPER_MAGIC) || 1193 F_TYPE_EQUAL(sfs.f_type, NCP_SUPER_MAGIC) || 1194 F_TYPE_EQUAL(sfs.f_type, NFS_SUPER_MAGIC) || 1195 F_TYPE_EQUAL(sfs.f_type, SMB_SUPER_MAGIC);
|
/systemd/src/basic/ |
H A D | btrfs-util.c | 110 struct statfs sfs; local 114 if (fstatfs(fd, &sfs) < 0) 117 return F_TYPE_EQUAL(sfs.f_type, BTRFS_SUPER_MAGIC);
|
Completed in 412 milliseconds