Lines Matching refs:cpu_tstat_va
67 static niagara_mmustat_t *cpu_tstat_va; /* VA of mmustat buffer */ variable
362 ASSERT(cpu_tstat_va == NULL); in cpu_trapstat_conf()
364 cpu_tstat_va = contig_mem_alloc_align(len, in cpu_trapstat_conf()
366 if (cpu_tstat_va == NULL) in cpu_trapstat_conf()
369 bzero(cpu_tstat_va, len); in cpu_trapstat_conf()
370 cpu_tstat_pa = va_to_pa(cpu_tstat_va); in cpu_trapstat_conf()
375 if (cpu_tstat_va) { in cpu_trapstat_conf()
377 contig_mem_free(cpu_tstat_va, len); in cpu_trapstat_conf()
378 cpu_tstat_va = NULL; in cpu_trapstat_conf()
411 if (cpu_tstat_va == NULL) in cpu_trapstat_data()
414 mmustatp = &((niagara_mmustat_t *)cpu_tstat_va)[CPU->cpu_id+1]; in cpu_trapstat_data()