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

/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/platforms/pseries/
H A Drtasd.c44 static unsigned int rtas_error_log_max; variable
165 if (rtas_error_log_max == 0) {
168 if (len > rtas_error_log_max)
169 len = rtas_error_log_max;
358 rtas_error_log_max = rtas_get_error_log_max();
359 rtas_error_log_buffer_max = rtas_error_log_max + sizeof(int);
370 memset(logdata, 0, rtas_error_log_max);
373 __pa(logdata), rtas_error_log_max);
430 memset(logdata, 0, rtas_error_log_max);
432 rc = nvram_read_error_log(logdata, rtas_error_log_max,
[all...]
/netgear-WNDR4500v2-V1.0.0.60_1.0.38/src/linux/linux-2.6/arch/powerpc/kernel/
H A Drtas.c321 static int rtas_error_log_max; local
322 if (rtas_error_log_max)
323 return rtas_error_log_max;
325 rtas_error_log_max = rtas_token ("rtas-error-log-max");
326 if ((rtas_error_log_max == RTAS_UNKNOWN_SERVICE) ||
327 (rtas_error_log_max > RTAS_ERROR_LOG_MAX)) {
329 rtas_error_log_max);
330 rtas_error_log_max = RTAS_ERROR_LOG_MAX;
332 return rtas_error_log_max;

Completed in 56 milliseconds