#include <linux/stddef.h>
#include <linux/kernel.h>
#include <linux/errno.h>
#include <linux/slab.h>
#include <linux/ctype.h>
#include <linux/string.h>
#include <linux/sysctl.h>
#include <asm/uaccess.h>
#include <linux/module.h>
#include <linux/init.h>
#include <linux/fs.h>
#include <linux/debugfs.h>
#include <asm/debug.h>
Go to the source code of this file.
|
| EXPORT_SYMBOL (debug_raw_view) |
|
| EXPORT_SYMBOL (debug_hex_ascii_view) |
|
| EXPORT_SYMBOL (debug_sprintf_view) |
|
debug_info_t * | debug_register_mode (const char *name, int pages_per_area, int nr_areas, int buf_size, umode_t mode, uid_t uid, gid_t gid) |
|
| EXPORT_SYMBOL (debug_register_mode) |
|
debug_info_t * | debug_register (const char *name, int pages_per_area, int nr_areas, int buf_size) |
|
| EXPORT_SYMBOL (debug_register) |
|
void | debug_unregister (debug_info_t *id) |
|
| EXPORT_SYMBOL (debug_unregister) |
|
void | debug_set_level (debug_info_t *id, int new_level) |
|
| EXPORT_SYMBOL (debug_set_level) |
|
void | debug_stop_all (void) |
|
| EXPORT_SYMBOL (debug_stop_all) |
|
void | debug_set_critical (void) |
|
debug_entry_t * | debug_event_common (debug_info_t *id, int level, const void *buf, int len) |
|
| EXPORT_SYMBOL (debug_event_common) |
|
debug_entry_t * | debug_exception_common (debug_info_t *id, int level, const void *buf, int len) |
|
| EXPORT_SYMBOL (debug_exception_common) |
|
debug_entry_t * | debug_sprintf_event (debug_info_t *id, int level, char *string,...) |
|
| EXPORT_SYMBOL (debug_sprintf_event) |
|
debug_entry_t * | debug_sprintf_exception (debug_info_t *id, int level, char *string,...) |
|
| EXPORT_SYMBOL (debug_sprintf_exception) |
|
int | debug_register_view (debug_info_t *id, struct debug_view *view) |
|
| EXPORT_SYMBOL (debug_register_view) |
|
int | debug_unregister_view (debug_info_t *id, struct debug_view *view) |
|
| EXPORT_SYMBOL (debug_unregister_view) |
|
int | debug_dflt_header_fn (debug_info_t *id, struct debug_view *view, int area, debug_entry_t *entry, char *out_buf) |
|
| EXPORT_SYMBOL (debug_dflt_header_fn) |
|
| postcore_initcall (debug_init) |
|
#define ALL_AREAS 0 /* copy all debug areas */ |
#define CTL_S390DBF_ACTIVE 5679 |
#define CTL_S390DBF_STOPPABLE 5678 |
#define DEBUG_PROLOG_ENTRY -1 |
#define DEBUG_SPRINTF_MAX_ARGS 10 |
#define KMSG_COMPONENT "s390dbf" |
#define NO_AREAS 1 /* copy no debug areas */ |
postcore_initcall |
( |
debug_init |
| ) |
|
Initial value:= {
"hex_ascii",
&debug_hex_ascii_format_fn,
NULL
}
Definition at line 115 of file debug.c.
Initial value:= {
"raw",
&debug_raw_header_fn,
&debug_raw_format_fn,
NULL
}
Definition at line 105 of file debug.c.
Initial value:
Definition at line 152 of file debug.c.