Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 1 | #ifndef __KERNEL_PRINTK__ |
| 2 | #define __KERNEL_PRINTK__ |
| 3 | |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 4 | #include <linux/init.h> |
Joe Perches | 314ba35 | 2012-07-30 14:40:11 -0700 | [diff] [blame] | 5 | #include <linux/kern_levels.h> |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 6 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 7 | extern const char linux_banner[]; |
| 8 | extern const char linux_proc_banner[]; |
| 9 | |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 10 | static inline int printk_get_level(const char *buffer) |
| 11 | { |
Joe Perches | 04d2c8c | 2012-07-30 14:40:17 -0700 | [diff] [blame] | 12 | if (buffer[0] == KERN_SOH_ASCII && buffer[1]) { |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 13 | switch (buffer[1]) { |
| 14 | case '0' ... '7': |
| 15 | case 'd': /* KERN_DEFAULT */ |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 16 | return buffer[1]; |
| 17 | } |
| 18 | } |
| 19 | return 0; |
| 20 | } |
| 21 | |
| 22 | static inline const char *printk_skip_level(const char *buffer) |
| 23 | { |
| 24 | if (printk_get_level(buffer)) { |
| 25 | switch (buffer[1]) { |
| 26 | case '0' ... '7': |
| 27 | case 'd': /* KERN_DEFAULT */ |
Joe Perches | 04d2c8c | 2012-07-30 14:40:17 -0700 | [diff] [blame] | 28 | return buffer + 2; |
Joe Perches | acc8fa41 | 2012-07-30 14:40:09 -0700 | [diff] [blame] | 29 | } |
| 30 | } |
| 31 | return buffer; |
| 32 | } |
| 33 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 34 | extern int console_printk[]; |
| 35 | |
| 36 | #define console_loglevel (console_printk[0]) |
| 37 | #define default_message_loglevel (console_printk[1]) |
| 38 | #define minimum_console_loglevel (console_printk[2]) |
| 39 | #define default_console_loglevel (console_printk[3]) |
| 40 | |
Joe Perches | a9747cc | 2011-01-12 16:59:43 -0800 | [diff] [blame] | 41 | static inline void console_silent(void) |
| 42 | { |
| 43 | console_loglevel = 0; |
| 44 | } |
| 45 | |
| 46 | static inline void console_verbose(void) |
| 47 | { |
| 48 | if (console_loglevel) |
| 49 | console_loglevel = 15; |
| 50 | } |
| 51 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 52 | struct va_format { |
| 53 | const char *fmt; |
| 54 | va_list *va; |
| 55 | }; |
| 56 | |
| 57 | /* |
| 58 | * FW_BUG |
| 59 | * Add this to a message where you are sure the firmware is buggy or behaves |
| 60 | * really stupid or out of spec. Be aware that the responsible BIOS developer |
| 61 | * should be able to fix this issue or at least get a concrete idea of the |
| 62 | * problem by reading your message without the need of looking at the kernel |
| 63 | * code. |
| 64 | * |
| 65 | * Use it for definite and high priority BIOS bugs. |
| 66 | * |
| 67 | * FW_WARN |
| 68 | * Use it for not that clear (e.g. could the kernel messed up things already?) |
| 69 | * and medium priority BIOS bugs. |
| 70 | * |
| 71 | * FW_INFO |
| 72 | * Use this one if you want to tell the user or vendor about something |
| 73 | * suspicious, but generally harmless related to the firmware. |
| 74 | * |
| 75 | * Use it for information or very low priority BIOS bugs. |
| 76 | */ |
| 77 | #define FW_BUG "[Firmware Bug]: " |
| 78 | #define FW_WARN "[Firmware Warn]: " |
| 79 | #define FW_INFO "[Firmware Info]: " |
| 80 | |
| 81 | /* |
| 82 | * HW_ERR |
| 83 | * Add this to a message for hardware errors, so that user can report |
| 84 | * it to hardware vendor instead of LKML or software vendor. |
| 85 | */ |
| 86 | #define HW_ERR "[Hardware Error]: " |
| 87 | |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 88 | /* |
| 89 | * Dummy printk for disabled debugging statements to use whilst maintaining |
| 90 | * gcc's format and side-effect checking. |
| 91 | */ |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 92 | static inline __printf(1, 2) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 93 | int no_printk(const char *fmt, ...) |
| 94 | { |
| 95 | return 0; |
| 96 | } |
| 97 | |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 98 | extern asmlinkage __printf(1, 2) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 99 | void early_printk(const char *fmt, ...); |
| 100 | |
| 101 | extern int printk_needs_cpu(int cpu); |
| 102 | extern void printk_tick(void); |
| 103 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 104 | #ifdef CONFIG_PRINTK |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 105 | asmlinkage __printf(5, 0) |
| 106 | int vprintk_emit(int facility, int level, |
| 107 | const char *dict, size_t dictlen, |
| 108 | const char *fmt, va_list args); |
| 109 | |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 110 | asmlinkage __printf(1, 0) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 111 | int vprintk(const char *fmt, va_list args); |
Kay Sievers | 7ff9554 | 2012-05-03 02:29:13 +0200 | [diff] [blame] | 112 | |
| 113 | asmlinkage __printf(5, 6) __cold |
| 114 | asmlinkage int printk_emit(int facility, int level, |
| 115 | const char *dict, size_t dictlen, |
| 116 | const char *fmt, ...); |
| 117 | |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 118 | asmlinkage __printf(1, 2) __cold |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 119 | int printk(const char *fmt, ...); |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 120 | |
| 121 | /* |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 122 | * Special printk facility for scheduler use only, _DO_NOT_USE_ ! |
| 123 | */ |
| 124 | __printf(1, 2) __cold int printk_sched(const char *fmt, ...); |
| 125 | |
| 126 | /* |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 127 | * Please don't use printk_ratelimit(), because it shares ratelimiting state |
| 128 | * with all other unrelated printk_ratelimit() callsites. Instead use |
| 129 | * printk_ratelimited() or plain old __ratelimit(). |
| 130 | */ |
| 131 | extern int __printk_ratelimit(const char *func); |
| 132 | #define printk_ratelimit() __printk_ratelimit(__func__) |
| 133 | extern bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 134 | unsigned int interval_msec); |
| 135 | |
| 136 | extern int printk_delay_msec; |
| 137 | extern int dmesg_restrict; |
Dan Rosenberg | 455cd5a | 2011-01-12 16:59:41 -0800 | [diff] [blame] | 138 | extern int kptr_restrict; |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 139 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 140 | void log_buf_kexec_setup(void); |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 141 | void __init setup_log_buf(int early); |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 142 | #else |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 143 | static inline __printf(1, 0) |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 144 | int vprintk(const char *s, va_list args) |
| 145 | { |
| 146 | return 0; |
| 147 | } |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 148 | static inline __printf(1, 2) __cold |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 149 | int printk(const char *s, ...) |
| 150 | { |
| 151 | return 0; |
| 152 | } |
Peter Zijlstra | 3ccf3e8 | 2012-02-27 10:47:00 +0100 | [diff] [blame] | 153 | static inline __printf(1, 2) __cold |
| 154 | int printk_sched(const char *s, ...) |
| 155 | { |
| 156 | return 0; |
| 157 | } |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 158 | static inline int printk_ratelimit(void) |
| 159 | { |
| 160 | return 0; |
| 161 | } |
| 162 | static inline bool printk_timed_ratelimit(unsigned long *caller_jiffies, |
| 163 | unsigned int interval_msec) |
| 164 | { |
| 165 | return false; |
| 166 | } |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 167 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 168 | static inline void log_buf_kexec_setup(void) |
| 169 | { |
| 170 | } |
Mike Travis | 162a7e7 | 2011-05-24 17:13:20 -0700 | [diff] [blame] | 171 | |
| 172 | static inline void setup_log_buf(int early) |
| 173 | { |
| 174 | } |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 175 | #endif |
| 176 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 177 | extern void dump_stack(void) __cold; |
| 178 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 179 | #ifndef pr_fmt |
| 180 | #define pr_fmt(fmt) fmt |
| 181 | #endif |
| 182 | |
| 183 | #define pr_emerg(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 184 | printk(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 185 | #define pr_alert(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 186 | printk(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 187 | #define pr_crit(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 188 | printk(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 189 | #define pr_err(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 190 | printk(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 191 | #define pr_warning(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 192 | printk(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 193 | #define pr_warn pr_warning |
| 194 | #define pr_notice(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 195 | printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 196 | #define pr_info(fmt, ...) \ |
Joe Perches | a3f938b | 2011-01-12 16:59:48 -0800 | [diff] [blame] | 197 | printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 198 | #define pr_cont(fmt, ...) \ |
| 199 | printk(KERN_CONT fmt, ##__VA_ARGS__) |
| 200 | |
| 201 | /* pr_devel() should produce zero code unless DEBUG is defined */ |
| 202 | #ifdef DEBUG |
| 203 | #define pr_devel(fmt, ...) \ |
| 204 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 205 | #else |
| 206 | #define pr_devel(fmt, ...) \ |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 207 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 208 | #endif |
| 209 | |
| 210 | /* If you are writing a driver, please use dev_dbg instead */ |
Jim Cromie | b558c96 | 2011-12-19 17:11:18 -0500 | [diff] [blame] | 211 | #if defined(CONFIG_DYNAMIC_DEBUG) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 212 | /* dynamic_pr_debug() uses pr_fmt() internally so we don't need it here */ |
| 213 | #define pr_debug(fmt, ...) \ |
| 214 | dynamic_pr_debug(fmt, ##__VA_ARGS__) |
Jim Cromie | b558c96 | 2011-12-19 17:11:18 -0500 | [diff] [blame] | 215 | #elif defined(DEBUG) |
| 216 | #define pr_debug(fmt, ...) \ |
| 217 | printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 218 | #else |
| 219 | #define pr_debug(fmt, ...) \ |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 220 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 221 | #endif |
| 222 | |
| 223 | /* |
Joe Perches | 16cb839 | 2011-01-12 16:59:46 -0800 | [diff] [blame] | 224 | * Print a one-time message (analogous to WARN_ONCE() et al): |
| 225 | */ |
| 226 | |
| 227 | #ifdef CONFIG_PRINTK |
| 228 | #define printk_once(fmt, ...) \ |
| 229 | ({ \ |
| 230 | static bool __print_once; \ |
| 231 | \ |
| 232 | if (!__print_once) { \ |
| 233 | __print_once = true; \ |
| 234 | printk(fmt, ##__VA_ARGS__); \ |
| 235 | } \ |
| 236 | }) |
| 237 | #else |
| 238 | #define printk_once(fmt, ...) \ |
| 239 | no_printk(fmt, ##__VA_ARGS__) |
| 240 | #endif |
| 241 | |
| 242 | #define pr_emerg_once(fmt, ...) \ |
| 243 | printk_once(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
| 244 | #define pr_alert_once(fmt, ...) \ |
| 245 | printk_once(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
| 246 | #define pr_crit_once(fmt, ...) \ |
| 247 | printk_once(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
| 248 | #define pr_err_once(fmt, ...) \ |
| 249 | printk_once(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
| 250 | #define pr_warn_once(fmt, ...) \ |
| 251 | printk_once(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
| 252 | #define pr_notice_once(fmt, ...) \ |
| 253 | printk_once(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
| 254 | #define pr_info_once(fmt, ...) \ |
| 255 | printk_once(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
| 256 | #define pr_cont_once(fmt, ...) \ |
| 257 | printk_once(KERN_CONT pr_fmt(fmt), ##__VA_ARGS__) |
| 258 | /* If you are writing a driver, please use dev_dbg instead */ |
| 259 | #if defined(DEBUG) |
| 260 | #define pr_debug_once(fmt, ...) \ |
| 261 | printk_once(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 262 | #else |
| 263 | #define pr_debug_once(fmt, ...) \ |
| 264 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 265 | #endif |
| 266 | |
| 267 | /* |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 268 | * ratelimited messages with local ratelimit_state, |
| 269 | * no local ratelimit_state used in the !PRINTK case |
| 270 | */ |
| 271 | #ifdef CONFIG_PRINTK |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 272 | #define printk_ratelimited(fmt, ...) \ |
| 273 | ({ \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 274 | static DEFINE_RATELIMIT_STATE(_rs, \ |
| 275 | DEFAULT_RATELIMIT_INTERVAL, \ |
| 276 | DEFAULT_RATELIMIT_BURST); \ |
| 277 | \ |
| 278 | if (__ratelimit(&_rs)) \ |
| 279 | printk(fmt, ##__VA_ARGS__); \ |
| 280 | }) |
| 281 | #else |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 282 | #define printk_ratelimited(fmt, ...) \ |
| 283 | no_printk(fmt, ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 284 | #endif |
| 285 | |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 286 | #define pr_emerg_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 287 | printk_ratelimited(KERN_EMERG pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 288 | #define pr_alert_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 289 | printk_ratelimited(KERN_ALERT pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 290 | #define pr_crit_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 291 | printk_ratelimited(KERN_CRIT pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 292 | #define pr_err_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 293 | printk_ratelimited(KERN_ERR pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 294 | #define pr_warn_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 295 | printk_ratelimited(KERN_WARNING pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 296 | #define pr_notice_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 297 | printk_ratelimited(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 298 | #define pr_info_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 299 | printk_ratelimited(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
| 300 | /* no pr_cont_ratelimited, don't do that... */ |
| 301 | /* If you are writing a driver, please use dev_dbg instead */ |
| 302 | #if defined(DEBUG) |
Joe Perches | 6ec42a56 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 303 | #define pr_debug_ratelimited(fmt, ...) \ |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 304 | printk_ratelimited(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
| 305 | #else |
| 306 | #define pr_debug_ratelimited(fmt, ...) \ |
Joe Perches | 5264f2f | 2011-01-12 16:59:45 -0800 | [diff] [blame] | 307 | no_printk(KERN_DEBUG pr_fmt(fmt), ##__VA_ARGS__) |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 308 | #endif |
| 309 | |
Kay Sievers | e11fea9 | 2012-05-03 02:29:41 +0200 | [diff] [blame] | 310 | extern const struct file_operations kmsg_fops; |
| 311 | |
Joe Perches | ac83ed6 | 2011-01-12 16:59:47 -0800 | [diff] [blame] | 312 | enum { |
| 313 | DUMP_PREFIX_NONE, |
| 314 | DUMP_PREFIX_ADDRESS, |
| 315 | DUMP_PREFIX_OFFSET |
| 316 | }; |
| 317 | extern void hex_dump_to_buffer(const void *buf, size_t len, |
| 318 | int rowsize, int groupsize, |
| 319 | char *linebuf, size_t linebuflen, bool ascii); |
| 320 | #ifdef CONFIG_PRINTK |
| 321 | extern void print_hex_dump(const char *level, const char *prefix_str, |
| 322 | int prefix_type, int rowsize, int groupsize, |
| 323 | const void *buf, size_t len, bool ascii); |
| 324 | extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
| 325 | const void *buf, size_t len); |
| 326 | #else |
| 327 | static inline void print_hex_dump(const char *level, const char *prefix_str, |
| 328 | int prefix_type, int rowsize, int groupsize, |
| 329 | const void *buf, size_t len, bool ascii) |
| 330 | { |
| 331 | } |
| 332 | static inline void print_hex_dump_bytes(const char *prefix_str, int prefix_type, |
| 333 | const void *buf, size_t len) |
| 334 | { |
| 335 | } |
| 336 | |
| 337 | #endif |
| 338 | |
Linus Torvalds | 968ab18 | 2010-11-15 13:37:37 -0800 | [diff] [blame] | 339 | #endif |