All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hw/mips: Use MachineClass->default_nic in the virt machine
@ 2023-05-24 12:25 Philippe Mathieu-Daudé
  2023-05-24 12:43 ` Thomas Huth
  0 siblings, 1 reply; 2+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-05-24 12:25 UTC (permalink / raw)
  To: qemu-devel
  Cc: Jiaxun Yang, Philippe Mathieu-Daudé, Huacai Chen, Thomas Huth

Mark the default NIC via the new MachineClass->default_nic setting
so that the machine-defaults code in vl.c can decide whether the
default NIC is usable or not (for example when compiling with the
"--without-default-devices" configure switch).

Inspired-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
---
Based-on: <20230523110435.1375774-1-thuth@redhat.com>
---
 hw/mips/loongson3_virt.c | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/hw/mips/loongson3_virt.c b/hw/mips/loongson3_virt.c
index 25534288dd..216812f660 100644
--- a/hw/mips/loongson3_virt.c
+++ b/hw/mips/loongson3_virt.c
@@ -406,6 +406,7 @@ static inline void loongson3_virt_devices_init(MachineState *machine,
     PCIBus *pci_bus;
     DeviceState *dev;
     MemoryRegion *mmio_reg, *ecam_reg;
+    MachineClass *mc = MACHINE_GET_CLASS(machine);
     LoongsonMachineState *s = LOONGSON_MACHINE(machine);
 
     dev = qdev_new(TYPE_GPEX_HOST);
@@ -456,7 +457,7 @@ static inline void loongson3_virt_devices_init(MachineState *machine,
         NICInfo *nd = &nd_table[i];
 
         if (!nd->model) {
-            nd->model = g_strdup("virtio");
+            nd->model = g_strdup(mc->default_nic);
         }
 
         pci_nic_init_nofail(nd, pci_bus, nd->model, NULL);
@@ -619,6 +620,7 @@ static void loongson3v_machine_class_init(ObjectClass *oc, void *data)
     mc->default_ram_size = 1600 * MiB;
     mc->kvm_type = mips_kvm_type;
     mc->minimum_page_bits = 14;
+    mc->default_nic = "virtio-net-pci";
 }
 
 static const TypeInfo loongson3_machine_types[] = {
-- 
2.38.1



^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] hw/mips: Use MachineClass->default_nic in the virt machine
  2023-05-24 12:25 [PATCH] hw/mips: Use MachineClass->default_nic in the virt machine Philippe Mathieu-Daudé
@ 2023-05-24 12:43 ` Thomas Huth
  0 siblings, 0 replies; 2+ messages in thread
From: Thomas Huth @ 2023-05-24 12:43 UTC (permalink / raw)
  To: Philippe Mathieu-Daudé, qemu-devel; +Cc: Jiaxun Yang, Huacai Chen

On 24/05/2023 14.25, Philippe Mathieu-Daudé wrote:
> Mark the default NIC via the new MachineClass->default_nic setting
> so that the machine-defaults code in vl.c can decide whether the
> default NIC is usable or not (for example when compiling with the
> "--without-default-devices" configure switch).
> 
> Inspired-by: Thomas Huth <thuth@redhat.com>
> Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
> ---
> Based-on: <20230523110435.1375774-1-thuth@redhat.com>
> ---
>   hw/mips/loongson3_virt.c | 4 +++-
>   1 file changed, 3 insertions(+), 1 deletion(-)
> 
> diff --git a/hw/mips/loongson3_virt.c b/hw/mips/loongson3_virt.c
> index 25534288dd..216812f660 100644
> --- a/hw/mips/loongson3_virt.c
> +++ b/hw/mips/loongson3_virt.c
> @@ -406,6 +406,7 @@ static inline void loongson3_virt_devices_init(MachineState *machine,
>       PCIBus *pci_bus;
>       DeviceState *dev;
>       MemoryRegion *mmio_reg, *ecam_reg;
> +    MachineClass *mc = MACHINE_GET_CLASS(machine);
>       LoongsonMachineState *s = LOONGSON_MACHINE(machine);
>   
>       dev = qdev_new(TYPE_GPEX_HOST);
> @@ -456,7 +457,7 @@ static inline void loongson3_virt_devices_init(MachineState *machine,
>           NICInfo *nd = &nd_table[i];
>   
>           if (!nd->model) {
> -            nd->model = g_strdup("virtio");
> +            nd->model = g_strdup(mc->default_nic);
>           }
>   
>           pci_nic_init_nofail(nd, pci_bus, nd->model, NULL);
> @@ -619,6 +620,7 @@ static void loongson3v_machine_class_init(ObjectClass *oc, void *data)
>       mc->default_ram_size = 1600 * MiB;
>       mc->kvm_type = mips_kvm_type;
>       mc->minimum_page_bits = 14;
> +    mc->default_nic = "virtio-net-pci";
>   }

Reviewed-by: Thomas Huth <thuth@redhat.com>



^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2023-05-24 12:44 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-05-24 12:25 [PATCH] hw/mips: Use MachineClass->default_nic in the virt machine Philippe Mathieu-Daudé
2023-05-24 12:43 ` Thomas Huth

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.