summaryrefslogtreecommitdiffstats
path: root/include/net
diff options
context:
space:
mode:
authorJiri Pirko <jiri@resnulli.us>2014-05-26 12:04:08 +0200
committerStefan Hajnoczi <stefanha@redhat.com>2014-06-27 11:19:31 +0200
commit575a1c0e42287f8342a7e93e03c53edeb152399d (patch)
treedeaace3f44b7fefa5fdf19d0a69d6f77db87a40c /include/net
parent3fb69aa1d127585fe9626c3d777a8ce2fc01a36d (diff)
downloadhqemu-575a1c0e42287f8342a7e93e03c53edeb152399d.zip
hqemu-575a1c0e42287f8342a7e93e03c53edeb152399d.tar.gz
net: move queue number into NICPeers
It indicates the number of elements in ncs field and makes sense to have int inside NICPeers. Also in parse_netdev we do not need to access container and work with NICPeers only. Signed-off-by: Jiri Pirko <jiri@resnulli.us> Signed-off-by: Stefan Hajnoczi <stefanha@redhat.com>
Diffstat (limited to 'include/net')
-rw-r--r--include/net/net.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/net.h b/include/net/net.h
index 8b189da..ed594f9 100644
--- a/include/net/net.h
+++ b/include/net/net.h
@@ -24,13 +24,13 @@ struct MACAddr {
typedef struct NICPeers {
NetClientState *ncs[MAX_QUEUE_NUM];
+ int32_t queues;
} NICPeers;
typedef struct NICConf {
MACAddr macaddr;
NICPeers peers;
int32_t bootindex;
- int32_t queues;
} NICConf;
#define DEFINE_NIC_PROPERTIES(_state, _conf) \
OpenPOWER on IntegriCloud