Home
last modified time | relevance | path

Searched refs:kdb_printf (Results 1 – 6 of 6) sorted by relevance

/linux/kernel/module/
H A Dkdb.c24 kdb_printf("Module Size modstruct Used by\n"); in kdb_lsmod()
29 kdb_printf("%-20s%8u", mod->name, mod->mem[MOD_TEXT].size); in kdb_lsmod()
30 kdb_printf("/%8u", mod->mem[MOD_RODATA].size); in kdb_lsmod()
31 kdb_printf("/%8u", mod->mem[MOD_RO_AFTER_INIT].size); in kdb_lsmod()
32 kdb_printf("/%8u", mod->mem[MOD_DATA].size); in kdb_lsmod()
34 kdb_printf(" 0x%px ", (void *)mod); in kdb_lsmod()
36 kdb_printf("%4d ", module_refcount(mod)); in kdb_lsmod()
39 kdb_printf(" (Unloading)"); in kdb_lsmod()
41 kdb_printf(" (Loading)"); in kdb_lsmod()
43 kdb_printf(" (Live)"); in kdb_lsmod()
[all …]
/linux/kernel/debug/kdb/
H A Dkdb_io.c38 kdb_printf("%s", buffer); in kgdb_transition_check()
209 kdb_printf("\r%s", prompt); in kdb_position_cursor()
211 kdb_printf("%.*s", (int)(cp - buffer), buffer); in kdb_position_cursor()
264 kdb_printf("%s", buffer); in kdb_read()
275 kdb_printf("\b%s ", cp); in kdb_read()
285 kdb_printf("%s", buffer); in kdb_read()
287 kdb_printf("\n"); in kdb_read()
293 kdb_printf("%s ", cp); in kdb_read()
305 kdb_printf("%s", cp); in kdb_read()
311 kdb_printf("\b"); in kdb_read()
[all …]
H A Dkdb_bt.c86 kdb_printf("Stack traceback for pid %d\n", p->pid); in kdb_bt1()
90 kdb_printf("Enter <q> to end, <cr> or <space> to continue:"); in kdb_bt1()
94 kdb_printf("\n"); in kdb_bt1()
112 kdb_printf("WARNING: no process for cpu %ld\n", cpu); in kdb_bt_cpu()
119 kdb_printf("WARNING: no task for cpu %ld\n", cpu); in kdb_bt_cpu()
171 kdb_printf("No process with pid == %ld found\n", pid); in kdb_bt()
197 kdb_printf("btc: cpu status: "); in kdb_bt()
/linux/kernel/trace/
H A Dtrace_kdb.c36 kdb_printf("Dumping ftrace buffer:\n"); in ftrace_dump_buf()
38 kdb_printf("(skipping %d entries)\n", skip_entries); in ftrace_dump_buf()
60 kdb_printf("---------------------------------\n"); in ftrace_dump_buf()
75 kdb_printf(" (ftrace buffer empty)\n"); in ftrace_dump_buf()
77 kdb_printf("---------------------------------\n"); in ftrace_dump_buf()
/linux/samples/kdb/
H A Dkdb_hello.c24 kdb_printf("Hello %s.\n", argv[1]); in kdb_hello_cmd()
26 kdb_printf("Hello world!\n"); in kdb_hello_cmd()
/linux/include/linux/
H A Dkdb.h178 extern __printf(1, 2) int kdb_printf(const char *, ...);
224 static inline __printf(1, 2) int kdb_printf(const char *fmt, ...) { return 0; } in kdb_printf() function