You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
466 B
23 lines
466 B
/*
|
|
* fslog internals
|
|
*/
|
|
|
|
/* @fs.sec -- cf53dae646d2c791b55906aa2fb074365c9b6a14 -- */
|
|
|
|
#ifndef _LINUX_FSLOG_H
|
|
#define _LINUX_FSLOG_H
|
|
|
|
int fslog_stlog(const char *fmt, ...);
|
|
|
|
/* deprecated function */
|
|
#define SE_LOG(fmt, ...)
|
|
#define fslog_selog(fmt, ...)
|
|
#define fslog_kmsg_selog(filter, lines)
|
|
|
|
#ifdef CONFIG_PROC_STLOG
|
|
#define ST_LOG(fmt, ...) fslog_stlog(fmt, ##__VA_ARGS__)
|
|
#else
|
|
#define ST_LOG(fmt, ...)
|
|
#endif /* CONFIG_PROC_STLOG */
|
|
|
|
#endif /* _FSLOG_H */
|
|
|