diff options
| author | Anton Vorontsov <anton.vorontsov@linaro.org> | 2012-07-20 20:27:54 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-07-21 13:34:00 -0400 |
| commit | 1b499d05eecbe04969516717a8e15afb6ad80689 (patch) | |
| tree | bd76ea04682094e21a4c34e770d818f80bdc3a7f | |
| parent | bc792e612e78a24ae0b30cc5b85f2368379ba4d4 (diff) | |
printk: Remove kdb_syslog_data
The function is no longer needed, so remove it.
Signed-off-by: Anton Vorontsov <anton.vorontsov@linaro.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
| -rw-r--r-- | kernel/debug/kdb/kdb_private.h | 1 | ||||
| -rw-r--r-- | kernel/printk.c | 15 |
2 files changed, 0 insertions, 16 deletions
diff --git a/kernel/debug/kdb/kdb_private.h b/kernel/debug/kdb/kdb_private.h index 47c4e56e513b..392ec6a25844 100644 --- a/kernel/debug/kdb/kdb_private.h +++ b/kernel/debug/kdb/kdb_private.h | |||
| @@ -205,7 +205,6 @@ extern char kdb_grep_string[]; | |||
| 205 | extern int kdb_grep_leading; | 205 | extern int kdb_grep_leading; |
| 206 | extern int kdb_grep_trailing; | 206 | extern int kdb_grep_trailing; |
| 207 | extern char *kdb_cmds[]; | 207 | extern char *kdb_cmds[]; |
| 208 | extern void kdb_syslog_data(char *syslog_data[]); | ||
| 209 | extern unsigned long kdb_task_state_string(const char *); | 208 | extern unsigned long kdb_task_state_string(const char *); |
| 210 | extern char kdb_task_state_char (const struct task_struct *); | 209 | extern char kdb_task_state_char (const struct task_struct *); |
| 211 | extern unsigned long kdb_task_state(const struct task_struct *p, | 210 | extern unsigned long kdb_task_state(const struct task_struct *p, |
diff --git a/kernel/printk.c b/kernel/printk.c index 177fa49357a5..c8129678dfbf 100644 --- a/kernel/printk.c +++ b/kernel/printk.c | |||
| @@ -1192,21 +1192,6 @@ SYSCALL_DEFINE3(syslog, int, type, char __user *, buf, int, len) | |||
| 1192 | return do_syslog(type, buf, len, SYSLOG_FROM_CALL); | 1192 | return do_syslog(type, buf, len, SYSLOG_FROM_CALL); |
| 1193 | } | 1193 | } |
| 1194 | 1194 | ||
| 1195 | #ifdef CONFIG_KGDB_KDB | ||
| 1196 | /* kdb dmesg command needs access to the syslog buffer. do_syslog() | ||
| 1197 | * uses locks so it cannot be used during debugging. Just tell kdb | ||
| 1198 | * where the start and end of the physical and logical logs are. This | ||
| 1199 | * is equivalent to do_syslog(3). | ||
| 1200 | */ | ||
| 1201 | void kdb_syslog_data(char *syslog_data[4]) | ||
| 1202 | { | ||
| 1203 | syslog_data[0] = log_buf; | ||
| 1204 | syslog_data[1] = log_buf + log_buf_len; | ||
| 1205 | syslog_data[2] = log_buf + log_first_idx; | ||
| 1206 | syslog_data[3] = log_buf + log_next_idx; | ||
| 1207 | } | ||
| 1208 | #endif /* CONFIG_KGDB_KDB */ | ||
| 1209 | |||
| 1210 | static bool __read_mostly ignore_loglevel; | 1195 | static bool __read_mostly ignore_loglevel; |
| 1211 | 1196 | ||
| 1212 | static int __init ignore_loglevel_setup(char *str) | 1197 | static int __init ignore_loglevel_setup(char *str) |
