Re: [PATCH v2 01/11] powerpc/mm: fix erroneous duplicate slb_addr_limit init

2019-05-03 Thread Michael Ellerman
On Thu, 2019-04-25 at 14:29:27 UTC, Christophe Leroy wrote: > Commit 67fda38f0d68 ("powerpc/mm: Move slb_addr_linit to > early_init_mmu") moved slb_addr_limit init out of setup_arch(). > > Commit 701101865f5d ("powerpc/mm: Reduce memory usage for mm_context_t > for radix") brought it back into

Re: [PATCH v2 01/11] powerpc/mm: fix erroneous duplicate slb_addr_limit init

2019-04-26 Thread Aneesh Kumar K.V
Christophe Leroy writes: > Commit 67fda38f0d68 ("powerpc/mm: Move slb_addr_linit to > early_init_mmu") moved slb_addr_limit init out of setup_arch(). > > Commit 701101865f5d ("powerpc/mm: Reduce memory usage for mm_context_t > for radix") brought it back into setup_arch() by error. > > This

[PATCH v2 01/11] powerpc/mm: fix erroneous duplicate slb_addr_limit init

2019-04-25 Thread Christophe Leroy
Commit 67fda38f0d68 ("powerpc/mm: Move slb_addr_linit to early_init_mmu") moved slb_addr_limit init out of setup_arch(). Commit 701101865f5d ("powerpc/mm: Reduce memory usage for mm_context_t for radix") brought it back into setup_arch() by error. This patch reverts that erroneous regress.