Home
last modified time | relevance | path

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

/linux-2.4.37.9/arch/ppc/mm/
Dppc_mmu.c156 unsigned int n_hpteg, lg_n_hpteg; in MMU_init_hw() local
177 #define SDR1_LOW_BITS ((n_hpteg - 1) >> 10) in MMU_init_hw()
184 n_hpteg = Hash_size >> LG_HPTEG_SIZE; in MMU_init_hw()
185 lg_n_hpteg = __ilog2(n_hpteg); in MMU_init_hw()
197 n_hpteg = total_memory / (PAGE_SIZE * 8); in MMU_init_hw()
198 if (n_hpteg < MIN_N_HPTEG) in MMU_init_hw()
199 n_hpteg = MIN_N_HPTEG; in MMU_init_hw()
200 lg_n_hpteg = __ilog2(n_hpteg); in MMU_init_hw()
201 if (n_hpteg & (n_hpteg - 1)) { in MMU_init_hw()
203 n_hpteg = 1 << lg_n_hpteg; in MMU_init_hw()
[all …]