diff mbox

KVM : Qemu: update call pci_nic_init

Message ID 10C63FAD690C13458F0B32BCED571F1403D74F21@pdsmsx502.ccr.corp.intel.com (mailing list archive)
State Accepted, archived
Headers show

Commit Message

Zhang, Yang Jan. 15, 2009, 7:36 a.m. UTC
Hi
As the definition pci_nic_init has modified, this patch update the corresponding calling in ipf_init1().

From 53a66f524a6c2215d61da797cca4b7b1acbb1266 Mon Sep 17 00:00:00 2001
From: Yang <yang.zhang@intel.com>
Date: Thu, 15 Jan 2009 13:09:43 +0800
Subject: [PATCH] KVM : Qemu: update call pci_nic_init

update call pci_nic_init in ipf_init1

Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
Signed-off-by: Yang Zhang <yang.zhang@intel.com>
---
 qemu/hw/ipf.c |   26 +++++---------------------
 1 files changed, 5 insertions(+), 21 deletions(-)

Comments

Mark McLoughlin Jan. 15, 2009, 8:31 a.m. UTC | #1
Hi,

On Thu, 2009-01-15 at 15:36 +0800, Zhang, Yang wrote:
> Hi
> As the definition pci_nic_init has modified, this patch update the
> corresponding calling in ipf_init1().

Yep, qemu/hw/ipf.c isn't upstream so it didn't get updated when the
function was changed.

Is there a plan to merge ia64 stuff into upstream QEMU?

> >From 53a66f524a6c2215d61da797cca4b7b1acbb1266 Mon Sep 17 00:00:00 2001
> From: Yang <yang.zhang@intel.com>
> Date: Thu, 15 Jan 2009 13:09:43 +0800
> Subject: [PATCH] KVM : Qemu: update call pci_nic_init
> 
> update call pci_nic_init in ipf_init1
> 
> Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
> Signed-off-by: Yang Zhang <yang.zhang@intel.com>

Acked-by: Mark McLoughlin <markmc@redhat.com>

Cheers,
Mark.

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Zhang, Xiantao Jan. 15, 2009, 8:49 a.m. UTC | #2
Mark McLoughlin wrote:
> Hi,
> 
> On Thu, 2009-01-15 at 15:36 +0800, Zhang, Yang wrote:
>> Hi
>> As the definition pci_nic_init has modified, this patch update the
>> corresponding calling in ipf_init1().
> 
> Yep, qemu/hw/ipf.c isn't upstream so it didn't get updated when the
> function was changed.
> 
> Is there a plan to merge ia64 stuff into upstream QEMU?

Jes should be working on that :)
Xiantao


>>> From 53a66f524a6c2215d61da797cca4b7b1acbb1266 Mon Sep 17 00:00:00
>>> 2001 
>> From: Yang <yang.zhang@intel.com>
>> Date: Thu, 15 Jan 2009 13:09:43 +0800
>> Subject: [PATCH] KVM : Qemu: update call pci_nic_init
>> 
>> update call pci_nic_init in ipf_init1
>> 
>> Signed-off-by: Xiantao Zhang <xiantao.zhang@intel.com>
>> Signed-off-by: Yang Zhang <yang.zhang@intel.com>
> 
> Acked-by: Mark McLoughlin <markmc@redhat.com>
> 
> Cheers,
> Mark.

--
To unsubscribe from this list: send the line "unsubscribe kvm" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Avi Kivity Jan. 15, 2009, 9:26 a.m. UTC | #3
Zhang, Yang wrote:
> Hi
> As the definition pci_nic_init has modified, this patch update the corresponding calling in ipf_init1().
>
> From 53a66f524a6c2215d61da797cca4b7b1acbb1266 Mon Sep 17 00:00:00 2001
> From: Yang <yang.zhang@intel.com>
> Date: Thu, 15 Jan 2009 13:09:43 +0800
> Subject: [PATCH] KVM : Qemu: update call pci_nic_init
>
> update call pci_nic_init in ipf_init1
>
>   

Applied, thanks.
diff mbox

Patch

diff --git a/qemu/hw/ipf.c b/qemu/hw/ipf.c
index 4e9b052..0326ee9 100644
--- a/qemu/hw/ipf.c
+++ b/qemu/hw/ipf.c
@@ -550,28 +550,12 @@  static void ipf_init1(ram_addr_t ram_size, int vga_ram_size,
     }
 
     for(i = 0; i < nb_nics; i++) {
-        nd = &nd_table[i];
-        if (!nd->model) {
-            if (pci_enabled) {
-                nd->model = "ne2k_pci";
-            } else {
-                nd->model = "ne2k_isa";
-            }
-        }
-        if (strcmp(nd->model, "ne2k_isa") == 0) {
+        NICInfo *nd = &nd_table[i];
+
+        if (!pci_enabled || (nd->model && strcmp(nd->model, "ne2k_isa") == 0))
             pc_init_ne2k_isa(nd, i8259);
-        } else if (pci_enabled) {
-            if (strcmp(nd->model, "?") == 0)
-                fprintf(stderr, "qemu: Supported ISA NICs: ne2k_isa\n");
-            if (!pci_nic_init(pci_bus, nd, -1))
-                exit(1);
-        } else if (strcmp(nd->model, "?") == 0) {
-            fprintf(stderr, "qemu: Supported ISA NICs: ne2k_isa\n");
-            exit(1);
-        } else {
-            fprintf(stderr, "qemu: Unsupported NIC: %s\n", nd->model);
-            exit(1);
-        }
+        else
+            pci_nic_init(pci_bus, nd, -1, "e1000");
     }
 
 #undef USE_HYPERCALL  //Disable it now, need to implement later!