Re: [PATCH 1/5] RISC-V: Move free_initrd_mem() to kernel/setup.c

2019-01-19 Thread Anup Patel
On Tue, Jan 15, 2019 at 7:13 PM Christoph Hellwig wrote: > > On Mon, Jan 07, 2019 at 09:40:43PM +0530, Anup Patel wrote: > > From: Anup Patel > > > > We move free_initrd_mem() to kernel/setup.c so that all initrd > > related functions are in one place. > > > > Signed-off-by: Anup Patel > > Looks

Re: [PATCH 1/5] RISC-V: Move free_initrd_mem() to kernel/setup.c

2019-01-15 Thread Christoph Hellwig
On Mon, Jan 07, 2019 at 09:40:43PM +0530, Anup Patel wrote: > From: Anup Patel > > We move free_initrd_mem() to kernel/setup.c so that all initrd > related functions are in one place. > > Signed-off-by: Anup Patel Looks fine: Reviewed-by: Christoph Hellwig Talking about free_initrd_mem - do

[PATCH 1/5] RISC-V: Move free_initrd_mem() to kernel/setup.c

2019-01-07 Thread Anup Patel
From: Anup Patel We move free_initrd_mem() to kernel/setup.c so that all initrd related functions are in one place. Signed-off-by: Anup Patel --- arch/riscv/kernel/setup.c | 4 arch/riscv/mm/init.c | 7 --- 2 files changed, 4 insertions(+), 7 deletions(-) diff --git a/arch/riscv