diff options
| author | Jason Wang <jasowang@redhat.com> | 2013-01-30 19:12:25 +0800 |
|---|---|---|
| committer | Anthony Liguori <aliguori@us.ibm.com> | 2013-02-01 11:03:01 -0600 |
| commit | 6c51ae73fc68de2a4f11f5a7ebb52a4e79687e7d (patch) | |
| tree | ac8219d4c3d59f22a5e38dbbf4fb02abb018c631 /net/net.c | |
| parent | 948ecf219c032e3483b35ba4e162e5eee17d8b77 (diff) | |
| download | focaccia-qemu-6c51ae73fc68de2a4f11f5a7ebb52a4e79687e7d.tar.gz focaccia-qemu-6c51ae73fc68de2a4f11f5a7ebb52a4e79687e7d.zip | |
net: introduce qemu_find_net_clients_except()
In multiqueue, all NetClientState that belongs to the same netdev or nic has the same id. So this patches introduces an helper qemu_find_net_clients_except() which finds all NetClientState with the same id. This will be used by multiqueue networking. Signed-off-by: Jason Wang <jasowang@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
Diffstat (limited to 'net/net.c')
| -rw-r--r-- | net/net.c | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/net/net.c b/net/net.c index 47d56e3a14..16dd327782 100644 --- a/net/net.c +++ b/net/net.c @@ -508,6 +508,27 @@ NetClientState *qemu_find_netdev(const char *id) return NULL; } +int qemu_find_net_clients_except(const char *id, NetClientState **ncs, + NetClientOptionsKind type, int max) +{ + NetClientState *nc; + int ret = 0; + + QTAILQ_FOREACH(nc, &net_clients, next) { + if (nc->info->type == type) { + continue; + } + if (!strcmp(nc->name, id)) { + if (ret < max) { + ncs[ret] = nc; + } + ret++; + } + } + + return ret; +} + static int nic_get_free_idx(void) { int index; |