c: Jason A. Donenfeld
Cc: wiregu...@lists.zx2c4.com
Cc: linux-a...@vger.kernel.org
Cc: linux-snps-arc@lists.infradead.org
Cc: Vineet Gupta
Cc: Brian Cain
Cc: linux-hexa...@vger.kernel.org
Cc: Greg Ungerer
Acked-by: Greg Ungerer
Cc: Geert Uytterhoeven
Cc: linux-m...@lists.linux-m68k.org
Cc: Mi
Hi John,
On 7/1/21 7:02 pm, John Ogness wrote:
On 2021-01-06, Vineet Gupta wrote:
This breaks ARC booting (no output on console).
Could you provide the kernel boot arguments that you use? This series is
partly about addressing users that have used boot arguments that are
technically incorrec
Hi Mike,
On 15/6/20 4:22 pm, Mike Rapoport wrote:
On Mon, Jun 15, 2020 at 01:53:42PM +1000, Greg Ungerer wrote:
From: Mike Rapoport
Currently, architectures that use free_area_init() to initialize memory map
and node and zone structures need to calculate zone and hole sizes. We can
use
Hi Mike,
From: Mike Rapoport
Currently, architectures that use free_area_init() to initialize memory map
and node and zone structures need to calculate zone and hole sizes. We can
use free_area_init_nodes() instead and let it detect the zone boundaries
while the architectures will only have to
: Mike Rapoport
Acked-by: Greg Ungerer
Regards
Greg
---
arch/m68k/include/asm/mcf_pgtable.h | 40 -
arch/m68k/include/asm/motorola_pgtable.h | 44
arch/m68k/mm/motorola.c | 43 +++
3 files changed, 43
On 14/12/18 9:47 pm, Christoph Hellwig wrote:
On Fri, Dec 14, 2018 at 10:54:32AM +0100, Geert Uytterhoeven wrote:
- page = alloc_pages(flag, order);
+ page = alloc_pages(flag | GFP_ZERO, order);
if (!page)
return NULL;
There's second implementation below