diff options
| author | Steven Rostedt (Red Hat) <rostedt@goodmis.org> | 2014-06-20 17:38:01 -0400 |
|---|---|---|
| committer | Steven Rostedt <rostedt@goodmis.org> | 2014-07-01 07:13:36 -0400 |
| commit | 36aabfff50b6a03bcfd2c3cfbd7b83eb0a9ce0c1 (patch) | |
| tree | a8e9df6eb61e93288596fcd3e60ba138214118a2 /include/linux | |
| parent | 12306276fabcb746a14979e96f43a13c724dec49 (diff) | |
tracing: Clean up trace_seq.c
For using trace_seq_*() functions in NMI context, I posted a patch to move
it to the lib/ directory. This caused Andrew Morton to take a look at the code.
He went through and gave a lot of comments about missing kernel doc,
inconsistent types for the save variable, mix match of EXPORT_SYMBOL_GPL()
and EXPORT_SYMBOL() as well as missing EXPORT_SYMBOL*()s. There were
a few comments about the way variables were being compared (int vs uint).
All these were good review comments and should be implemented regardless of
if trace_seq.c should be moved to lib/ or not.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/trace_seq.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/linux/trace_seq.h b/include/linux/trace_seq.h index 66ea365acf01..1f05317f51c4 100644 --- a/include/linux/trace_seq.h +++ b/include/linux/trace_seq.h | |||
| @@ -38,14 +38,14 @@ int trace_seq_vprintf(struct trace_seq *s, const char *fmt, va_list args); | |||
| 38 | extern int | 38 | extern int |
| 39 | trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); | 39 | trace_seq_bprintf(struct trace_seq *s, const char *fmt, const u32 *binary); |
| 40 | extern int trace_print_seq(struct seq_file *m, struct trace_seq *s); | 40 | extern int trace_print_seq(struct seq_file *m, struct trace_seq *s); |
| 41 | extern ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, | 41 | extern int trace_seq_to_user(struct trace_seq *s, char __user *ubuf, |
| 42 | size_t cnt); | 42 | int cnt); |
| 43 | extern int trace_seq_puts(struct trace_seq *s, const char *str); | 43 | extern int trace_seq_puts(struct trace_seq *s, const char *str); |
| 44 | extern int trace_seq_putc(struct trace_seq *s, unsigned char c); | 44 | extern int trace_seq_putc(struct trace_seq *s, unsigned char c); |
| 45 | extern int trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len); | 45 | extern int trace_seq_putmem(struct trace_seq *s, const void *mem, unsigned int len); |
| 46 | extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, | 46 | extern int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, |
| 47 | size_t len); | 47 | unsigned int len); |
| 48 | extern void *trace_seq_reserve(struct trace_seq *s, size_t len); | 48 | extern void *trace_seq_reserve(struct trace_seq *s, unsigned int len); |
| 49 | extern int trace_seq_path(struct trace_seq *s, const struct path *path); | 49 | extern int trace_seq_path(struct trace_seq *s, const struct path *path); |
| 50 | 50 | ||
| 51 | extern int trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, | 51 | extern int trace_seq_bitmask(struct trace_seq *s, const unsigned long *maskp, |
| @@ -73,8 +73,8 @@ static inline int trace_print_seq(struct seq_file *m, struct trace_seq *s) | |||
| 73 | { | 73 | { |
| 74 | return 0; | 74 | return 0; |
| 75 | } | 75 | } |
| 76 | static inline ssize_t trace_seq_to_user(struct trace_seq *s, char __user *ubuf, | 76 | static inline int trace_seq_to_user(struct trace_seq *s, char __user *ubuf, |
| 77 | size_t cnt) | 77 | int cnt) |
| 78 | { | 78 | { |
| 79 | return 0; | 79 | return 0; |
| 80 | } | 80 | } |
| @@ -87,16 +87,16 @@ static inline int trace_seq_putc(struct trace_seq *s, unsigned char c) | |||
| 87 | return 0; | 87 | return 0; |
| 88 | } | 88 | } |
| 89 | static inline int | 89 | static inline int |
| 90 | trace_seq_putmem(struct trace_seq *s, const void *mem, size_t len) | 90 | trace_seq_putmem(struct trace_seq *s, const void *mem, unsigned int len) |
| 91 | { | 91 | { |
| 92 | return 0; | 92 | return 0; |
| 93 | } | 93 | } |
| 94 | static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, | 94 | static inline int trace_seq_putmem_hex(struct trace_seq *s, const void *mem, |
| 95 | size_t len) | 95 | unsigned int len) |
| 96 | { | 96 | { |
| 97 | return 0; | 97 | return 0; |
| 98 | } | 98 | } |
| 99 | static inline void *trace_seq_reserve(struct trace_seq *s, size_t len) | 99 | static inline void *trace_seq_reserve(struct trace_seq *s, unsigned int len) |
| 100 | { | 100 | { |
| 101 | return NULL; | 101 | return NULL; |
| 102 | } | 102 | } |
