summary refs log tree commit diff stats
path: root/include/net/net.h
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/net.h
parent3fb69aa1d127585fe9626c3d777a8ce2fc01a36d (diff)
downloadfocaccia-qemu-575a1c0e42287f8342a7e93e03c53edeb152399d.tar.gz
focaccia-qemu-575a1c0e42287f8342a7e93e03c53edeb152399d.zip
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/net.h')
-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 8b189da5ee..ed594f9bdb 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)                            \