Home
last modified time | relevance | path

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

/linux/arch/powerpc/kernel/
H A Drtas.c973 static u32 rtas_error_log_max __ro_after_init = RTAS_ERROR_LOG_MAX;
992 propname, RTAS_ERROR_LOG_MAX); in init_error_log_max()
993 max = RTAS_ERROR_LOG_MAX; in init_error_log_max()
996 if (max > RTAS_ERROR_LOG_MAX) { in init_error_log_max()
998 propname, max, RTAS_ERROR_LOG_MAX); in init_error_log_max()
999 max = RTAS_ERROR_LOG_MAX; in init_error_log_max()
1006 static char rtas_err_buf[RTAS_ERROR_LOG_MAX];
1050 buf = kmalloc(RTAS_ERROR_LOG_MAX, GFP_ATOMIC); in __fetch_rtas_last_error()
1053 memmove(buf, rtas_err_buf, RTAS_ERROR_LOG_MAX); in __fetch_rtas_last_error()
1059 #define get_errorlog_buffer() kmalloc(RTAS_ERROR_LOG_MAX, GFP_KERNEL)
H A Drtasd.c62 static unsigned char logdata[RTAS_ERROR_LOG_MAX];
/linux/arch/powerpc/platforms/pseries/
H A Dras.c21 static unsigned char ras_log_buf[RTAS_ERROR_LOG_MAX];
453 memset(local_paca->mce_data_buf, 0, RTAS_ERROR_LOG_MAX); in fwnmi_get_errinfo()
460 len = min_t(int, error_log_length, RTAS_ERROR_LOG_MAX); in fwnmi_get_errinfo()
H A Dpapr-hvpipe.c26 static unsigned char hvpipe_ras_buf[RTAS_ERROR_LOG_MAX];
/linux/arch/powerpc/include/asm/
H A Drtas.h497 #define RTAS_ERROR_LOG_MAX 2048 macro