Re: [PATCH 4/5] csky: fixup compile error with pte_alloc

2019-01-08 Thread Linus Torvalds
On Tue, Jan 8, 2019 at 8:27 AM wrote: > > + for (i = 0; i < PAGE_SIZE/sizeof(pte_t); i++) > + (pte + i)->pte_low = _PAGE_GLOBAL; When I first read this, I went "hmm. pte_high is not initialized". But csky doesn't have a pte_high, and it seems that csky and SH both decided to

[PATCH 4/5] csky: fixup compile error with pte_alloc

2019-01-08 Thread guoren
From: Guo Ren Commit: 4cf58924951e remove the address argument of pte_alloc without modify csky related code. linux-5.0-rc1 compile failed with csky. Remove the unnecessary address testing in pte_alloc(). Signed-off-by: Guo Ren Cc: Joel Fernandes (Google) Cc: Guenter Roeck Cc: Arnd Bergmann