1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#include "i40evf.h"
28#include "i40e_prototype.h"
29
30
31#define I40EVF_BUSY_WAIT_DELAY 10
32#define I40EVF_BUSY_WAIT_COUNT 50
33
34
35
36
37
38
39
40
41
42
43static int i40evf_send_pf_msg(struct i40evf_adapter *adapter,
44 enum i40e_virtchnl_ops op, u8 *msg, u16 len)
45{
46 struct i40e_hw *hw = &adapter->hw;
47 i40e_status err;
48
49 if (adapter->flags & I40EVF_FLAG_PF_COMMS_FAILED)
50 return 0;
51
52 err = i40e_aq_send_msg_to_pf(hw, op, 0, msg, len, NULL);
53 if (err)
54 dev_err(&adapter->pdev->dev, "Unable to send opcode %d to PF, error %d, aq status %d\n",
55 op, err, hw->aq.asq_last_status);
56 return err;
57}
58
59
60
61
62
63
64
65
66
67int i40evf_send_api_ver(struct i40evf_adapter *adapter)
68{
69 struct i40e_virtchnl_version_info vvi;
70
71 vvi.major = I40E_VIRTCHNL_VERSION_MAJOR;
72 vvi.minor = I40E_VIRTCHNL_VERSION_MINOR;
73
74 return i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_VERSION, (u8 *)&vvi,
75 sizeof(vvi));
76}
77
78
79
80
81
82
83
84
85
86
87int i40evf_verify_api_ver(struct i40evf_adapter *adapter)
88{
89 struct i40e_virtchnl_version_info *pf_vvi;
90 struct i40e_hw *hw = &adapter->hw;
91 struct i40e_arq_event_info event;
92 enum i40e_virtchnl_ops op;
93 i40e_status err;
94
95 event.buf_len = I40EVF_MAX_AQ_BUF_SIZE;
96 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
97 if (!event.msg_buf) {
98 err = -ENOMEM;
99 goto out;
100 }
101
102 while (1) {
103 err = i40evf_clean_arq_element(hw, &event, NULL);
104
105
106
107 if (err)
108 goto out_alloc;
109 op =
110 (enum i40e_virtchnl_ops)le32_to_cpu(event.desc.cookie_high);
111 if (op == I40E_VIRTCHNL_OP_VERSION)
112 break;
113 }
114
115
116 err = (i40e_status)le32_to_cpu(event.desc.cookie_low);
117 if (err)
118 goto out_alloc;
119
120 if (op != I40E_VIRTCHNL_OP_VERSION) {
121 dev_info(&adapter->pdev->dev, "Invalid reply type %d from PF\n",
122 op);
123 err = -EIO;
124 goto out_alloc;
125 }
126
127 pf_vvi = (struct i40e_virtchnl_version_info *)event.msg_buf;
128 if ((pf_vvi->major != I40E_VIRTCHNL_VERSION_MAJOR) ||
129 (pf_vvi->minor != I40E_VIRTCHNL_VERSION_MINOR))
130 err = -EIO;
131
132out_alloc:
133 kfree(event.msg_buf);
134out:
135 return err;
136}
137
138
139
140
141
142
143
144
145
146int i40evf_send_vf_config_msg(struct i40evf_adapter *adapter)
147{
148 return i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_GET_VF_RESOURCES,
149 NULL, 0);
150}
151
152
153
154
155
156
157
158
159
160
161
162int i40evf_get_vf_config(struct i40evf_adapter *adapter)
163{
164 struct i40e_hw *hw = &adapter->hw;
165 struct i40e_arq_event_info event;
166 enum i40e_virtchnl_ops op;
167 i40e_status err;
168 u16 len;
169
170 len = sizeof(struct i40e_virtchnl_vf_resource) +
171 I40E_MAX_VF_VSI * sizeof(struct i40e_virtchnl_vsi_resource);
172 event.buf_len = len;
173 event.msg_buf = kzalloc(event.buf_len, GFP_KERNEL);
174 if (!event.msg_buf) {
175 err = -ENOMEM;
176 goto out;
177 }
178
179 while (1) {
180
181
182
183 err = i40evf_clean_arq_element(hw, &event, NULL);
184 if (err)
185 goto out_alloc;
186 op =
187 (enum i40e_virtchnl_ops)le32_to_cpu(event.desc.cookie_high);
188 if (op == I40E_VIRTCHNL_OP_GET_VF_RESOURCES)
189 break;
190 }
191
192 err = (i40e_status)le32_to_cpu(event.desc.cookie_low);
193 memcpy(adapter->vf_res, event.msg_buf, min(event.msg_len, len));
194
195 i40e_vf_parse_hw_config(hw, adapter->vf_res);
196out_alloc:
197 kfree(event.msg_buf);
198out:
199 return err;
200}
201
202
203
204
205
206
207
208void i40evf_configure_queues(struct i40evf_adapter *adapter)
209{
210 struct i40e_virtchnl_vsi_queue_config_info *vqci;
211 struct i40e_virtchnl_queue_pair_info *vqpi;
212 int pairs = adapter->num_active_queues;
213 int i, len;
214
215 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
216
217 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
218 __func__, adapter->current_op);
219 return;
220 }
221 adapter->current_op = I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES;
222 len = sizeof(struct i40e_virtchnl_vsi_queue_config_info) +
223 (sizeof(struct i40e_virtchnl_queue_pair_info) * pairs);
224 vqci = kzalloc(len, GFP_ATOMIC);
225 if (!vqci)
226 return;
227
228 vqci->vsi_id = adapter->vsi_res->vsi_id;
229 vqci->num_queue_pairs = pairs;
230 vqpi = vqci->qpair;
231
232
233
234 for (i = 0; i < pairs; i++) {
235 vqpi->txq.vsi_id = vqci->vsi_id;
236 vqpi->txq.queue_id = i;
237 vqpi->txq.ring_len = adapter->tx_rings[i]->count;
238 vqpi->txq.dma_ring_addr = adapter->tx_rings[i]->dma;
239 vqpi->txq.headwb_enabled = 1;
240 vqpi->txq.dma_headwb_addr = vqpi->txq.dma_ring_addr +
241 (vqpi->txq.ring_len * sizeof(struct i40e_tx_desc));
242
243 vqpi->rxq.vsi_id = vqci->vsi_id;
244 vqpi->rxq.queue_id = i;
245 vqpi->rxq.ring_len = adapter->rx_rings[i]->count;
246 vqpi->rxq.dma_ring_addr = adapter->rx_rings[i]->dma;
247 vqpi->rxq.max_pkt_size = adapter->netdev->mtu
248 + ETH_HLEN + VLAN_HLEN + ETH_FCS_LEN;
249 vqpi->rxq.databuffer_size = adapter->rx_rings[i]->rx_buf_len;
250 vqpi++;
251 }
252
253 adapter->aq_required &= ~I40EVF_FLAG_AQ_CONFIGURE_QUEUES;
254 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_CONFIG_VSI_QUEUES,
255 (u8 *)vqci, len);
256 kfree(vqci);
257}
258
259
260
261
262
263
264
265void i40evf_enable_queues(struct i40evf_adapter *adapter)
266{
267 struct i40e_virtchnl_queue_select vqs;
268
269 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
270
271 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
272 __func__, adapter->current_op);
273 return;
274 }
275 adapter->current_op = I40E_VIRTCHNL_OP_ENABLE_QUEUES;
276 vqs.vsi_id = adapter->vsi_res->vsi_id;
277 vqs.tx_queues = (1 << adapter->num_active_queues) - 1;
278 vqs.rx_queues = vqs.tx_queues;
279 adapter->aq_required &= ~I40EVF_FLAG_AQ_ENABLE_QUEUES;
280 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_ENABLE_QUEUES,
281 (u8 *)&vqs, sizeof(vqs));
282}
283
284
285
286
287
288
289
290void i40evf_disable_queues(struct i40evf_adapter *adapter)
291{
292 struct i40e_virtchnl_queue_select vqs;
293
294 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
295
296 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
297 __func__, adapter->current_op);
298 return;
299 }
300 adapter->current_op = I40E_VIRTCHNL_OP_DISABLE_QUEUES;
301 vqs.vsi_id = adapter->vsi_res->vsi_id;
302 vqs.tx_queues = (1 << adapter->num_active_queues) - 1;
303 vqs.rx_queues = vqs.tx_queues;
304 adapter->aq_required &= ~I40EVF_FLAG_AQ_DISABLE_QUEUES;
305 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_DISABLE_QUEUES,
306 (u8 *)&vqs, sizeof(vqs));
307}
308
309
310
311
312
313
314
315
316void i40evf_map_queues(struct i40evf_adapter *adapter)
317{
318 struct i40e_virtchnl_irq_map_info *vimi;
319 int v_idx, q_vectors, len;
320 struct i40e_q_vector *q_vector;
321
322 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
323
324 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
325 __func__, adapter->current_op);
326 return;
327 }
328 adapter->current_op = I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP;
329
330 q_vectors = adapter->num_msix_vectors - NONQ_VECS;
331
332 len = sizeof(struct i40e_virtchnl_irq_map_info) +
333 (adapter->num_msix_vectors *
334 sizeof(struct i40e_virtchnl_vector_map));
335 vimi = kzalloc(len, GFP_ATOMIC);
336 if (!vimi)
337 return;
338
339 vimi->num_vectors = adapter->num_msix_vectors;
340
341 for (v_idx = 0; v_idx < q_vectors; v_idx++) {
342 q_vector = adapter->q_vector[v_idx];
343 vimi->vecmap[v_idx].vsi_id = adapter->vsi_res->vsi_id;
344 vimi->vecmap[v_idx].vector_id = v_idx + NONQ_VECS;
345 vimi->vecmap[v_idx].txq_map = q_vector->ring_mask;
346 vimi->vecmap[v_idx].rxq_map = q_vector->ring_mask;
347 }
348
349 vimi->vecmap[v_idx].vsi_id = adapter->vsi_res->vsi_id;
350 vimi->vecmap[v_idx].vector_id = 0;
351 vimi->vecmap[v_idx].txq_map = 0;
352 vimi->vecmap[v_idx].rxq_map = 0;
353
354 adapter->aq_required &= ~I40EVF_FLAG_AQ_MAP_VECTORS;
355 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP,
356 (u8 *)vimi, len);
357 kfree(vimi);
358}
359
360
361
362
363
364
365
366
367
368void i40evf_add_ether_addrs(struct i40evf_adapter *adapter)
369{
370 struct i40e_virtchnl_ether_addr_list *veal;
371 int len, i = 0, count = 0;
372 struct i40evf_mac_filter *f;
373
374 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
375
376 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
377 __func__, adapter->current_op);
378 return;
379 }
380 list_for_each_entry(f, &adapter->mac_filter_list, list) {
381 if (f->add)
382 count++;
383 }
384 if (!count) {
385 adapter->aq_required &= ~I40EVF_FLAG_AQ_ADD_MAC_FILTER;
386 return;
387 }
388 adapter->current_op = I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS;
389
390 len = sizeof(struct i40e_virtchnl_ether_addr_list) +
391 (count * sizeof(struct i40e_virtchnl_ether_addr));
392 if (len > I40EVF_MAX_AQ_BUF_SIZE) {
393 dev_warn(&adapter->pdev->dev, "%s: Too many MAC address changes in one request\n",
394 __func__);
395 count = (I40EVF_MAX_AQ_BUF_SIZE -
396 sizeof(struct i40e_virtchnl_ether_addr_list)) /
397 sizeof(struct i40e_virtchnl_ether_addr);
398 len = I40EVF_MAX_AQ_BUF_SIZE;
399 }
400
401 veal = kzalloc(len, GFP_ATOMIC);
402 if (!veal)
403 return;
404
405 veal->vsi_id = adapter->vsi_res->vsi_id;
406 veal->num_elements = count;
407 list_for_each_entry(f, &adapter->mac_filter_list, list) {
408 if (f->add) {
409 ether_addr_copy(veal->list[i].addr, f->macaddr);
410 i++;
411 f->add = false;
412 }
413 }
414 adapter->aq_required &= ~I40EVF_FLAG_AQ_ADD_MAC_FILTER;
415 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_ADD_ETHER_ADDRESS,
416 (u8 *)veal, len);
417 kfree(veal);
418}
419
420
421
422
423
424
425
426
427
428void i40evf_del_ether_addrs(struct i40evf_adapter *adapter)
429{
430 struct i40e_virtchnl_ether_addr_list *veal;
431 struct i40evf_mac_filter *f, *ftmp;
432 int len, i = 0, count = 0;
433
434 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
435
436 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
437 __func__, adapter->current_op);
438 return;
439 }
440 list_for_each_entry(f, &adapter->mac_filter_list, list) {
441 if (f->remove)
442 count++;
443 }
444 if (!count) {
445 adapter->aq_required &= ~I40EVF_FLAG_AQ_DEL_MAC_FILTER;
446 return;
447 }
448 adapter->current_op = I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS;
449
450 len = sizeof(struct i40e_virtchnl_ether_addr_list) +
451 (count * sizeof(struct i40e_virtchnl_ether_addr));
452 if (len > I40EVF_MAX_AQ_BUF_SIZE) {
453 dev_warn(&adapter->pdev->dev, "%s: Too many MAC address changes in one request\n",
454 __func__);
455 count = (I40EVF_MAX_AQ_BUF_SIZE -
456 sizeof(struct i40e_virtchnl_ether_addr_list)) /
457 sizeof(struct i40e_virtchnl_ether_addr);
458 len = I40EVF_MAX_AQ_BUF_SIZE;
459 }
460 veal = kzalloc(len, GFP_ATOMIC);
461 if (!veal)
462 return;
463
464 veal->vsi_id = adapter->vsi_res->vsi_id;
465 veal->num_elements = count;
466 list_for_each_entry_safe(f, ftmp, &adapter->mac_filter_list, list) {
467 if (f->remove) {
468 ether_addr_copy(veal->list[i].addr, f->macaddr);
469 i++;
470 list_del(&f->list);
471 kfree(f);
472 }
473 }
474 adapter->aq_required &= ~I40EVF_FLAG_AQ_DEL_MAC_FILTER;
475 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_DEL_ETHER_ADDRESS,
476 (u8 *)veal, len);
477 kfree(veal);
478}
479
480
481
482
483
484
485
486
487
488void i40evf_add_vlans(struct i40evf_adapter *adapter)
489{
490 struct i40e_virtchnl_vlan_filter_list *vvfl;
491 int len, i = 0, count = 0;
492 struct i40evf_vlan_filter *f;
493
494 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
495
496 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
497 __func__, adapter->current_op);
498 return;
499 }
500
501 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
502 if (f->add)
503 count++;
504 }
505 if (!count) {
506 adapter->aq_required &= ~I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
507 return;
508 }
509 adapter->current_op = I40E_VIRTCHNL_OP_ADD_VLAN;
510
511 len = sizeof(struct i40e_virtchnl_vlan_filter_list) +
512 (count * sizeof(u16));
513 if (len > I40EVF_MAX_AQ_BUF_SIZE) {
514 dev_warn(&adapter->pdev->dev, "%s: Too many VLAN changes in one request\n",
515 __func__);
516 count = (I40EVF_MAX_AQ_BUF_SIZE -
517 sizeof(struct i40e_virtchnl_vlan_filter_list)) /
518 sizeof(u16);
519 len = I40EVF_MAX_AQ_BUF_SIZE;
520 }
521 vvfl = kzalloc(len, GFP_ATOMIC);
522 if (!vvfl)
523 return;
524
525 vvfl->vsi_id = adapter->vsi_res->vsi_id;
526 vvfl->num_elements = count;
527 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
528 if (f->add) {
529 vvfl->vlan_id[i] = f->vlan;
530 i++;
531 f->add = false;
532 }
533 }
534 adapter->aq_required &= ~I40EVF_FLAG_AQ_ADD_VLAN_FILTER;
535 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_ADD_VLAN, (u8 *)vvfl, len);
536 kfree(vvfl);
537}
538
539
540
541
542
543
544
545
546
547void i40evf_del_vlans(struct i40evf_adapter *adapter)
548{
549 struct i40e_virtchnl_vlan_filter_list *vvfl;
550 struct i40evf_vlan_filter *f, *ftmp;
551 int len, i = 0, count = 0;
552
553 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
554
555 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
556 __func__, adapter->current_op);
557 return;
558 }
559
560 list_for_each_entry(f, &adapter->vlan_filter_list, list) {
561 if (f->remove)
562 count++;
563 }
564 if (!count) {
565 adapter->aq_required &= ~I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
566 return;
567 }
568 adapter->current_op = I40E_VIRTCHNL_OP_DEL_VLAN;
569
570 len = sizeof(struct i40e_virtchnl_vlan_filter_list) +
571 (count * sizeof(u16));
572 if (len > I40EVF_MAX_AQ_BUF_SIZE) {
573 dev_warn(&adapter->pdev->dev, "%s: Too many VLAN changes in one request\n",
574 __func__);
575 count = (I40EVF_MAX_AQ_BUF_SIZE -
576 sizeof(struct i40e_virtchnl_vlan_filter_list)) /
577 sizeof(u16);
578 len = I40EVF_MAX_AQ_BUF_SIZE;
579 }
580 vvfl = kzalloc(len, GFP_ATOMIC);
581 if (!vvfl)
582 return;
583
584 vvfl->vsi_id = adapter->vsi_res->vsi_id;
585 vvfl->num_elements = count;
586 list_for_each_entry_safe(f, ftmp, &adapter->vlan_filter_list, list) {
587 if (f->remove) {
588 vvfl->vlan_id[i] = f->vlan;
589 i++;
590 list_del(&f->list);
591 kfree(f);
592 }
593 }
594 adapter->aq_required &= ~I40EVF_FLAG_AQ_DEL_VLAN_FILTER;
595 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_DEL_VLAN, (u8 *)vvfl, len);
596 kfree(vvfl);
597}
598
599
600
601
602
603
604
605
606void i40evf_set_promiscuous(struct i40evf_adapter *adapter, int flags)
607{
608 struct i40e_virtchnl_promisc_info vpi;
609
610 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
611
612 dev_err(&adapter->pdev->dev, "%s: command %d pending\n",
613 __func__, adapter->current_op);
614 return;
615 }
616 adapter->current_op = I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE;
617 vpi.vsi_id = adapter->vsi_res->vsi_id;
618 vpi.flags = flags;
619 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_CONFIG_PROMISCUOUS_MODE,
620 (u8 *)&vpi, sizeof(vpi));
621}
622
623
624
625
626
627
628
629void i40evf_request_stats(struct i40evf_adapter *adapter)
630{
631 struct i40e_virtchnl_queue_select vqs;
632
633 if (adapter->current_op != I40E_VIRTCHNL_OP_UNKNOWN) {
634
635 return;
636 }
637 adapter->current_op = I40E_VIRTCHNL_OP_GET_STATS;
638 vqs.vsi_id = adapter->vsi_res->vsi_id;
639
640 if (i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_GET_STATS,
641 (u8 *)&vqs, sizeof(vqs)))
642
643 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
644}
645
646
647
648
649
650
651void i40evf_request_reset(struct i40evf_adapter *adapter)
652{
653
654 i40evf_send_pf_msg(adapter, I40E_VIRTCHNL_OP_RESET_VF, NULL, 0);
655 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
656}
657
658
659
660
661
662
663
664
665
666
667
668
669
670void i40evf_virtchnl_completion(struct i40evf_adapter *adapter,
671 enum i40e_virtchnl_ops v_opcode,
672 i40e_status v_retval,
673 u8 *msg, u16 msglen)
674{
675 struct net_device *netdev = adapter->netdev;
676
677 if (v_opcode == I40E_VIRTCHNL_OP_EVENT) {
678 struct i40e_virtchnl_pf_event *vpe =
679 (struct i40e_virtchnl_pf_event *)msg;
680 switch (vpe->event) {
681 case I40E_VIRTCHNL_EVENT_LINK_CHANGE:
682 adapter->link_up =
683 vpe->event_data.link_event.link_status;
684 if (adapter->link_up && !netif_carrier_ok(netdev)) {
685 dev_info(&adapter->pdev->dev, "NIC Link is Up\n");
686 netif_carrier_on(netdev);
687 netif_tx_wake_all_queues(netdev);
688 } else if (!adapter->link_up) {
689 dev_info(&adapter->pdev->dev, "NIC Link is Down\n");
690 netif_carrier_off(netdev);
691 netif_tx_stop_all_queues(netdev);
692 }
693 break;
694 case I40E_VIRTCHNL_EVENT_RESET_IMPENDING:
695 dev_info(&adapter->pdev->dev, "PF reset warning received\n");
696 if (!(adapter->flags & I40EVF_FLAG_RESET_PENDING)) {
697 adapter->flags |= I40EVF_FLAG_RESET_PENDING;
698 dev_info(&adapter->pdev->dev, "Scheduling reset task\n");
699 schedule_work(&adapter->reset_task);
700 }
701 break;
702 default:
703 dev_err(&adapter->pdev->dev,
704 "%s: Unknown event %d from pf\n",
705 __func__, vpe->event);
706 break;
707 }
708 return;
709 }
710 if (v_retval) {
711 dev_err(&adapter->pdev->dev, "%s: PF returned error %d to our request %d\n",
712 __func__, v_retval, v_opcode);
713 }
714 switch (v_opcode) {
715 case I40E_VIRTCHNL_OP_GET_STATS: {
716 struct i40e_eth_stats *stats =
717 (struct i40e_eth_stats *)msg;
718 adapter->net_stats.rx_packets = stats->rx_unicast +
719 stats->rx_multicast +
720 stats->rx_broadcast;
721 adapter->net_stats.tx_packets = stats->tx_unicast +
722 stats->tx_multicast +
723 stats->tx_broadcast;
724 adapter->net_stats.rx_bytes = stats->rx_bytes;
725 adapter->net_stats.tx_bytes = stats->tx_bytes;
726 adapter->net_stats.tx_errors = stats->tx_errors;
727 adapter->net_stats.rx_dropped = stats->rx_discards;
728 adapter->net_stats.tx_dropped = stats->tx_discards;
729 adapter->current_stats = *stats;
730 }
731 break;
732 case I40E_VIRTCHNL_OP_ENABLE_QUEUES:
733
734 i40evf_irq_enable(adapter, true);
735 netif_tx_start_all_queues(adapter->netdev);
736 netif_carrier_on(adapter->netdev);
737 break;
738 case I40E_VIRTCHNL_OP_DISABLE_QUEUES:
739 i40evf_free_all_tx_resources(adapter);
740 i40evf_free_all_rx_resources(adapter);
741 break;
742 case I40E_VIRTCHNL_OP_VERSION:
743 case I40E_VIRTCHNL_OP_GET_VF_RESOURCES:
744 case I40E_VIRTCHNL_OP_CONFIG_IRQ_MAP:
745
746
747
748
749 if (v_opcode != adapter->current_op)
750 return;
751 break;
752 default:
753 if (v_opcode != adapter->current_op)
754 dev_warn(&adapter->pdev->dev, "Expected response %d from PF, received %d\n",
755 adapter->current_op, v_opcode);
756 break;
757 }
758 adapter->current_op = I40E_VIRTCHNL_OP_UNKNOWN;
759}
760