Re: [Qemu-devel] [PATCH v4 0/2] bootdevice: fix two problems about parameters check

2015-02-18 Thread Markus Armbruster
writes: > From: Gonglei > > Patch 1 check boot order arguments validation > before vm running. Patch 2 passing &error_abort > to restore_boot_order() because qemu_boot_set() > can't fail in that scenario. Reviewed-by: Markus Armbruster

[Qemu-devel] [PATCH v4 0/2] bootdevice: fix two problems about parameters check

2015-02-15 Thread arei.gonglei
From: Gonglei Patch 1 check boot order arguments validation before vm running. Patch 2 passing &error_abort to restore_boot_order() because qemu_boot_set() can't fail in that scenario. v4 -> v3: - drop the original patch 1. (Markus) - rework patch 1 (remove local variable 'order') and patch 2.