diff options
| author | David Woodhouse <dwmw@amazon.co.uk> | 2023-10-23 09:38:01 +0100 |
|---|---|---|
| committer | David Woodhouse <dwmw@amazon.co.uk> | 2024-02-02 16:23:48 +0000 |
| commit | e8c5c4525cbbd7207c085732cfd1e67d8f3d662a (patch) | |
| tree | 0972de8341837ba78eefdb331ecda3c69124e0e7 /net/net.c | |
| parent | 481434f99e5293cadf0f056bef4afbbefd7b0bb3 (diff) | |
| download | focaccia-qemu-e8c5c4525cbbd7207c085732cfd1e67d8f3d662a.tar.gz focaccia-qemu-e8c5c4525cbbd7207c085732cfd1e67d8f3d662a.zip | |
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 'net/net.c')
| -rw-r--r-- | net/net.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/net.c b/net/net.c index d705e9b0fd..a2f0c828bb 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 */ |