Contributors: 10
| Author |
Tokens |
Token Proportion |
Commits |
Commit Proportion |
| Jiri Olsa |
103 |
39.16% |
7 |
36.84% |
| Arnaldo Carvalho de Melo |
87 |
33.08% |
4 |
21.05% |
| Kan Liang |
24 |
9.13% |
1 |
5.26% |
| Namhyung Kim |
16 |
6.08% |
1 |
5.26% |
| Alexander Shishkin |
13 |
4.94% |
1 |
5.26% |
| Irina Tirdea |
6 |
2.28% |
1 |
5.26% |
| Borislav Petkov |
5 |
1.90% |
1 |
5.26% |
| Joe Stringer |
4 |
1.52% |
1 |
5.26% |
| Wang Nan |
4 |
1.52% |
1 |
5.26% |
| Greg Kroah-Hartman |
1 |
0.38% |
1 |
5.26% |
| Total |
263 |
|
19 |
|
/* SPDX-License-Identifier: GPL-2.0 */
#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 cgroupfs_find_mountpoint(char *buf, size_t maxlen, const char *subsys);
int filename__read_int(const char *filename, int *value);
int filename__read_ull(const char *filename, unsigned long long *value);
int filename__read_xll(const char *filename, unsigned long long *value);
int filename__read_str(const char *filename, char **buf, size_t *sizep);
int filename__write_int(const char *filename, int value);
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_xll(const char *entry, unsigned long long *value);
int sysfs__read_str(const char *entry, char **buf, size_t *sizep);
int sysfs__read_bool(const char *entry, bool *value);
int sysfs__write_int(const char *entry, int value);
#endif /* __API_FS__ */