aboutsummaryrefslogtreecommitdiff
path: root/sys/dev
diff options
context:
space:
mode:
authorBryan Venteicher <bryanv@FreeBSD.org>2021-01-19 04:55:25 +0000
committerBryan Venteicher <bryanv@FreeBSD.org>2021-01-19 04:55:25 +0000
commit74cd316a09e8e5ae237278695329a97b9827559c (patch)
treee644f851ad9d53921234c2aaba274d2c36f3e62c /sys/dev
parent33b5433fd74c460daa3994949dfaa951bd439554 (diff)
downloadsrc-74cd316a09e8e5ae237278695329a97b9827559c.tar.gz
src-74cd316a09e8e5ae237278695329a97b9827559c.zip
if_vtnet: Resort softc fields
Reviewed by: grehan (mentor) Differential Revision: https://reviews.freebsd.org/D27925
Diffstat (limited to 'sys/dev')
-rw-r--r--sys/dev/virtio/network/if_vtnetvar.h14
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/dev/virtio/network/if_vtnetvar.h b/sys/dev/virtio/network/if_vtnetvar.h
index 7781e1c9b398..c9403c0dbb0e 100644
--- a/sys/dev/virtio/network/if_vtnetvar.h
+++ b/sys/dev/virtio/network/if_vtnetvar.h
@@ -140,6 +140,7 @@ struct vtnet_softc {
struct vtnet_rxq *vtnet_rxqs;
struct vtnet_txq *vtnet_txqs;
pfil_head_t vtnet_pfil;
+ uint64_t vtnet_features;
uint32_t vtnet_flags;
#define VTNET_FLAG_MODERN 0x0001
@@ -158,18 +159,18 @@ struct vtnet_softc {
#define VTNET_FLAG_FIXUP_NEEDS_CSUM 0x2000
#define VTNET_FLAG_SW_LRO 0x4000
- int vtnet_link_active;
int vtnet_hdr_size;
- int vtnet_rx_process_limit;
- int vtnet_rx_nsegs;
int vtnet_rx_nmbufs;
int vtnet_rx_clustersz;
- int vtnet_tx_nsegs;
- int vtnet_if_flags;
- int vtnet_max_mtu;
+ int vtnet_rx_nsegs;
+ int vtnet_rx_process_limit;
+ int vtnet_link_active;
int vtnet_act_vq_pairs;
int vtnet_req_vq_pairs;
int vtnet_max_vq_pairs;
+ int vtnet_tx_nsegs;
+ int vtnet_if_flags;
+ int vtnet_max_mtu;
int vtnet_lro_entry_count;
int vtnet_lro_mbufq_depth;
@@ -177,7 +178,6 @@ struct vtnet_softc {
struct vtnet_mac_filter *vtnet_mac_filter;
uint32_t *vtnet_vlan_filter;
- uint64_t vtnet_features;
uint64_t vtnet_negotiated_features;
struct vtnet_statistics vtnet_stats;
struct callout vtnet_tick_ch;