virtio-net.h (9673a88e97d1eb428872bd261dbf56a0f3c2fd71) | virtio-net.h (3abad4a221e050d43fa8540677b285057642baaf) |
---|---|
1/* 2 * Virtio Network Device 3 * 4 * Copyright IBM, Corp. 2007 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * --- 189 unchanged lines hidden (view full) --- 198 char *netclient_type; 199 uint64_t curr_guest_offloads; 200 /* used on saved state restore phase to preserve the curr_guest_offloads */ 201 uint64_t saved_guest_offloads; 202 AnnounceTimer announce_timer; 203 bool needs_vnet_hdr_swap; 204 bool mtu_bypass_backend; 205 DeviceState *primary_dev; | 1/* 2 * Virtio Network Device 3 * 4 * Copyright IBM, Corp. 2007 5 * 6 * Authors: 7 * Anthony Liguori <aliguori@us.ibm.com> 8 * --- 189 unchanged lines hidden (view full) --- 198 char *netclient_type; 199 uint64_t curr_guest_offloads; 200 /* used on saved state restore phase to preserve the curr_guest_offloads */ 201 uint64_t saved_guest_offloads; 202 AnnounceTimer announce_timer; 203 bool needs_vnet_hdr_swap; 204 bool mtu_bypass_backend; 205 DeviceState *primary_dev; |
206 char *primary_device_id; | |
207 /* primary failover device is hidden*/ 208 bool failover_primary_hidden; 209 bool failover; 210 DeviceListener primary_listener; 211 Notifier migration_state; 212 VirtioNetRssData rss_data; 213 struct NetRxPkt *rx_pkt; 214}; 215 216void virtio_net_set_netclient_name(VirtIONet *n, const char *name, 217 const char *type); 218 219#endif | 206 /* primary failover device is hidden*/ 207 bool failover_primary_hidden; 208 bool failover; 209 DeviceListener primary_listener; 210 Notifier migration_state; 211 VirtioNetRssData rss_data; 212 struct NetRxPkt *rx_pkt; 213}; 214 215void virtio_net_set_netclient_name(VirtIONet *n, const char *name, 216 const char *type); 217 218#endif |