Home
last modified time | relevance | path

Searched refs:rtas_error_log_max (Results 1 – 2 of 2) sorted by relevance

/Linux-v6.1/arch/powerpc/kernel/
Drtasd.c41 static unsigned int rtas_error_log_max; variable
174 if (rtas_error_log_max == 0) in log_rtas_len()
175 rtas_error_log_max = rtas_get_error_log_max(); in log_rtas_len()
177 if (len > rtas_error_log_max) in log_rtas_len()
178 len = rtas_error_log_max; in log_rtas_len()
395 memset(logdata, 0, rtas_error_log_max); in do_event_scan()
398 __pa(logdata), rtas_error_log_max); in do_event_scan()
463 memset(logdata, 0, rtas_error_log_max); in retrieve_nvram_error_log()
464 rc = nvram_read_error_log(logdata, rtas_error_log_max, in retrieve_nvram_error_log()
525 rtas_error_log_max = rtas_get_error_log_max(); in rtas_event_scan_init()
[all …]
Drtas.c363 static int rtas_error_log_max; in rtas_get_error_log_max() local
364 if (rtas_error_log_max) in rtas_get_error_log_max()
365 return rtas_error_log_max; in rtas_get_error_log_max()
367 rtas_error_log_max = rtas_token ("rtas-error-log-max"); in rtas_get_error_log_max()
368 if ((rtas_error_log_max == RTAS_UNKNOWN_SERVICE) || in rtas_get_error_log_max()
369 (rtas_error_log_max > RTAS_ERROR_LOG_MAX)) { in rtas_get_error_log_max()
371 rtas_error_log_max); in rtas_get_error_log_max()
372 rtas_error_log_max = RTAS_ERROR_LOG_MAX; in rtas_get_error_log_max()
374 return rtas_error_log_max; in rtas_get_error_log_max()