mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-04-11 04:18:01 +07:00

Allow mounting of the BPF filesystem at /sys/fs/bpf. Signed-off-by: Joe Stringer <joe@ovn.org> Cc: Alexei Starovoitov <ast@fb.com> Cc: Daniel Borkmann <daniel@iogearbox.net> Cc: Wang Nan <wangnan0@huawei.com> Cc: netdev@vger.kernel.org Link: http://lkml.kernel.org/r/20170126212001.14103-6-joe@ovn.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
41 lines
992 B
C
41 lines
992 B
C
#ifndef __API_FS__
|
|
#define __API_FS__
|
|
|
|
#include <stdbool.h>
|
|
#include <unistd.h>
|
|
|
|
/*
|
|
* On most systems <limits.h> would have given us this, but not on some systems
|
|
* (e.g. GNU/Hurd).
|
|
*/
|
|
#ifndef PATH_MAX
|
|
#define PATH_MAX 4096
|
|
#endif
|
|
|
|
#define FS(name) \
|
|
const char *name##__mountpoint(void); \
|
|
const char *name##__mount(void); \
|
|
bool name##__configured(void); \
|
|
|
|
FS(sysfs)
|
|
FS(procfs)
|
|
FS(debugfs)
|
|
FS(tracefs)
|
|
FS(hugetlbfs)
|
|
FS(bpf_fs)
|
|
|
|
#undef FS
|
|
|
|
|
|
int filename__read_int(const char *filename, int *value);
|
|
int filename__read_ull(const char *filename, unsigned long long *value);
|
|
int filename__read_str(const char *filename, char **buf, size_t *sizep);
|
|
|
|
int procfs__read_str(const char *entry, char **buf, size_t *sizep);
|
|
|
|
int sysctl__read_int(const char *sysctl, int *value);
|
|
int sysfs__read_int(const char *entry, int *value);
|
|
int sysfs__read_ull(const char *entry, unsigned long long *value);
|
|
int sysfs__read_str(const char *entry, char **buf, size_t *sizep);
|
|
#endif /* __API_FS__ */
|