---------- Forwarded message ---------- From: Shivaprasad G Bhat<sbhat@linux.vnet.ibm.com>
Date: Tue, Nov 5, 2013 at 12:07 PM Subject: Fwd: Re: [libvirt] [PATCH] virsh domxml-from-native to treat SCSI as the bus type for pseries by default To: Shivaprasad G Bhat <shivaprasadbhat@gmail.com>
Thanks Eric and Li. Sending out the
v2 with the recommended changes.
Regards,
Shiva
On 10/24/2013 12:56 PM, Eric Blake wrote:
On 10/24/2013 08:07 AM, Shivaprasad G Bhat wrote:
From: Shivaprasad G Bhat <sbhat@linux.vnet.ibm.com>
The bus type IDE being enum Zero, the bus type on pseries system appears as IDE for all the disk types. Pseries platform needs this to appear as SCSI instead of IDE.
Signed-off-by: Shivaprasad G Bhat <sbhat@linux.vnet.ibm.com>
---
src/qemu/qemu_command.c | 21 +++++++++++++++++----
1 file changed, 17 insertions(+), 4 deletions(-)
diff --git a/src/qemu/qemu_command.c b/src/qemu/qemu_command.c
index abb62e9..728409f 100644
--- a/src/qemu/qemu_command.c
+++ b/src/qemu/qemu_command.c
@@ -9995,6 +9995,7 @@ error:
static virDomainDiskDefPtr
qemuParseCommandLineDisk(virDomainXMLOptionPtr xmlopt,
const char *val,
+ virDomainDefPtr dom,
TAB damage. Please run 'make syntax-check' and fix that.
I'm wondering if we should reuse our post-XML-parse callbacks here,
rather than open-coding a machine check. In other words, since we
already have code that knows how to do per-machine fixups to a domain
definition, we should be reusing those instead of open-coding duplicate
checks. (Actually, domxml-from-native needs a LOT of TLC, there's much
more wrong with it, even on non-pseries machines, than what you are
trying to patch).