Re: [Qemu-devel] [PATCH v9 01/11] hw/arm: simplify arm_load_dtb

2019-08-14 Thread Cédric Le Goater
On 13/08/2019 23:55, Eduardo Habkost wrote: > > CCing ARM maintainers. I'd like to at least get one Acked-by from > them before queueing this on machine-next. > > > On Fri, Aug 09, 2019 at 02:57:21PM +0800, Tao wrote: >> From: Tao Xu >> >> In struct arm_boot_info, kernel_filename, initrd_filen

Re: [Qemu-devel] [PATCH v9 01/11] hw/arm: simplify arm_load_dtb

2019-08-13 Thread Andrew Jeffery
On Wed, 14 Aug 2019, at 07:30, Alistair Francis wrote: > On Fri, Aug 9, 2019 at 12:01 AM Tao wrote: > > > > From: Tao Xu > > > > In struct arm_boot_info, kernel_filename, initrd_filename and > > kernel_cmdline are copied from from MachineState. This patch add > > MachineState as a parameter in

Re: [Qemu-devel] [PATCH v9 01/11] hw/arm: simplify arm_load_dtb

2019-08-13 Thread Alistair Francis
On Fri, Aug 9, 2019 at 12:01 AM Tao wrote: > > From: Tao Xu > > In struct arm_boot_info, kernel_filename, initrd_filename and > kernel_cmdline are copied from from MachineState. This patch add > MachineState as a parameter into arm_load_dtb() and move the copy chunk > of kernel_filename, initrd_f

Re: [Qemu-devel] [PATCH v9 01/11] hw/arm: simplify arm_load_dtb

2019-08-13 Thread Eduardo Habkost
CCing ARM maintainers. I'd like to at least get one Acked-by from them before queueing this on machine-next. On Fri, Aug 09, 2019 at 02:57:21PM +0800, Tao wrote: > From: Tao Xu > > In struct arm_boot_info, kernel_filename, initrd_filename and > kernel_cmdline are copied from from MachineStat

[Qemu-devel] [PATCH v9 01/11] hw/arm: simplify arm_load_dtb

2019-08-09 Thread Tao
From: Tao Xu In struct arm_boot_info, kernel_filename, initrd_filename and kernel_cmdline are copied from from MachineState. This patch add MachineState as a parameter into arm_load_dtb() and move the copy chunk of kernel_filename, initrd_filename and kernel_cmdline into arm_load_kernel(). Revie