|
@@ -562,9 +562,6 @@ int __trace_bprintk(unsigned long ip, const char *fmt, ...);
|
|
|
extern __printf(2, 3)
|
|
|
int __trace_printk(unsigned long ip, const char *fmt, ...);
|
|
|
|
|
|
-extern int __trace_bputs(unsigned long ip, const char *str);
|
|
|
-extern int __trace_puts(unsigned long ip, const char *str, int size);
|
|
|
-
|
|
|
/**
|
|
|
* trace_puts - write a string into the ftrace buffer
|
|
|
* @str: the string to record
|
|
@@ -600,6 +597,8 @@ extern int __trace_puts(unsigned long ip, const char *str, int size);
|
|
|
else \
|
|
|
__trace_puts(_THIS_IP_, str, strlen(str)); \
|
|
|
})
|
|
|
+extern int __trace_bputs(unsigned long ip, const char *str);
|
|
|
+extern int __trace_puts(unsigned long ip, const char *str, int size);
|
|
|
|
|
|
extern void trace_dump_stack(int skip);
|
|
|
|