Home
last modified time | relevance | path

Searched refs:RTAS_ERROR_LOG_MAX (Results 1 – 5 of 5) sorted by relevance

/linux-2.6.39/arch/powerpc/platforms/pseries/
Dras.c54 static unsigned char ras_log_buf[RTAS_ERROR_LOG_MAX];
57 static char global_mce_data_buf[RTAS_ERROR_LOG_MAX];
245 len = max_t(int, 8+h->extended_log_length, RTAS_ERROR_LOG_MAX); in fwnmi_get_errinfo()
246 memset(global_mce_data_buf, 0, RTAS_ERROR_LOG_MAX); in fwnmi_get_errinfo()
Deeh.c107 static unsigned char slot_errbuf[RTAS_ERROR_LOG_MAX];
1088 if (eeh_error_buf_size > RTAS_ERROR_LOG_MAX) { in eeh_init()
1090 "buffer ! (%d vs %d)", eeh_error_buf_size, RTAS_ERROR_LOG_MAX); in eeh_init()
1091 eeh_error_buf_size = RTAS_ERROR_LOG_MAX; in eeh_init()
/linux-2.6.39/arch/powerpc/kernel/
Drtas.c352 (rtas_error_log_max > RTAS_ERROR_LOG_MAX)) { in rtas_get_error_log_max()
355 rtas_error_log_max = RTAS_ERROR_LOG_MAX; in rtas_get_error_log_max()
362 static char rtas_err_buf[RTAS_ERROR_LOG_MAX];
404 buf = kmalloc(RTAS_ERROR_LOG_MAX, GFP_ATOMIC); in __fetch_rtas_last_error()
407 memcpy(buf, rtas_err_buf, RTAS_ERROR_LOG_MAX); in __fetch_rtas_last_error()
413 #define get_errorlog_buffer() kmalloc(RTAS_ERROR_LOG_MAX, GFP_KERNEL)
Drtasd.c64 static unsigned char logdata[RTAS_ERROR_LOG_MAX];
/linux-2.6.39/arch/powerpc/include/asm/
Drtas.h216 #define RTAS_ERROR_LOG_MAX 2048 macro