Home
last modified time | relevance | path

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

/Linux-v6.1/tools/bpf/bpftool/
Dtracelog.c29 struct statfs st_fs; in validate_tracefs_mnt() local
31 if (statfs(mnt, &st_fs) < 0) in validate_tracefs_mnt()
33 if ((unsigned long)st_fs.f_type != magic) in validate_tracefs_mnt()
Dfeature.c56 struct statfs st_fs; in check_procfs() local
58 if (statfs("/proc", &st_fs) < 0) in check_procfs()
60 if ((unsigned long)st_fs.f_type != PROC_SUPER_MAGIC) in check_procfs()
Dcommon.c71 struct statfs st_fs; in is_bpffs() local
73 if (statfs(path, &st_fs) < 0) in is_bpffs()
76 return (unsigned long)st_fs.f_type == BPF_FS_MAGIC; in is_bpffs()
/Linux-v6.1/tools/lib/api/fs/
Dfs.c174 struct statfs st_fs; in fs__valid_mount() local
176 if (statfs(fs, &st_fs) < 0) in fs__valid_mount()
178 else if ((long)st_fs.f_type != magic) in fs__valid_mount()
/Linux-v6.1/tools/lib/bpf/
Dlibbpf.c7749 struct statfs st_fs; in check_path() local
7761 if (statfs(dir, &st_fs)) { in check_path()
7768 if (!err && st_fs.f_type != BPF_FS_MAGIC) { in check_path()