Branch data Line data Source code
1 : : /* SPDX-License-Identifier: BSD-3-Clause
2 : : *
3 : : * Copyright(c) 2019-2021 Xilinx, Inc.
4 : : * Copyright(c) 2016-2019 Solarflare Communications Inc.
5 : : *
6 : : * This software was jointly developed between OKTET Labs (under contract
7 : : * for Solarflare) and Solarflare Communications, Inc.
8 : : */
9 : :
10 : : #include <rte_debug.h>
11 : : #include <rte_cycles.h>
12 : : #include <rte_alarm.h>
13 : : #include <rte_branch_prediction.h>
14 : :
15 : : #include "efx.h"
16 : :
17 : : #include "sfc.h"
18 : : #include "sfc_debug.h"
19 : : #include "sfc_log.h"
20 : : #include "sfc_ev.h"
21 : : #include "sfc_rx.h"
22 : : #include "sfc_tx.h"
23 : : #include "sfc_kvargs.h"
24 : :
25 : :
26 : : /* Initial delay when waiting for event queue init complete event */
27 : : #define SFC_EVQ_INIT_BACKOFF_START_US (1)
28 : : /* Maximum delay between event queue polling attempts */
29 : : #define SFC_EVQ_INIT_BACKOFF_MAX_US (10 * 1000)
30 : : /* Event queue init approx timeout */
31 : : #define SFC_EVQ_INIT_TIMEOUT_US (2 * US_PER_S)
32 : :
33 : : /* Management event queue polling period in microseconds */
34 : : #define SFC_MGMT_EV_QPOLL_PERIOD_US (US_PER_S)
35 : :
36 : : static const char *
37 : : sfc_evq_type2str(enum sfc_evq_type type)
38 : : {
39 : 0 : switch (type) {
40 : : case SFC_EVQ_TYPE_MGMT:
41 : : return "mgmt-evq";
42 : 0 : case SFC_EVQ_TYPE_RX:
43 : 0 : return "rx-evq";
44 : 0 : case SFC_EVQ_TYPE_TX:
45 : 0 : return "tx-evq";
46 : 0 : default:
47 : : SFC_ASSERT(B_FALSE);
48 : 0 : return NULL;
49 : : }
50 : : }
51 : :
52 : : static boolean_t
53 : 0 : sfc_ev_initialized(void *arg)
54 : : {
55 : : struct sfc_evq *evq = arg;
56 : :
57 : : /* Init done events may be duplicated on SFN7xxx (SFC bug 31631) */
58 : : SFC_ASSERT(evq->init_state == SFC_EVQ_STARTING ||
59 : : evq->init_state == SFC_EVQ_STARTED);
60 : :
61 : 0 : evq->init_state = SFC_EVQ_STARTED;
62 : :
63 : 0 : return B_FALSE;
64 : : }
65 : :
66 : : static boolean_t
67 : 0 : sfc_ev_nop_rx(void *arg, uint32_t label, uint32_t id,
68 : : uint32_t size, uint16_t flags)
69 : : {
70 : : struct sfc_evq *evq = arg;
71 : :
72 : 0 : sfc_err(evq->sa,
73 : : "EVQ %u unexpected Rx event label=%u id=%#x size=%u flags=%#x",
74 : : evq->evq_index, label, id, size, flags);
75 : 0 : return B_TRUE;
76 : : }
77 : :
78 : : static boolean_t
79 : 0 : sfc_ev_efx_rx(void *arg, __rte_unused uint32_t label, uint32_t id,
80 : : uint32_t size, uint16_t flags)
81 : : {
82 : : struct sfc_evq *evq = arg;
83 : : struct sfc_efx_rxq *rxq;
84 : : unsigned int stop;
85 : : unsigned int pending_id;
86 : : unsigned int delta;
87 : : unsigned int i;
88 : : struct sfc_efx_rx_sw_desc *rxd;
89 : :
90 [ # # ]: 0 : if (unlikely(evq->exception))
91 : 0 : goto done;
92 : :
93 [ # # ]: 0 : rxq = sfc_efx_rxq_by_dp_rxq(evq->dp_rxq);
94 : :
95 : : SFC_ASSERT(rxq != NULL);
96 : : SFC_ASSERT(rxq->evq == evq);
97 : : SFC_ASSERT(rxq->flags & SFC_EFX_RXQ_FLAG_STARTED);
98 : :
99 : 0 : stop = (id + 1) & rxq->ptr_mask;
100 : 0 : pending_id = rxq->pending & rxq->ptr_mask;
101 [ # # ]: 0 : delta = (stop >= pending_id) ? (stop - pending_id) :
102 : 0 : (rxq->ptr_mask + 1 - pending_id + stop);
103 : :
104 [ # # ]: 0 : if (delta == 0) {
105 : : /*
106 : : * Rx event with no new descriptors done and zero length
107 : : * is used to abort scattered packet when there is no room
108 : : * for the tail.
109 : : */
110 [ # # ]: 0 : if (unlikely(size != 0)) {
111 : 0 : evq->exception = B_TRUE;
112 : 0 : sfc_err(evq->sa,
113 : : "EVQ %u RxQ %u invalid RX abort "
114 : : "(id=%#x size=%u flags=%#x); needs restart",
115 : : evq->evq_index, rxq->dp.dpq.queue_id,
116 : : id, size, flags);
117 : 0 : goto done;
118 : : }
119 : :
120 : : /* Add discard flag to the first fragment */
121 : 0 : rxq->sw_desc[pending_id].flags |= EFX_DISCARD;
122 : : /* Remove continue flag from the last fragment */
123 : 0 : rxq->sw_desc[id].flags &= ~EFX_PKT_CONT;
124 [ # # ]: 0 : } else if (unlikely(delta > rxq->batch_max)) {
125 : 0 : evq->exception = B_TRUE;
126 : :
127 : 0 : sfc_err(evq->sa,
128 : : "EVQ %u RxQ %u completion out of order "
129 : : "(id=%#x delta=%u flags=%#x); needs restart",
130 : : evq->evq_index, rxq->dp.dpq.queue_id,
131 : : id, delta, flags);
132 : :
133 : 0 : goto done;
134 : : }
135 : :
136 [ # # ]: 0 : for (i = pending_id; i != stop; i = (i + 1) & rxq->ptr_mask) {
137 : 0 : rxd = &rxq->sw_desc[i];
138 : :
139 : 0 : rxd->flags = flags;
140 : :
141 : : SFC_ASSERT(size < (1 << 16));
142 : 0 : rxd->size = (uint16_t)size;
143 : : }
144 : :
145 : 0 : rxq->pending += delta;
146 : :
147 : 0 : done:
148 : 0 : return B_FALSE;
149 : : }
150 : :
151 : : static boolean_t
152 : 0 : sfc_ev_dp_rx(void *arg, __rte_unused uint32_t label, uint32_t id,
153 : : __rte_unused uint32_t size, __rte_unused uint16_t flags)
154 : : {
155 : : struct sfc_evq *evq = arg;
156 : : struct sfc_dp_rxq *dp_rxq;
157 : :
158 : 0 : dp_rxq = evq->dp_rxq;
159 : : SFC_ASSERT(dp_rxq != NULL);
160 : :
161 : : SFC_ASSERT(evq->sa->priv.dp_rx->qrx_ev != NULL);
162 : 0 : return evq->sa->priv.dp_rx->qrx_ev(dp_rxq, id);
163 : : }
164 : :
165 : : static boolean_t
166 : 0 : sfc_ev_nop_rx_packets(void *arg, uint32_t label, unsigned int num_packets,
167 : : uint32_t flags)
168 : : {
169 : : struct sfc_evq *evq = arg;
170 : :
171 : 0 : sfc_err(evq->sa,
172 : : "EVQ %u unexpected Rx packets event label=%u num=%u flags=%#x",
173 : : evq->evq_index, label, num_packets, flags);
174 : 0 : return B_TRUE;
175 : : }
176 : :
177 : : static boolean_t
178 : 0 : sfc_ev_dp_rx_packets(void *arg, __rte_unused uint32_t label,
179 : : unsigned int num_packets, __rte_unused uint32_t flags)
180 : : {
181 : : struct sfc_evq *evq = arg;
182 : : struct sfc_dp_rxq *dp_rxq;
183 : :
184 : 0 : dp_rxq = evq->dp_rxq;
185 : : SFC_ASSERT(dp_rxq != NULL);
186 : :
187 : : SFC_ASSERT(evq->sa->priv.dp_rx->qrx_ev != NULL);
188 : 0 : return evq->sa->priv.dp_rx->qrx_ev(dp_rxq, num_packets);
189 : : }
190 : :
191 : : static boolean_t
192 : 0 : sfc_ev_nop_rx_ps(void *arg, uint32_t label, uint32_t id,
193 : : uint32_t pkt_count, uint16_t flags)
194 : : {
195 : : struct sfc_evq *evq = arg;
196 : :
197 : 0 : sfc_err(evq->sa,
198 : : "EVQ %u unexpected packed stream Rx event label=%u id=%#x pkt_count=%u flags=%#x",
199 : : evq->evq_index, label, id, pkt_count, flags);
200 : 0 : return B_TRUE;
201 : : }
202 : :
203 : : /* It is not actually used on datapath, but required on RxQ flush */
204 : : static boolean_t
205 : 0 : sfc_ev_dp_rx_ps(void *arg, __rte_unused uint32_t label, uint32_t id,
206 : : __rte_unused uint32_t pkt_count, __rte_unused uint16_t flags)
207 : : {
208 : : struct sfc_evq *evq = arg;
209 : : struct sfc_dp_rxq *dp_rxq;
210 : :
211 : 0 : dp_rxq = evq->dp_rxq;
212 : : SFC_ASSERT(dp_rxq != NULL);
213 : :
214 [ # # ]: 0 : if (evq->sa->priv.dp_rx->qrx_ps_ev != NULL)
215 : 0 : return evq->sa->priv.dp_rx->qrx_ps_ev(dp_rxq, id);
216 : : else
217 : : return B_FALSE;
218 : : }
219 : :
220 : : static boolean_t
221 : 0 : sfc_ev_nop_tx(void *arg, uint32_t label, uint32_t id)
222 : : {
223 : : struct sfc_evq *evq = arg;
224 : :
225 : 0 : sfc_err(evq->sa, "EVQ %u unexpected Tx event label=%u id=%#x",
226 : : evq->evq_index, label, id);
227 : 0 : return B_TRUE;
228 : : }
229 : :
230 : : static boolean_t
231 : 0 : sfc_ev_tx(void *arg, __rte_unused uint32_t label, uint32_t id)
232 : : {
233 : : struct sfc_evq *evq = arg;
234 : : struct sfc_dp_txq *dp_txq;
235 : : struct sfc_efx_txq *txq;
236 : : unsigned int stop;
237 : : unsigned int delta;
238 : :
239 [ # # ]: 0 : dp_txq = evq->dp_txq;
240 : : SFC_ASSERT(dp_txq != NULL);
241 : :
242 : : txq = sfc_efx_txq_by_dp_txq(dp_txq);
243 : : SFC_ASSERT(txq->evq == evq);
244 : :
245 [ # # ]: 0 : if (unlikely((txq->flags & SFC_EFX_TXQ_FLAG_STARTED) == 0))
246 : 0 : goto done;
247 : :
248 : 0 : stop = (id + 1) & txq->ptr_mask;
249 : 0 : id = txq->pending & txq->ptr_mask;
250 : :
251 [ # # ]: 0 : delta = (stop >= id) ? (stop - id) : (txq->ptr_mask + 1 - id + stop);
252 : :
253 : 0 : txq->pending += delta;
254 : :
255 : 0 : done:
256 : 0 : return B_FALSE;
257 : : }
258 : :
259 : : static boolean_t
260 : 0 : sfc_ev_dp_tx(void *arg, __rte_unused uint32_t label, uint32_t id)
261 : : {
262 : : struct sfc_evq *evq = arg;
263 : : struct sfc_dp_txq *dp_txq;
264 : :
265 : 0 : dp_txq = evq->dp_txq;
266 : : SFC_ASSERT(dp_txq != NULL);
267 : :
268 : : SFC_ASSERT(evq->sa->priv.dp_tx->qtx_ev != NULL);
269 : 0 : return evq->sa->priv.dp_tx->qtx_ev(dp_txq, id);
270 : : }
271 : :
272 : : static boolean_t
273 : 0 : sfc_ev_nop_tx_ndescs(void *arg, uint32_t label, unsigned int ndescs)
274 : : {
275 : : struct sfc_evq *evq = arg;
276 : :
277 : 0 : sfc_err(evq->sa, "EVQ %u unexpected Tx event label=%u ndescs=%#x",
278 : : evq->evq_index, label, ndescs);
279 : 0 : return B_TRUE;
280 : : }
281 : :
282 : : static boolean_t
283 : 0 : sfc_ev_dp_tx_ndescs(void *arg, __rte_unused uint32_t label,
284 : : unsigned int ndescs)
285 : : {
286 : : struct sfc_evq *evq = arg;
287 : : struct sfc_dp_txq *dp_txq;
288 : :
289 : 0 : dp_txq = evq->dp_txq;
290 : : SFC_ASSERT(dp_txq != NULL);
291 : :
292 : : SFC_ASSERT(evq->sa->priv.dp_tx->qtx_ev != NULL);
293 : 0 : return evq->sa->priv.dp_tx->qtx_ev(dp_txq, ndescs);
294 : : }
295 : :
296 : : static boolean_t
297 : 0 : sfc_ev_exception(void *arg, uint32_t code, __rte_unused uint32_t data)
298 : : {
299 : : struct sfc_evq *evq = arg;
300 : :
301 [ # # ]: 0 : if (code == EFX_EXCEPTION_UNKNOWN_SENSOREVT)
302 : : return B_FALSE;
303 : :
304 : 0 : evq->exception = B_TRUE;
305 [ # # ]: 0 : sfc_warn(evq->sa,
306 : : "hardware exception %s (code=%u, data=%#x) on EVQ %u;"
307 : : " needs recovery",
308 : : (code == EFX_EXCEPTION_RX_RECOVERY) ? "RX_RECOVERY" :
309 : : (code == EFX_EXCEPTION_RX_DSC_ERROR) ? "RX_DSC_ERROR" :
310 : : (code == EFX_EXCEPTION_TX_DSC_ERROR) ? "TX_DSC_ERROR" :
311 : : (code == EFX_EXCEPTION_FWALERT_SRAM) ? "FWALERT_SRAM" :
312 : : (code == EFX_EXCEPTION_UNKNOWN_FWALERT) ? "UNKNOWN_FWALERT" :
313 : : (code == EFX_EXCEPTION_RX_ERROR) ? "RX_ERROR" :
314 : : (code == EFX_EXCEPTION_TX_ERROR) ? "TX_ERROR" :
315 : : (code == EFX_EXCEPTION_EV_ERROR) ? "EV_ERROR" :
316 : : "UNKNOWN",
317 : : code, data, evq->evq_index);
318 : :
319 : 0 : return B_TRUE;
320 : : }
321 : :
322 : : static boolean_t
323 : 0 : sfc_ev_nop_rxq_flush_done(void *arg, uint32_t rxq_hw_index)
324 : : {
325 : : struct sfc_evq *evq = arg;
326 : :
327 : 0 : sfc_err(evq->sa, "EVQ %u unexpected RxQ %u flush done",
328 : : evq->evq_index, rxq_hw_index);
329 : 0 : return B_TRUE;
330 : : }
331 : :
332 : : static boolean_t
333 : 0 : sfc_ev_rxq_flush_done(void *arg, __rte_unused uint32_t rxq_hw_index)
334 : : {
335 : : struct sfc_evq *evq = arg;
336 : : struct sfc_dp_rxq *dp_rxq;
337 : : struct sfc_rxq *rxq;
338 : :
339 : 0 : dp_rxq = evq->dp_rxq;
340 : : SFC_ASSERT(dp_rxq != NULL);
341 : :
342 : 0 : rxq = sfc_rxq_by_dp_rxq(dp_rxq);
343 : : SFC_ASSERT(rxq != NULL);
344 : : SFC_ASSERT(rxq->hw_index == rxq_hw_index);
345 : : SFC_ASSERT(rxq->evq == evq);
346 : : RTE_SET_USED(rxq);
347 : :
348 : 0 : sfc_rx_qflush_done(sfc_rxq_info_by_dp_rxq(dp_rxq));
349 : :
350 : 0 : return B_FALSE;
351 : : }
352 : :
353 : : static boolean_t
354 : 0 : sfc_ev_nop_rxq_flush_failed(void *arg, uint32_t rxq_hw_index)
355 : : {
356 : : struct sfc_evq *evq = arg;
357 : :
358 : 0 : sfc_err(evq->sa, "EVQ %u unexpected RxQ %u flush failed",
359 : : evq->evq_index, rxq_hw_index);
360 : 0 : return B_TRUE;
361 : : }
362 : :
363 : : static boolean_t
364 : 0 : sfc_ev_rxq_flush_failed(void *arg, __rte_unused uint32_t rxq_hw_index)
365 : : {
366 : : struct sfc_evq *evq = arg;
367 : : struct sfc_dp_rxq *dp_rxq;
368 : : struct sfc_rxq *rxq;
369 : :
370 : 0 : dp_rxq = evq->dp_rxq;
371 : : SFC_ASSERT(dp_rxq != NULL);
372 : :
373 : 0 : rxq = sfc_rxq_by_dp_rxq(dp_rxq);
374 : : SFC_ASSERT(rxq != NULL);
375 : : SFC_ASSERT(rxq->hw_index == rxq_hw_index);
376 : : SFC_ASSERT(rxq->evq == evq);
377 : : RTE_SET_USED(rxq);
378 : :
379 : 0 : sfc_rx_qflush_failed(sfc_rxq_info_by_dp_rxq(dp_rxq));
380 : :
381 : 0 : return B_FALSE;
382 : : }
383 : :
384 : : static boolean_t
385 : 0 : sfc_ev_nop_txq_flush_done(void *arg, uint32_t txq_hw_index)
386 : : {
387 : : struct sfc_evq *evq = arg;
388 : :
389 : 0 : sfc_err(evq->sa, "EVQ %u unexpected TxQ %u flush done",
390 : : evq->evq_index, txq_hw_index);
391 : 0 : return B_TRUE;
392 : : }
393 : :
394 : : static boolean_t
395 : 0 : sfc_ev_txq_flush_done(void *arg, __rte_unused uint32_t txq_hw_index)
396 : : {
397 : : struct sfc_evq *evq = arg;
398 : : struct sfc_dp_txq *dp_txq;
399 : : struct sfc_txq *txq;
400 : :
401 : 0 : dp_txq = evq->dp_txq;
402 : : SFC_ASSERT(dp_txq != NULL);
403 : :
404 : 0 : txq = sfc_txq_by_dp_txq(dp_txq);
405 : : SFC_ASSERT(txq != NULL);
406 : : SFC_ASSERT(txq->hw_index == txq_hw_index);
407 : : SFC_ASSERT(txq->evq == evq);
408 : : RTE_SET_USED(txq);
409 : :
410 : 0 : sfc_tx_qflush_done(sfc_txq_info_by_dp_txq(dp_txq));
411 : :
412 : 0 : return B_FALSE;
413 : : }
414 : :
415 : : static boolean_t
416 : 0 : sfc_ev_software(void *arg, uint16_t magic)
417 : : {
418 : : struct sfc_evq *evq = arg;
419 : :
420 : 0 : sfc_err(evq->sa, "EVQ %u unexpected software event magic=%#.4x",
421 : : evq->evq_index, magic);
422 : 0 : return B_TRUE;
423 : : }
424 : :
425 : : static boolean_t
426 : 0 : sfc_ev_sram(void *arg, uint32_t code)
427 : : {
428 : : struct sfc_evq *evq = arg;
429 : :
430 : 0 : sfc_err(evq->sa, "EVQ %u unexpected SRAM event code=%u",
431 : : evq->evq_index, code);
432 : 0 : return B_TRUE;
433 : : }
434 : :
435 : : static boolean_t
436 : 0 : sfc_ev_wake_up(void *arg, uint32_t index)
437 : : {
438 : : struct sfc_evq *evq = arg;
439 : :
440 : 0 : sfc_err(evq->sa, "EVQ %u unexpected wake up event index=%u",
441 : : evq->evq_index, index);
442 : 0 : return B_TRUE;
443 : : }
444 : :
445 : : static boolean_t
446 : 0 : sfc_ev_timer(void *arg, uint32_t index)
447 : : {
448 : : struct sfc_evq *evq = arg;
449 : :
450 : 0 : sfc_err(evq->sa, "EVQ %u unexpected timer event index=%u",
451 : : evq->evq_index, index);
452 : 0 : return B_TRUE;
453 : : }
454 : :
455 : : static boolean_t
456 : 0 : sfc_ev_nop_link_change(void *arg, __rte_unused efx_link_mode_t link_mode)
457 : : {
458 : : struct sfc_evq *evq = arg;
459 : :
460 : 0 : sfc_err(evq->sa, "EVQ %u unexpected link change event",
461 : : evq->evq_index);
462 : 0 : return B_TRUE;
463 : : }
464 : :
465 : : static boolean_t
466 : 0 : sfc_ev_link_change(void *arg, efx_link_mode_t link_mode)
467 : : {
468 : : struct sfc_evq *evq = arg;
469 : 0 : struct sfc_adapter *sa = evq->sa;
470 : 0 : struct rte_eth_link new_link = {0};
471 : :
472 [ # # ]: 0 : if (sa->link_ev_need_poll) {
473 : : efx_link_mode_t new_mode;
474 : : bool poll_done = false;
475 : :
476 : : /*
477 : : * The event provides only the general status. When the link is
478 : : * up, poll the port to get the speed, but it is not compulsory.
479 : : */
480 [ # # ]: 0 : if (link_mode != EFX_LINK_DOWN) {
481 : : int ret = 0;
482 : :
483 [ # # ]: 0 : if (sfc_adapter_trylock(sa)) {
484 : : /* Never poll when the adaptor is going down. */
485 [ # # ]: 0 : if (sa->state == SFC_ETHDEV_STARTED) {
486 : 0 : ret = efx_port_poll(sa->nic, &new_mode);
487 : : poll_done = true;
488 : : }
489 : :
490 : : sfc_adapter_unlock(sa);
491 : : }
492 : :
493 [ # # ]: 0 : if (ret != 0) {
494 : 0 : sfc_warn(sa, "port poll failed on link event");
495 : : poll_done = false;
496 : : }
497 : : }
498 : :
499 [ # # ]: 0 : if (poll_done) {
500 : 0 : link_mode = new_mode;
501 : 0 : goto decode_comprehensive;
502 : : }
503 : :
504 : 0 : new_link.link_duplex = RTE_ETH_LINK_FULL_DUPLEX;
505 : 0 : new_link.link_autoneg = RTE_ETH_LINK_AUTONEG;
506 : :
507 [ # # ]: 0 : if (link_mode == EFX_LINK_DOWN) {
508 : 0 : new_link.link_speed = RTE_ETH_SPEED_NUM_NONE;
509 : 0 : new_link.link_status = RTE_ETH_LINK_DOWN;
510 : : } else {
511 : 0 : new_link.link_speed = RTE_ETH_SPEED_NUM_UNKNOWN;
512 : 0 : new_link.link_status = RTE_ETH_LINK_UP;
513 : : }
514 : :
515 : 0 : goto set;
516 : : }
517 : :
518 : 0 : decode_comprehensive:
519 : : /*
520 : : * Reading 'sa->port.phy_adv_cap' without acquiring adaptor lock may
521 : : * render autonegotiation status inaccurate, but that's not critical,
522 : : * as it's unlikely to happen often and may be a practical trade-off.
523 : : */
524 : 0 : sfc_port_link_mode_to_info(link_mode, sa->port.phy_adv_cap, &new_link);
525 : :
526 : 0 : set:
527 [ # # ]: 0 : if (rte_eth_linkstatus_set(sa->eth_dev, &new_link) == 0)
528 : 0 : evq->sa->port.lsc_seq++;
529 : :
530 : 0 : return B_FALSE;
531 : : }
532 : :
533 : : static const efx_ev_callbacks_t sfc_ev_callbacks = {
534 : : .eec_initialized = sfc_ev_initialized,
535 : : .eec_rx = sfc_ev_nop_rx,
536 : : .eec_rx_packets = sfc_ev_nop_rx_packets,
537 : : .eec_rx_ps = sfc_ev_nop_rx_ps,
538 : : .eec_tx = sfc_ev_nop_tx,
539 : : .eec_tx_ndescs = sfc_ev_nop_tx_ndescs,
540 : : .eec_exception = sfc_ev_exception,
541 : : .eec_rxq_flush_done = sfc_ev_nop_rxq_flush_done,
542 : : .eec_rxq_flush_failed = sfc_ev_nop_rxq_flush_failed,
543 : : .eec_txq_flush_done = sfc_ev_nop_txq_flush_done,
544 : : .eec_software = sfc_ev_software,
545 : : .eec_sram = sfc_ev_sram,
546 : : .eec_wake_up = sfc_ev_wake_up,
547 : : .eec_timer = sfc_ev_timer,
548 : : .eec_link_change = sfc_ev_link_change,
549 : : };
550 : :
551 : : static const efx_ev_callbacks_t sfc_ev_callbacks_efx_rx = {
552 : : .eec_initialized = sfc_ev_initialized,
553 : : .eec_rx = sfc_ev_efx_rx,
554 : : .eec_rx_packets = sfc_ev_nop_rx_packets,
555 : : .eec_rx_ps = sfc_ev_nop_rx_ps,
556 : : .eec_tx = sfc_ev_nop_tx,
557 : : .eec_tx_ndescs = sfc_ev_nop_tx_ndescs,
558 : : .eec_exception = sfc_ev_exception,
559 : : .eec_rxq_flush_done = sfc_ev_rxq_flush_done,
560 : : .eec_rxq_flush_failed = sfc_ev_rxq_flush_failed,
561 : : .eec_txq_flush_done = sfc_ev_nop_txq_flush_done,
562 : : .eec_software = sfc_ev_software,
563 : : .eec_sram = sfc_ev_sram,
564 : : .eec_wake_up = sfc_ev_wake_up,
565 : : .eec_timer = sfc_ev_timer,
566 : : .eec_link_change = sfc_ev_nop_link_change,
567 : : };
568 : :
569 : : static const efx_ev_callbacks_t sfc_ev_callbacks_dp_rx = {
570 : : .eec_initialized = sfc_ev_initialized,
571 : : .eec_rx = sfc_ev_dp_rx,
572 : : .eec_rx_packets = sfc_ev_dp_rx_packets,
573 : : .eec_rx_ps = sfc_ev_dp_rx_ps,
574 : : .eec_tx = sfc_ev_nop_tx,
575 : : .eec_tx_ndescs = sfc_ev_nop_tx_ndescs,
576 : : .eec_exception = sfc_ev_exception,
577 : : .eec_rxq_flush_done = sfc_ev_rxq_flush_done,
578 : : .eec_rxq_flush_failed = sfc_ev_rxq_flush_failed,
579 : : .eec_txq_flush_done = sfc_ev_nop_txq_flush_done,
580 : : .eec_software = sfc_ev_software,
581 : : .eec_sram = sfc_ev_sram,
582 : : .eec_wake_up = sfc_ev_wake_up,
583 : : .eec_timer = sfc_ev_timer,
584 : : .eec_link_change = sfc_ev_nop_link_change,
585 : : };
586 : :
587 : : static const efx_ev_callbacks_t sfc_ev_callbacks_efx_tx = {
588 : : .eec_initialized = sfc_ev_initialized,
589 : : .eec_rx = sfc_ev_nop_rx,
590 : : .eec_rx_packets = sfc_ev_nop_rx_packets,
591 : : .eec_rx_ps = sfc_ev_nop_rx_ps,
592 : : .eec_tx = sfc_ev_tx,
593 : : .eec_tx_ndescs = sfc_ev_nop_tx_ndescs,
594 : : .eec_exception = sfc_ev_exception,
595 : : .eec_rxq_flush_done = sfc_ev_nop_rxq_flush_done,
596 : : .eec_rxq_flush_failed = sfc_ev_nop_rxq_flush_failed,
597 : : .eec_txq_flush_done = sfc_ev_txq_flush_done,
598 : : .eec_software = sfc_ev_software,
599 : : .eec_sram = sfc_ev_sram,
600 : : .eec_wake_up = sfc_ev_wake_up,
601 : : .eec_timer = sfc_ev_timer,
602 : : .eec_link_change = sfc_ev_nop_link_change,
603 : : };
604 : :
605 : : static const efx_ev_callbacks_t sfc_ev_callbacks_dp_tx = {
606 : : .eec_initialized = sfc_ev_initialized,
607 : : .eec_rx = sfc_ev_nop_rx,
608 : : .eec_rx_packets = sfc_ev_nop_rx_packets,
609 : : .eec_rx_ps = sfc_ev_nop_rx_ps,
610 : : .eec_tx = sfc_ev_dp_tx,
611 : : .eec_tx_ndescs = sfc_ev_dp_tx_ndescs,
612 : : .eec_exception = sfc_ev_exception,
613 : : .eec_rxq_flush_done = sfc_ev_nop_rxq_flush_done,
614 : : .eec_rxq_flush_failed = sfc_ev_nop_rxq_flush_failed,
615 : : .eec_txq_flush_done = sfc_ev_txq_flush_done,
616 : : .eec_software = sfc_ev_software,
617 : : .eec_sram = sfc_ev_sram,
618 : : .eec_wake_up = sfc_ev_wake_up,
619 : : .eec_timer = sfc_ev_timer,
620 : : .eec_link_change = sfc_ev_nop_link_change,
621 : : };
622 : :
623 : :
624 : : void
625 : 0 : sfc_ev_qpoll(struct sfc_evq *evq)
626 : : {
627 : : struct sfc_adapter *sa;
628 : :
629 : : SFC_ASSERT(evq->init_state == SFC_EVQ_STARTED ||
630 : : evq->init_state == SFC_EVQ_STARTING);
631 : :
632 : : /* Synchronize the DMA memory for reading not required */
633 : :
634 : 0 : efx_ev_qpoll(evq->common, &evq->read_ptr, evq->callbacks, evq);
635 : :
636 : 0 : sa = evq->sa;
637 [ # # # # ]: 0 : if (unlikely(evq->exception) && sfc_adapter_trylock(sa)) {
638 : : int rc;
639 : :
640 [ # # ]: 0 : if (evq->dp_rxq != NULL) {
641 : : sfc_sw_index_t rxq_sw_index;
642 : :
643 : 0 : rxq_sw_index = evq->dp_rxq->dpq.queue_id;
644 : :
645 : 0 : sfc_warn(sa,
646 : : "restart RxQ %u because of exception on its EvQ %u",
647 : : rxq_sw_index, evq->evq_index);
648 : :
649 : 0 : sfc_rx_qstop(sa, rxq_sw_index);
650 : 0 : rc = sfc_rx_qstart(sa, rxq_sw_index);
651 [ # # ]: 0 : if (rc != 0)
652 : 0 : sfc_err(sa, "cannot restart RxQ %u",
653 : : rxq_sw_index);
654 : : }
655 : :
656 [ # # ]: 0 : if (evq->dp_txq != NULL) {
657 : : sfc_sw_index_t txq_sw_index;
658 : :
659 : 0 : txq_sw_index = evq->dp_txq->dpq.queue_id;
660 : :
661 : 0 : sfc_warn(sa,
662 : : "restart TxQ %u because of exception on its EvQ %u",
663 : : txq_sw_index, evq->evq_index);
664 : :
665 : 0 : sfc_tx_qstop(sa, txq_sw_index);
666 : 0 : rc = sfc_tx_qstart(sa, txq_sw_index);
667 [ # # ]: 0 : if (rc != 0)
668 : 0 : sfc_err(sa, "cannot restart TxQ %u",
669 : : txq_sw_index);
670 : : }
671 : :
672 [ # # ]: 0 : if (evq->exception)
673 : 0 : sfc_panic(sa, "unrecoverable exception on EvQ %u",
674 : : evq->evq_index);
675 : :
676 : : sfc_adapter_unlock(sa);
677 : : }
678 : :
679 : : /* Poll-mode driver does not re-prime the event queue for interrupts */
680 : 0 : }
681 : :
682 : : void
683 : 0 : sfc_ev_mgmt_qpoll(struct sfc_adapter *sa)
684 : : {
685 [ # # ]: 0 : if (rte_spinlock_trylock(&sa->mgmt_evq_lock)) {
686 [ # # ]: 0 : if (sa->mgmt_evq_running)
687 : 0 : sfc_ev_qpoll(sa->mgmt_evq);
688 : :
689 : : rte_spinlock_unlock(&sa->mgmt_evq_lock);
690 : : }
691 : 0 : }
692 : :
693 : : int
694 : 0 : sfc_ev_qprime(struct sfc_evq *evq)
695 : : {
696 : : SFC_ASSERT(evq->init_state == SFC_EVQ_STARTED);
697 : 0 : return efx_ev_qprime(evq->common, evq->read_ptr);
698 : : }
699 : :
700 : : /* Event queue HW index allocation scheme is described in sfc_ev.h. */
701 : : int
702 : 0 : sfc_ev_qstart(struct sfc_evq *evq, unsigned int hw_index)
703 : : {
704 : 0 : struct sfc_adapter *sa = evq->sa;
705 : : efsys_mem_t *esmp;
706 : 0 : uint32_t evq_flags = sa->evq_flags;
707 : : uint32_t irq = 0;
708 : : unsigned int total_delay_us;
709 : : unsigned int delay_us;
710 : : int rc;
711 : :
712 : 0 : sfc_log_init(sa, "hw_index=%u", hw_index);
713 : :
714 : 0 : esmp = &evq->mem;
715 : :
716 : 0 : evq->evq_index = hw_index;
717 : :
718 : : /* Clear all events */
719 [ # # ]: 0 : (void)memset((void *)esmp->esm_base, 0xff,
720 : 0 : efx_evq_size(sa->nic, evq->entries, evq_flags));
721 : :
722 [ # # # # ]: 0 : if (sa->intr.lsc_intr && hw_index == sa->mgmt_evq_index) {
723 : : evq_flags |= EFX_EVQ_FLAGS_NOTIFY_INTERRUPT;
724 : : irq = 0;
725 [ # # # # ]: 0 : } else if (sa->intr.rxq_intr && evq->dp_rxq != NULL) {
726 : : sfc_ethdev_qid_t ethdev_qid;
727 : :
728 : : ethdev_qid =
729 : 0 : sfc_ethdev_rx_qid_by_rxq_sw_index(sfc_sa2shared(sa),
730 [ # # ]: 0 : evq->dp_rxq->dpq.queue_id);
731 [ # # ]: 0 : if (ethdev_qid != SFC_ETHDEV_QID_INVALID) {
732 : : evq_flags |= EFX_EVQ_FLAGS_NOTIFY_INTERRUPT;
733 : : /*
734 : : * The first interrupt is used for management EvQ
735 : : * (LSC etc). RxQ interrupts follow it.
736 : : */
737 : 0 : irq = 1 + ethdev_qid;
738 : : } else {
739 : 0 : evq_flags |= EFX_EVQ_FLAGS_NOTIFY_DISABLED;
740 : : }
741 : : } else {
742 : 0 : evq_flags |= EFX_EVQ_FLAGS_NOTIFY_DISABLED;
743 : : }
744 : :
745 : 0 : evq->init_state = SFC_EVQ_STARTING;
746 : :
747 : : /* Create the common code event queue */
748 : 0 : rc = efx_ev_qcreate_irq(sa->nic, hw_index, esmp, evq->entries,
749 : : 0 /* unused on EF10 */, 0, evq_flags,
750 : : irq, &evq->common);
751 [ # # ]: 0 : if (rc != 0)
752 : 0 : goto fail_ev_qcreate;
753 : :
754 : : SFC_ASSERT(evq->dp_rxq == NULL || evq->dp_txq == NULL);
755 [ # # ]: 0 : if (evq->dp_rxq != 0) {
756 [ # # ]: 0 : if (strcmp(sa->priv.dp_rx->dp.name,
757 : : SFC_KVARG_DATAPATH_EFX) == 0)
758 : 0 : evq->callbacks = &sfc_ev_callbacks_efx_rx;
759 : : else
760 : 0 : evq->callbacks = &sfc_ev_callbacks_dp_rx;
761 [ # # ]: 0 : } else if (evq->dp_txq != 0) {
762 [ # # ]: 0 : if (strcmp(sa->priv.dp_tx->dp.name,
763 : : SFC_KVARG_DATAPATH_EFX) == 0)
764 : 0 : evq->callbacks = &sfc_ev_callbacks_efx_tx;
765 : : else
766 : 0 : evq->callbacks = &sfc_ev_callbacks_dp_tx;
767 : : } else {
768 : 0 : evq->callbacks = &sfc_ev_callbacks;
769 : : }
770 : :
771 : : /*
772 : : * Poll once to ensure that eec_initialized callback is invoked in
773 : : * case if the hardware does not support INIT_DONE events. If the
774 : : * hardware supports INIT_DONE events, this will do nothing, and the
775 : : * corresponding event will be processed by sfc_ev_qpoll() below.
776 : : */
777 : 0 : efx_ev_qcreate_check_init_done(evq->common, evq->callbacks, evq);
778 : :
779 : : /* Wait for the initialization event */
780 : : total_delay_us = 0;
781 : : delay_us = SFC_EVQ_INIT_BACKOFF_START_US;
782 : : do {
783 : 0 : (void)sfc_ev_qpoll(evq);
784 : :
785 : : /* Check to see if the initialization complete indication
786 : : * posted by the hardware.
787 : : */
788 [ # # ]: 0 : if (evq->init_state == SFC_EVQ_STARTED)
789 : 0 : goto done;
790 : :
791 : : /* Give event queue some time to init */
792 : 0 : rte_delay_us(delay_us);
793 : :
794 : 0 : total_delay_us += delay_us;
795 : :
796 : : /* Exponential backoff */
797 : 0 : delay_us *= 2;
798 : : if (delay_us > SFC_EVQ_INIT_BACKOFF_MAX_US)
799 : : delay_us = SFC_EVQ_INIT_BACKOFF_MAX_US;
800 : :
801 [ # # ]: 0 : } while (total_delay_us < SFC_EVQ_INIT_TIMEOUT_US);
802 : :
803 : : rc = ETIMEDOUT;
804 : 0 : goto fail_timedout;
805 : :
806 : : done:
807 : 0 : return 0;
808 : :
809 : : fail_timedout:
810 : 0 : efx_ev_qdestroy(evq->common);
811 : :
812 : 0 : fail_ev_qcreate:
813 : 0 : evq->init_state = SFC_EVQ_INITIALIZED;
814 : 0 : sfc_log_init(sa, "failed %d", rc);
815 : 0 : return rc;
816 : : }
817 : :
818 : : void
819 : 0 : sfc_ev_qstop(struct sfc_evq *evq)
820 : : {
821 [ # # ]: 0 : if (evq == NULL)
822 : : return;
823 : :
824 : 0 : sfc_log_init(evq->sa, "hw_index=%u", evq->evq_index);
825 : :
826 [ # # ]: 0 : if (evq->init_state != SFC_EVQ_STARTED)
827 : : return;
828 : :
829 : 0 : evq->init_state = SFC_EVQ_INITIALIZED;
830 : 0 : evq->callbacks = NULL;
831 : 0 : evq->read_ptr = 0;
832 : 0 : evq->exception = B_FALSE;
833 : :
834 : 0 : efx_ev_qdestroy(evq->common);
835 : :
836 : 0 : evq->evq_index = 0;
837 : : }
838 : :
839 : : static void
840 : 0 : sfc_ev_mgmt_periodic_qpoll(void *arg)
841 : : {
842 : : struct sfc_adapter *sa = arg;
843 : : int rc;
844 : :
845 : 0 : sfc_ev_mgmt_qpoll(sa);
846 : :
847 : 0 : rc = rte_eal_alarm_set(SFC_MGMT_EV_QPOLL_PERIOD_US,
848 : : sfc_ev_mgmt_periodic_qpoll, sa);
849 [ # # ]: 0 : if (rc == -ENOTSUP) {
850 : 0 : sfc_warn(sa, "alarms are not supported");
851 : 0 : sfc_warn(sa, "management EVQ must be polled indirectly using no-wait link status update");
852 [ # # ]: 0 : } else if (rc != 0) {
853 : 0 : sfc_err(sa,
854 : : "cannot rearm management EVQ polling alarm (rc=%d)",
855 : : rc);
856 : : }
857 : 0 : }
858 : :
859 : : static void
860 : : sfc_ev_mgmt_periodic_qpoll_start(struct sfc_adapter *sa)
861 : : {
862 : 0 : sfc_ev_mgmt_periodic_qpoll(sa);
863 : : }
864 : :
865 : : static void
866 : : sfc_ev_mgmt_periodic_qpoll_stop(struct sfc_adapter *sa)
867 : : {
868 : 0 : rte_eal_alarm_cancel(sfc_ev_mgmt_periodic_qpoll, sa);
869 : : }
870 : :
871 : : int
872 : 0 : sfc_ev_start(struct sfc_adapter *sa)
873 : : {
874 : : int rc;
875 : :
876 : 0 : sfc_log_init(sa, "entry");
877 : :
878 : 0 : rc = efx_ev_init(sa->nic);
879 [ # # ]: 0 : if (rc != 0)
880 : 0 : goto fail_ev_init;
881 : :
882 : : /* Start management EVQ used for global events */
883 : :
884 : : /*
885 : : * Management event queue start polls the queue, but it cannot
886 : : * interfere with other polling contexts since mgmt_evq_running
887 : : * is false yet.
888 : : */
889 : 0 : rc = sfc_ev_qstart(sa->mgmt_evq, sa->mgmt_evq_index);
890 [ # # ]: 0 : if (rc != 0)
891 : 0 : goto fail_mgmt_evq_start;
892 : :
893 : 0 : rte_spinlock_lock(&sa->mgmt_evq_lock);
894 : 0 : sa->mgmt_evq_running = true;
895 : : rte_spinlock_unlock(&sa->mgmt_evq_lock);
896 : :
897 [ # # ]: 0 : if (sa->intr.lsc_intr) {
898 : 0 : rc = sfc_ev_qprime(sa->mgmt_evq);
899 [ # # ]: 0 : if (rc != 0)
900 : 0 : goto fail_mgmt_evq_prime;
901 : : }
902 : :
903 : : /*
904 : : * Start management EVQ polling. If interrupts are disabled
905 : : * (not used), it is required to process link status change
906 : : * and other device level events to avoid unrecoverable
907 : : * error because the event queue overflow.
908 : : */
909 : : sfc_ev_mgmt_periodic_qpoll_start(sa);
910 : :
911 : : /*
912 : : * Rx/Tx event queues are started/stopped when corresponding
913 : : * Rx/Tx queue is started/stopped.
914 : : */
915 : :
916 : 0 : return 0;
917 : :
918 : : fail_mgmt_evq_prime:
919 : 0 : sfc_ev_qstop(sa->mgmt_evq);
920 : :
921 : 0 : fail_mgmt_evq_start:
922 : 0 : efx_ev_fini(sa->nic);
923 : :
924 : 0 : fail_ev_init:
925 : 0 : sfc_log_init(sa, "failed %d", rc);
926 : 0 : return rc;
927 : : }
928 : :
929 : : void
930 : 0 : sfc_ev_stop(struct sfc_adapter *sa)
931 : : {
932 : 0 : sfc_log_init(sa, "entry");
933 : :
934 : : sfc_ev_mgmt_periodic_qpoll_stop(sa);
935 : :
936 : 0 : rte_spinlock_lock(&sa->mgmt_evq_lock);
937 : 0 : sa->mgmt_evq_running = false;
938 : : rte_spinlock_unlock(&sa->mgmt_evq_lock);
939 : :
940 : 0 : sfc_ev_qstop(sa->mgmt_evq);
941 : :
942 : 0 : efx_ev_fini(sa->nic);
943 : 0 : }
944 : :
945 : : int
946 : 0 : sfc_ev_qinit(struct sfc_adapter *sa,
947 : : enum sfc_evq_type type, unsigned int type_index,
948 : : unsigned int entries, int socket_id, struct sfc_evq **evqp)
949 : : {
950 : : struct sfc_evq *evq;
951 : : int rc;
952 : :
953 [ # # # # ]: 0 : sfc_log_init(sa, "type=%s type_index=%u",
954 : : sfc_evq_type2str(type), type_index);
955 : :
956 : : SFC_ASSERT(rte_is_power_of_2(entries));
957 : :
958 : : rc = ENOMEM;
959 : 0 : evq = rte_zmalloc_socket("sfc-evq", sizeof(*evq), RTE_CACHE_LINE_SIZE,
960 : : socket_id);
961 [ # # ]: 0 : if (evq == NULL)
962 : 0 : goto fail_evq_alloc;
963 : :
964 : 0 : evq->sa = sa;
965 : 0 : evq->type = type;
966 : 0 : evq->entries = entries;
967 : :
968 : : /* Allocate DMA space */
969 [ # # # # ]: 0 : rc = sfc_dma_alloc(sa, sfc_evq_type2str(type), type_index,
970 : : EFX_NIC_DMA_ADDR_EVENT_RING,
971 : 0 : efx_evq_size(sa->nic, evq->entries, sa->evq_flags),
972 : : socket_id, &evq->mem);
973 [ # # ]: 0 : if (rc != 0)
974 : 0 : goto fail_dma_alloc;
975 : :
976 : 0 : evq->init_state = SFC_EVQ_INITIALIZED;
977 : :
978 : 0 : sa->evq_count++;
979 : :
980 : 0 : *evqp = evq;
981 : :
982 : 0 : return 0;
983 : :
984 : : fail_dma_alloc:
985 : 0 : rte_free(evq);
986 : :
987 : 0 : fail_evq_alloc:
988 : :
989 : 0 : sfc_log_init(sa, "failed %d", rc);
990 : 0 : return rc;
991 : : }
992 : :
993 : : void
994 : 0 : sfc_ev_qfini(struct sfc_evq *evq)
995 : : {
996 : 0 : struct sfc_adapter *sa = evq->sa;
997 : :
998 : : SFC_ASSERT(evq->init_state == SFC_EVQ_INITIALIZED);
999 : :
1000 : 0 : sfc_dma_free(sa, &evq->mem);
1001 : :
1002 : 0 : rte_free(evq);
1003 : :
1004 : : SFC_ASSERT(sa->evq_count > 0);
1005 : 0 : sa->evq_count--;
1006 : 0 : }
1007 : :
1008 : : static int
1009 : 0 : sfc_kvarg_perf_profile_handler(__rte_unused const char *key,
1010 : : const char *value_str, void *opaque)
1011 : : {
1012 : : uint32_t *value = opaque;
1013 : :
1014 [ # # ]: 0 : if (strcasecmp(value_str, SFC_KVARG_PERF_PROFILE_THROUGHPUT) == 0)
1015 : 0 : *value = EFX_EVQ_FLAGS_TYPE_THROUGHPUT;
1016 [ # # ]: 0 : else if (strcasecmp(value_str, SFC_KVARG_PERF_PROFILE_LOW_LATENCY) == 0)
1017 : 0 : *value = EFX_EVQ_FLAGS_TYPE_LOW_LATENCY;
1018 [ # # ]: 0 : else if (strcasecmp(value_str, SFC_KVARG_PERF_PROFILE_AUTO) == 0)
1019 : 0 : *value = EFX_EVQ_FLAGS_TYPE_AUTO;
1020 : : else
1021 : : return -EINVAL;
1022 : :
1023 : : return 0;
1024 : : }
1025 : :
1026 : : int
1027 : 0 : sfc_ev_attach(struct sfc_adapter *sa)
1028 : : {
1029 : : int rc;
1030 : :
1031 : 0 : sfc_log_init(sa, "entry");
1032 : :
1033 : 0 : sa->evq_flags = EFX_EVQ_FLAGS_TYPE_THROUGHPUT;
1034 : 0 : rc = sfc_kvargs_process(sa, SFC_KVARG_PERF_PROFILE,
1035 : : sfc_kvarg_perf_profile_handler,
1036 : 0 : &sa->evq_flags);
1037 [ # # ]: 0 : if (rc != 0) {
1038 : 0 : sfc_err(sa, "invalid %s parameter value",
1039 : : SFC_KVARG_PERF_PROFILE);
1040 : 0 : goto fail_kvarg_perf_profile;
1041 : : }
1042 : :
1043 : 0 : sa->mgmt_evq_index = sfc_mgmt_evq_sw_index(sfc_sa2shared(sa));
1044 : : rte_spinlock_init(&sa->mgmt_evq_lock);
1045 : :
1046 : 0 : rc = sfc_ev_qinit(sa, SFC_EVQ_TYPE_MGMT, 0, sa->evq_min_entries,
1047 : : sa->socket_id, &sa->mgmt_evq);
1048 [ # # ]: 0 : if (rc != 0)
1049 : 0 : goto fail_mgmt_evq_init;
1050 : :
1051 : : /*
1052 : : * Rx/Tx event queues are created/destroyed when corresponding
1053 : : * Rx/Tx queue is created/destroyed.
1054 : : */
1055 : :
1056 : : return 0;
1057 : :
1058 : : fail_mgmt_evq_init:
1059 : :
1060 : 0 : fail_kvarg_perf_profile:
1061 : 0 : sfc_log_init(sa, "failed %d", rc);
1062 : 0 : return rc;
1063 : : }
1064 : :
1065 : : void
1066 : 0 : sfc_ev_detach(struct sfc_adapter *sa)
1067 : : {
1068 : 0 : sfc_log_init(sa, "entry");
1069 : :
1070 : 0 : sfc_ev_qfini(sa->mgmt_evq);
1071 : :
1072 [ # # ]: 0 : if (sa->evq_count != 0)
1073 : 0 : sfc_err(sa, "%u EvQs are not destroyed before detach",
1074 : : sa->evq_count);
1075 : 0 : }
|