Home
last modified time | relevance | path

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

/linux/arch/powerpc/kernel/
H A Drtas.c1009 static u32 rtas_error_log_max __ro_after_init = RTAS_ERROR_LOG_MAX;
1028 propname, RTAS_ERROR_LOG_MAX); in init_error_log_max()
1029 max = RTAS_ERROR_LOG_MAX; in init_error_log_max()
1032 if (max > RTAS_ERROR_LOG_MAX) { in init_error_log_max()
1034 propname, max, RTAS_ERROR_LOG_MAX); in init_error_log_max()
1035 max = RTAS_ERROR_LOG_MAX; in init_error_log_max()
1042 static char rtas_err_buf[RTAS_ERROR_LOG_MAX];
1086 buf = kmalloc(RTAS_ERROR_LOG_MAX, GFP_ATOMIC); in __fetch_rtas_last_error()
1089 memmove(buf, rtas_err_buf, RTAS_ERROR_LOG_MAX); in __fetch_rtas_last_error()
1095 #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 Dsetup.c161 mce_data_buf = memblock_alloc_try_nid_raw(RTAS_ERROR_LOG_MAX * nr_cpus, in fwnmi_init()
162 RTAS_ERROR_LOG_MAX, MEMBLOCK_LOW_LIMIT, in fwnmi_init()
166 RTAS_ERROR_LOG_MAX * nr_cpus, &ppc64_rma_size); in fwnmi_init()
170 (RTAS_ERROR_LOG_MAX * i); in fwnmi_init()
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 Deeh_pseries.c244 static unsigned char slot_errbuf[RTAS_ERROR_LOG_MAX];
/linux/arch/powerpc/include/asm/
H A Drtas.h489 #define RTAS_ERROR_LOG_MAX 2048 macro