mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-21 03:33:59 +08:00
2d729f6a8a
To read either an int or an unsigned long long value from the given file. E.g.: $ cat /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq 3200000 $ ./sysfs__read_ull devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq /sys/devices/system/cpu/cpu0/cpufreq/cpuinfo_max_freq=3200000 $ Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: Borislav Petkov <bp@suse.de> Cc: David Ahern <dsahern@gmail.com> Cc: Frederic Weisbecker <fweisbec@gmail.com> Cc: Jiri Olsa <jolsa@redhat.com> Cc: Kan Liang <kan.liang@intel.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Stephane Eranian <eranian@google.com> Cc: Wang Nan <wangnan0@huawei.com> Link: http://lkml.kernel.org/n/tip-4a12m4d5k8m4qgc1vguocvei@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
34 lines
738 B
C
34 lines
738 B
C
#ifndef __API_FS__
|
|
#define __API_FS__
|
|
|
|
#include <stdbool.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)
|
|
|
|
#undef FS
|
|
|
|
|
|
int filename__read_int(const char *filename, int *value);
|
|
int filename__read_ull(const char *filename, unsigned long long *value);
|
|
|
|
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);
|
|
#endif /* __API_FS__ */
|