blob: 4a878f735eb013961a0af6867ed6a6596b433018 [file] [log] [blame]
Clark Williamsafe61f62009-11-08 09:01:37 -06001#ifndef __DEBUGFS_H__
2#define __DEBUGFS_H__
3
Arnaldo Carvalho de Meloc168fbf2011-11-16 12:55:59 -02004const char *debugfs_find_mountpoint(void);
5int debugfs_valid_mountpoint(const char *debugfs);
6int debugfs_valid_entry(const char *path);
7char *debugfs_mount(const char *mountpoint);
8int debugfs_umount(void);
Arnaldo Carvalho de Meloebf294b2011-11-16 14:03:07 -02009void debugfs_set_path(const char *mountpoint);
Arnaldo Carvalho de Meloc168fbf2011-11-16 12:55:59 -020010int debugfs_write(const char *entry, const char *value);
11int debugfs_read(const char *entry, char *buffer, size_t size);
12void debugfs_force_cleanup(void);
13int debugfs_make_path(const char *element, char *buffer, int size);
Clark Williamsafe61f62009-11-08 09:01:37 -060014
Arnaldo Carvalho de Meloebf294b2011-11-16 14:03:07 -020015extern char debugfs_mountpoint[];
16extern char tracing_events_path[];
17
Clark Williamsafe61f62009-11-08 09:01:37 -060018#endif /* __DEBUGFS_H__ */