Searched refs:st_fs (Results 1 - 5 of 5) sorted by relevance

/linux-master/tools/bpf/bpftool/
H A Dtracelog.c29 struct statfs st_fs; local
31 if (statfs(mnt, &st_fs) < 0)
33 if ((unsigned long)st_fs.f_type != magic)
H A Dcommon.c73 struct statfs st_fs; local
75 if (statfs(path, &st_fs) < 0)
78 return (unsigned long)st_fs.f_type == BPF_FS_MAGIC;
H A Dfeature.c56 struct statfs st_fs; local
58 if (statfs("/proc", &st_fs) < 0)
60 if ((unsigned long)st_fs.f_type != PROC_SUPER_MAGIC)
/linux-master/tools/lib/api/fs/
H A Dfs.c179 struct statfs st_fs; local
181 if (statfs(fs, &st_fs) < 0)
183 else if ((long)st_fs.f_type != magic)
/linux-master/tools/lib/bpf/
H A Dlibbpf.c8479 struct statfs st_fs; local
8491 if (statfs(dir, &st_fs)) {
8498 if (!err && st_fs.f_type != BPF_FS_MAGIC) {

Completed in 180 milliseconds