From: David Woodhouse Date: Sun, 22 Oct 2023 15:31:25 +0000 (+0100) Subject: net: make nb_nics and nd_table[] static in net/net.c X-Git-Url: https://www.infradead.org/git/?a=commitdiff_plain;h=50da89a02c39e388250e2e848a3ba929c8b076f0;p=users%2Fdwmw2%2Fqemu.git net: make nb_nics and nd_table[] static in net/net.c Signed-off-by: David Woodhouse --- diff --git a/include/net/net.h b/include/net/net.h index 290e604f03..5a38766942 100644 --- a/include/net/net.h +++ b/include/net/net.h @@ -245,10 +245,6 @@ struct NICInfo { int nvectors; }; -extern int nb_nics; -extern NICInfo nd_table[MAX_NICS]; -extern const char *host_net_devices[]; - /* from net.c */ extern NetClientStateList net_clients; bool netdev_is_modern(const char *optstr); diff --git a/net/net.c b/net/net.c index ed0d638454..9043566abf 100644 --- a/net/net.c +++ b/net/net.c @@ -77,6 +77,9 @@ static NetdevQueue nd_queue = QSIMPLEQ_HEAD_INITIALIZER(nd_queue); static GHashTable *nic_model_help; +static int nb_nics; +static NICInfo nd_table[MAX_NICS]; + /***********************************************************/ /* network device redirectors */ diff --git a/system/globals.c b/system/globals.c index e83b5428d1..b6d4e72530 100644 --- a/system/globals.c +++ b/system/globals.c @@ -36,8 +36,6 @@ int display_opengl; const char* keyboard_layout; bool enable_mlock; bool enable_cpu_pm; -int nb_nics; -NICInfo nd_table[MAX_NICS]; int autostart = 1; int vga_interface_type = VGA_NONE; bool vga_interface_created;