git: 74cd316a09e8 - main - if_vtnet: Resort softc fields
Bryan Venteicher
bryanv at FreeBSD.org
Tue Jan 19 05:08:37 UTC 2021
The branch main has been updated by bryanv:
URL: https://cgit.FreeBSD.org/src/commit/?id=74cd316a09e8e5ae237278695329a97b9827559c
commit 74cd316a09e8e5ae237278695329a97b9827559c
Author: Bryan Venteicher <bryanv at FreeBSD.org>
AuthorDate: 2021-01-19 04:55:25 +0000
Commit: Bryan Venteicher <bryanv at FreeBSD.org>
CommitDate: 2021-01-19 04:55:25 +0000
if_vtnet: Resort softc fields
Reviewed by: grehan (mentor)
Differential Revision: https://reviews.freebsd.org/D27925
---
sys/dev/virtio/network/if_vtnetvar.h | 14 +++++++-------
1 file 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;
More information about the dev-commits-src-main
mailing list