]> xenbits.xensource.com Git - xen.git/commitdiff
stubdom/grub: update init_netfront() call for mini-os
authorCostin Lupu <costin.lupu@cs.pub.ro>
Fri, 28 Aug 2020 07:17:44 +0000 (09:17 +0200)
committerJan Beulich <jbeulich@suse.com>
Fri, 28 Aug 2020 07:17:44 +0000 (09:17 +0200)
This patch updates the call of init_netfront() function according to its
recently updated declaration which can also include parameters for gateway
and netmask addresses. While we are here, the patch also removes passing
the ip parameter because (a) it is not used anywhere and (b) it wastes
memory since it would reference a dynamically allocated string.

Reported-by: Jan Beulich <jbeulich@suse.com>
Signed-off-by: Costin Lupu <costin.lupu@cs.pub.ro>
Reviewed-by: Samuel Thibault <samuel.thibault@ens-lyon.org>
stubdom/grub/mini-os.c

index 4fc052a25587fa1345f68f7b6762fb684449e8ae..b33dbf02fbb0a6de4d3eb356c448cacb80d3df69 100644 (file)
@@ -291,8 +291,6 @@ struct netfront_dev *net_dev;
 int
 minios_probe (struct nic *nic)
 {
-    char *ip;
-
     if (net_dev)
         return 1;
 
@@ -300,7 +298,7 @@ minios_probe (struct nic *nic)
     grub_memset ((char *) arptable, 0,
                  MAX_ARP * sizeof (struct arptable_t));
 
-    net_dev = init_netfront(NULL, (void*) -1, nic->node_addr, &ip);
+    net_dev = init_netfront(NULL, (void*) -1, nic->node_addr, NULL, NULL, NULL);
     if (!net_dev)
         return 0;