Searched defs:sfs (Results 1 - 5 of 5) sorted by relevance

/systemd/src/shared/
H A Dmachine-pool.c61 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/boot/
H A Dbootctl.c50 struct statfs sfs; local
57 if (statfs(p, &sfs) < 0)
60 if (sfs.f_type != 0x4d44) {
/systemd/src/gpt-auto-generator/
H A Dgpt-auto-generator.c814 struct statfs sfs; local
831 if (statfs(path, &sfs) < 0)
834 if (F_TYPE_EQUAL(sfs.f_type, BTRFS_SUPER_MAGIC))
/systemd/src/basic/
H A Dbtrfs-util.c110 struct statfs sfs; local
114 if (fstatfs(fd, &sfs) < 0)
117 return F_TYPE_EQUAL(sfs.f_type, BTRFS_SUPER_MAGIC);
/systemd/src/journal/
H A Dsd-journal.c1180 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);

Completed in 36 milliseconds