blob: 866caaa9e2bb36fe363fd6cf672e0bb8096bfb8a [file] [log] [blame]
Joe Perches314ba352012-07-30 14:40:11 -07001#ifndef __KERN_LEVELS_H__
2#define __KERN_LEVELS_H__
3
Joe Perches04d2c8c2012-07-30 14:40:17 -07004#define KERN_SOH "\001" /* ASCII Start Of Header */
5#define KERN_SOH_ASCII '\001'
Joe Perches314ba352012-07-30 14:40:11 -07006
Joe Perches04d2c8c2012-07-30 14:40:17 -07007#define KERN_EMERG KERN_SOH "0" /* system is unusable */
8#define KERN_ALERT KERN_SOH "1" /* action must be taken immediately */
9#define KERN_CRIT KERN_SOH "2" /* critical conditions */
10#define KERN_ERR KERN_SOH "3" /* error conditions */
11#define KERN_WARNING KERN_SOH "4" /* warning conditions */
12#define KERN_NOTICE KERN_SOH "5" /* normal but significant condition */
13#define KERN_INFO KERN_SOH "6" /* informational */
14#define KERN_DEBUG KERN_SOH "7" /* debug-level messages */
15
16#define KERN_DEFAULT KERN_SOH "d" /* the default kernel loglevel */
17
Joe Perches314ba352012-07-30 14:40:11 -070018/*
19 * Annotation for a "continued" line of log printout (only done after a
20 * line that had no enclosing \n). Only to be used by core/arch code
21 * during early bootup (a continued line is not SMP-safe otherwise).
22 */
Joe Perches61e99ab2012-07-30 14:40:21 -070023#define KERN_CONT ""
Joe Perches314ba352012-07-30 14:40:11 -070024
25#endif