File tree Expand file tree Collapse file tree 1 file changed +22
-0
lines changed
Documentation/networking/device_drivers/ethernet/pensando Expand file tree Collapse file tree 1 file changed +22
-0
lines changed Original file line number Diff line number Diff line change @@ -99,6 +99,12 @@ Minimal SR-IOV support is currently offered and can be enabled by setting
99
99
the sysfs 'sriov_numvfs' value, if supported by your particular firmware
100
100
configuration.
101
101
102
+ XDP
103
+ ---
104
+
105
+ Support for XDP includes the basics, plus Jumbo frames, Redirect and
106
+ ndo_xmit. There is no current support for zero-copy sockets or HW offload.
107
+
102
108
Statistics
103
109
==========
104
110
@@ -138,6 +144,12 @@ Driver port specific::
138
144
rx_csum_none: 0
139
145
rx_csum_complete: 3
140
146
rx_csum_error: 0
147
+ xdp_drop: 0
148
+ xdp_aborted: 0
149
+ xdp_pass: 0
150
+ xdp_tx: 0
151
+ xdp_redirect: 0
152
+ xdp_frames: 0
141
153
142
154
Driver queue specific::
143
155
@@ -149,18 +161,28 @@ Driver queue specific::
149
161
tx_0_frags: 0
150
162
tx_0_tso: 0
151
163
tx_0_tso_bytes: 0
164
+ tx_0_hwstamp_valid: 0
165
+ tx_0_hwstamp_invalid: 0
152
166
tx_0_csum_none: 3
153
167
tx_0_csum: 0
154
168
tx_0_vlan_inserted: 0
169
+ tx_0_xdp_frames: 0
155
170
rx_0_pkts: 2
156
171
rx_0_bytes: 120
157
172
rx_0_dma_map_err: 0
158
173
rx_0_alloc_err: 0
159
174
rx_0_csum_none: 0
160
175
rx_0_csum_complete: 0
161
176
rx_0_csum_error: 0
177
+ rx_0_hwstamp_valid: 0
178
+ rx_0_hwstamp_invalid: 0
162
179
rx_0_dropped: 0
163
180
rx_0_vlan_stripped: 0
181
+ rx_0_xdp_drop: 0
182
+ rx_0_xdp_aborted: 0
183
+ rx_0_xdp_pass: 0
184
+ rx_0_xdp_tx: 0
185
+ rx_0_xdp_redirect: 0
164
186
165
187
Firmware port specific::
166
188
You can’t perform that action at this time.
0 commit comments