diff options
author | Jim Keniston <jkenisto@us.ibm.com> | 2011-07-25 03:54:50 -0400 |
---|---|---|
committer | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2011-09-19 19:19:46 -0400 |
commit | 6c493685f1b209dd4ae41eb52c818cf12da20def (patch) | |
tree | e524f18276205cecb1552baca95cb5dc7d981b2b /arch/powerpc/include/asm/rtas.h | |
parent | 7392769365f32c82340f184f93408b12dc3da4dc (diff) |
powerpc/nvram: Add compression to fit more oops output into NVRAM
Capture more than twice as much text from the printk buffer, and
compress it to fit it in the lnx,oops-log NVRAM partition. You
can view the compressed text using the new (as of July 20) --unzip
option of the nvram command in the powerpc-utils package.
[BenH: Added select of ZLIB_DEFLATE]
Signed-off-by: Jim Keniston <jkenisto@us.ibm.com>
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc/include/asm/rtas.h')
-rw-r--r-- | arch/powerpc/include/asm/rtas.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/arch/powerpc/include/asm/rtas.h b/arch/powerpc/include/asm/rtas.h index 58625d1e7802..41f69ae79d4e 100644 --- a/arch/powerpc/include/asm/rtas.h +++ b/arch/powerpc/include/asm/rtas.h | |||
@@ -249,10 +249,12 @@ extern void pSeries_log_error(char *buf, unsigned int err_type, int fatal); | |||
249 | #define ERR_FLAG_ALREADY_LOGGED 0x0 | 249 | #define ERR_FLAG_ALREADY_LOGGED 0x0 |
250 | #define ERR_FLAG_BOOT 0x1 /* log was pulled from NVRAM on boot */ | 250 | #define ERR_FLAG_BOOT 0x1 /* log was pulled from NVRAM on boot */ |
251 | #define ERR_TYPE_RTAS_LOG 0x2 /* from rtas event-scan */ | 251 | #define ERR_TYPE_RTAS_LOG 0x2 /* from rtas event-scan */ |
252 | #define ERR_TYPE_KERNEL_PANIC 0x4 /* from panic() */ | 252 | #define ERR_TYPE_KERNEL_PANIC 0x4 /* from die()/panic() */ |
253 | #define ERR_TYPE_KERNEL_PANIC_GZ 0x8 /* ditto, compressed */ | ||
253 | 254 | ||
254 | /* All the types and not flags */ | 255 | /* All the types and not flags */ |
255 | #define ERR_TYPE_MASK (ERR_TYPE_RTAS_LOG | ERR_TYPE_KERNEL_PANIC) | 256 | #define ERR_TYPE_MASK \ |
257 | (ERR_TYPE_RTAS_LOG | ERR_TYPE_KERNEL_PANIC | ERR_TYPE_KERNEL_PANIC_GZ) | ||
256 | 258 | ||
257 | #define RTAS_DEBUG KERN_DEBUG "RTAS: " | 259 | #define RTAS_DEBUG KERN_DEBUG "RTAS: " |
258 | 260 | ||