aboutsummaryrefslogtreecommitdiff
path: root/include/net
diff options
context:
space:
mode:
authorDavid Woodhouse <dwmw@amazon.co.uk>2023-10-23 09:38:01 +0100
committerDavid Woodhouse <dwmw@amazon.co.uk>2024-02-02 16:23:48 +0000
commite8c5c4525cbbd7207c085732cfd1e67d8f3d662a (patch)
tree0972de8341837ba78eefdb331ecda3c69124e0e7 /include/net
parent481434f99e5293cadf0f056bef4afbbefd7b0bb3 (diff)
downloadqemu-e8c5c4525cbbd7207c085732cfd1e67d8f3d662a.zip
qemu-e8c5c4525cbbd7207c085732cfd1e67d8f3d662a.tar.gz
qemu-e8c5c4525cbbd7207c085732cfd1e67d8f3d662a.tar.bz2
net: make nb_nics and nd_table[] static in net/net.c
Also remove the stale declaration of host_net_devices; the actual definition was removed long ago in commit 7cc28cb06104 ("net: Remove the deprecated 'host_net_add' and 'host_net_remove' HMP commands") Signed-off-by: David Woodhouse <dwmw@amazon.co.uk> Reviewed-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/net.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/include/net/net.h b/include/net/net.h
index 588ee55..b1f9b35 100644
--- a/include/net/net.h
+++ b/include/net/net.h
@@ -301,10 +301,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);