bonding: free queue memory when closing
[dpdk.git] / drivers / net / bonding / rte_eth_bond_pmd.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33 #include <stdlib.h>
34 #include <netinet/in.h>
35
36 #include <rte_mbuf.h>
37 #include <rte_malloc.h>
38 #include <rte_ethdev.h>
39 #include <rte_tcp.h>
40 #include <rte_udp.h>
41 #include <rte_ip.h>
42 #include <rte_devargs.h>
43 #include <rte_kvargs.h>
44 #include <rte_dev.h>
45 #include <rte_alarm.h>
46 #include <rte_cycles.h>
47
48 #include "rte_eth_bond.h"
49 #include "rte_eth_bond_private.h"
50 #include "rte_eth_bond_8023ad_private.h"
51
52 #define REORDER_PERIOD_MS 10
53
54 #define HASH_L4_PORTS(h) ((h)->src_port ^ (h)->dst_port)
55
56 /* Table for statistics in mode 5 TLB */
57 static uint64_t tlb_last_obytets[RTE_MAX_ETHPORTS];
58
59 static inline size_t
60 get_vlan_offset(struct ether_hdr *eth_hdr, uint16_t *proto)
61 {
62         size_t vlan_offset = 0;
63
64         if (rte_cpu_to_be_16(ETHER_TYPE_VLAN) == *proto) {
65                 struct vlan_hdr *vlan_hdr = (struct vlan_hdr *)(eth_hdr + 1);
66
67                 vlan_offset = sizeof(struct vlan_hdr);
68                 *proto = vlan_hdr->eth_proto;
69
70                 if (rte_cpu_to_be_16(ETHER_TYPE_VLAN) == *proto) {
71                         vlan_hdr = vlan_hdr + 1;
72                         *proto = vlan_hdr->eth_proto;
73                         vlan_offset += sizeof(struct vlan_hdr);
74                 }
75         }
76         return vlan_offset;
77 }
78
79 static uint16_t
80 bond_ethdev_rx_burst(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
81 {
82         struct bond_dev_private *internals;
83
84         uint16_t num_rx_slave = 0;
85         uint16_t num_rx_total = 0;
86
87         int i;
88
89         /* Cast to structure, containing bonded device's port id and queue id */
90         struct bond_rx_queue *bd_rx_q = (struct bond_rx_queue *)queue;
91
92         internals = bd_rx_q->dev_private;
93
94
95         for (i = 0; i < internals->active_slave_count && nb_pkts; i++) {
96                 /* Offset of pointer to *bufs increases as packets are received
97                  * from other slaves */
98                 num_rx_slave = rte_eth_rx_burst(internals->active_slaves[i],
99                                 bd_rx_q->queue_id, bufs + num_rx_total, nb_pkts);
100                 if (num_rx_slave) {
101                         num_rx_total += num_rx_slave;
102                         nb_pkts -= num_rx_slave;
103                 }
104         }
105
106         return num_rx_total;
107 }
108
109 static uint16_t
110 bond_ethdev_rx_burst_active_backup(void *queue, struct rte_mbuf **bufs,
111                 uint16_t nb_pkts)
112 {
113         struct bond_dev_private *internals;
114
115         /* Cast to structure, containing bonded device's port id and queue id */
116         struct bond_rx_queue *bd_rx_q = (struct bond_rx_queue *)queue;
117
118         internals = bd_rx_q->dev_private;
119
120         return rte_eth_rx_burst(internals->current_primary_port,
121                         bd_rx_q->queue_id, bufs, nb_pkts);
122 }
123
124 static uint16_t
125 bond_ethdev_rx_burst_8023ad(void *queue, struct rte_mbuf **bufs,
126                 uint16_t nb_pkts)
127 {
128         /* Cast to structure, containing bonded device's port id and queue id */
129         struct bond_rx_queue *bd_rx_q = (struct bond_rx_queue *)queue;
130         struct bond_dev_private *internals = bd_rx_q->dev_private;
131         struct ether_addr bond_mac;
132
133         struct ether_hdr *hdr;
134
135         const uint16_t ether_type_slow_be = rte_be_to_cpu_16(ETHER_TYPE_SLOW);
136         uint16_t num_rx_total = 0;      /* Total number of received packets */
137         uint8_t slaves[RTE_MAX_ETHPORTS];
138         uint8_t slave_count;
139
140         uint8_t collecting;  /* current slave collecting status */
141         const uint8_t promisc = internals->promiscuous_en;
142         uint8_t i, j, k;
143
144         rte_eth_macaddr_get(internals->port_id, &bond_mac);
145         /* Copy slave list to protect against slave up/down changes during tx
146          * bursting */
147         slave_count = internals->active_slave_count;
148         memcpy(slaves, internals->active_slaves,
149                         sizeof(internals->active_slaves[0]) * slave_count);
150
151         for (i = 0; i < slave_count && num_rx_total < nb_pkts; i++) {
152                 j = num_rx_total;
153                 collecting = ACTOR_STATE(&mode_8023ad_ports[slaves[i]], COLLECTING);
154
155                 /* Read packets from this slave */
156                 num_rx_total += rte_eth_rx_burst(slaves[i], bd_rx_q->queue_id,
157                                 &bufs[num_rx_total], nb_pkts - num_rx_total);
158
159                 for (k = j; k < 2 && k < num_rx_total; k++)
160                         rte_prefetch0(rte_pktmbuf_mtod(bufs[k], void *));
161
162                 /* Handle slow protocol packets. */
163                 while (j < num_rx_total) {
164                         if (j + 3 < num_rx_total)
165                                 rte_prefetch0(rte_pktmbuf_mtod(bufs[j + 3], void *));
166
167                         hdr = rte_pktmbuf_mtod(bufs[j], struct ether_hdr *);
168                         /* Remove packet from array if it is slow packet or slave is not
169                          * in collecting state or bondign interface is not in promiscus
170                          * mode and packet address does not match. */
171                         if (unlikely(hdr->ether_type == ether_type_slow_be ||
172                                 !collecting || (!promisc &&
173                                         !is_same_ether_addr(&bond_mac, &hdr->d_addr)))) {
174
175                                 if (hdr->ether_type == ether_type_slow_be) {
176                                         bond_mode_8023ad_handle_slow_pkt(internals, slaves[i],
177                                                 bufs[j]);
178                                 } else
179                                         rte_pktmbuf_free(bufs[j]);
180
181                                 /* Packet is managed by mode 4 or dropped, shift the array */
182                                 num_rx_total--;
183                                 if (j < num_rx_total) {
184                                         memmove(&bufs[j], &bufs[j + 1], sizeof(bufs[0]) *
185                                                 (num_rx_total - j));
186                                 }
187                         } else
188                                 j++;
189                 }
190         }
191
192         return num_rx_total;
193 }
194
195 #if defined(RTE_LIBRTE_BOND_DEBUG_ALB) || defined(RTE_LIBRTE_BOND_DEBUG_ALB_L1)
196 uint32_t burstnumberRX;
197 uint32_t burstnumberTX;
198
199 #ifdef RTE_LIBRTE_BOND_DEBUG_ALB
200
201 static void
202 arp_op_name(uint16_t arp_op, char *buf)
203 {
204         switch (arp_op) {
205         case ARP_OP_REQUEST:
206                 snprintf(buf, sizeof("ARP Request"), "%s", "ARP Request");
207                 return;
208         case ARP_OP_REPLY:
209                 snprintf(buf, sizeof("ARP Reply"), "%s", "ARP Reply");
210                 return;
211         case ARP_OP_REVREQUEST:
212                 snprintf(buf, sizeof("Reverse ARP Request"), "%s",
213                                 "Reverse ARP Request");
214                 return;
215         case ARP_OP_REVREPLY:
216                 snprintf(buf, sizeof("Reverse ARP Reply"), "%s",
217                                 "Reverse ARP Reply");
218                 return;
219         case ARP_OP_INVREQUEST:
220                 snprintf(buf, sizeof("Peer Identify Request"), "%s",
221                                 "Peer Identify Request");
222                 return;
223         case ARP_OP_INVREPLY:
224                 snprintf(buf, sizeof("Peer Identify Reply"), "%s",
225                                 "Peer Identify Reply");
226                 return;
227         default:
228                 break;
229         }
230         snprintf(buf, sizeof("Unknown"), "%s", "Unknown");
231         return;
232 }
233 #endif
234 #define MaxIPv4String   16
235 static void
236 ipv4_addr_to_dot(uint32_t be_ipv4_addr, char *buf, uint8_t buf_size)
237 {
238         uint32_t ipv4_addr;
239
240         ipv4_addr = rte_be_to_cpu_32(be_ipv4_addr);
241         snprintf(buf, buf_size, "%d.%d.%d.%d", (ipv4_addr >> 24) & 0xFF,
242                 (ipv4_addr >> 16) & 0xFF, (ipv4_addr >> 8) & 0xFF,
243                 ipv4_addr & 0xFF);
244 }
245
246 #define MAX_CLIENTS_NUMBER      128
247 uint8_t active_clients;
248 struct client_stats_t {
249         uint8_t port;
250         uint32_t ipv4_addr;
251         uint32_t ipv4_rx_packets;
252         uint32_t ipv4_tx_packets;
253 };
254 struct client_stats_t client_stats[MAX_CLIENTS_NUMBER];
255
256 static void
257 update_client_stats(uint32_t addr, uint8_t port, uint32_t *TXorRXindicator)
258 {
259         int i = 0;
260
261         for (; i < MAX_CLIENTS_NUMBER; i++)     {
262                 if ((client_stats[i].ipv4_addr == addr) && (client_stats[i].port == port))      {
263                         /* Just update RX packets number for this client */
264                         if (TXorRXindicator == &burstnumberRX)
265                                 client_stats[i].ipv4_rx_packets++;
266                         else
267                                 client_stats[i].ipv4_tx_packets++;
268                         return;
269                 }
270         }
271         /* We have a new client. Insert him to the table, and increment stats */
272         if (TXorRXindicator == &burstnumberRX)
273                 client_stats[active_clients].ipv4_rx_packets++;
274         else
275                 client_stats[active_clients].ipv4_tx_packets++;
276         client_stats[active_clients].ipv4_addr = addr;
277         client_stats[active_clients].port = port;
278         active_clients++;
279
280 }
281
282 #ifdef RTE_LIBRTE_BOND_DEBUG_ALB
283 #define MODE6_DEBUG(info, src_ip, dst_ip, eth_h, arp_op, port, burstnumber)     \
284                 RTE_LOG(DEBUG, PMD, \
285                 "%s " \
286                 "port:%d " \
287                 "SrcMAC:%02X:%02X:%02X:%02X:%02X:%02X " \
288                 "SrcIP:%s " \
289                 "DstMAC:%02X:%02X:%02X:%02X:%02X:%02X " \
290                 "DstIP:%s " \
291                 "%s " \
292                 "%d\n", \
293                 info, \
294                 port, \
295                 eth_h->s_addr.addr_bytes[0], \
296                 eth_h->s_addr.addr_bytes[1], \
297                 eth_h->s_addr.addr_bytes[2], \
298                 eth_h->s_addr.addr_bytes[3], \
299                 eth_h->s_addr.addr_bytes[4], \
300                 eth_h->s_addr.addr_bytes[5], \
301                 src_ip, \
302                 eth_h->d_addr.addr_bytes[0], \
303                 eth_h->d_addr.addr_bytes[1], \
304                 eth_h->d_addr.addr_bytes[2], \
305                 eth_h->d_addr.addr_bytes[3], \
306                 eth_h->d_addr.addr_bytes[4], \
307                 eth_h->d_addr.addr_bytes[5], \
308                 dst_ip, \
309                 arp_op, \
310                 ++burstnumber)
311 #endif
312
313 static void
314 mode6_debug(const char __attribute__((unused)) *info, struct ether_hdr *eth_h,
315                 uint8_t port, uint32_t __attribute__((unused)) *burstnumber)
316 {
317         struct ipv4_hdr *ipv4_h;
318 #ifdef RTE_LIBRTE_BOND_DEBUG_ALB
319         struct arp_hdr *arp_h;
320         char dst_ip[16];
321         char ArpOp[24];
322         char buf[16];
323 #endif
324         char src_ip[16];
325
326         uint16_t ether_type = eth_h->ether_type;
327         uint16_t offset = get_vlan_offset(eth_h, &ether_type);
328
329 #ifdef RTE_LIBRTE_BOND_DEBUG_ALB
330         snprintf(buf, 16, "%s", info);
331 #endif
332
333         if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_IPv4)) {
334                 ipv4_h = (struct ipv4_hdr *)((char *)(eth_h + 1) + offset);
335                 ipv4_addr_to_dot(ipv4_h->src_addr, src_ip, MaxIPv4String);
336 #ifdef RTE_LIBRTE_BOND_DEBUG_ALB
337                 ipv4_addr_to_dot(ipv4_h->dst_addr, dst_ip, MaxIPv4String);
338                 MODE6_DEBUG(buf, src_ip, dst_ip, eth_h, "", port, *burstnumber);
339 #endif
340                 update_client_stats(ipv4_h->src_addr, port, burstnumber);
341         }
342 #ifdef RTE_LIBRTE_BOND_DEBUG_ALB
343         else if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_ARP)) {
344                 arp_h = (struct arp_hdr *)((char *)(eth_h + 1) + offset);
345                 ipv4_addr_to_dot(arp_h->arp_data.arp_sip, src_ip, MaxIPv4String);
346                 ipv4_addr_to_dot(arp_h->arp_data.arp_tip, dst_ip, MaxIPv4String);
347                 arp_op_name(rte_be_to_cpu_16(arp_h->arp_op), ArpOp);
348                 MODE6_DEBUG(buf, src_ip, dst_ip, eth_h, ArpOp, port, *burstnumber);
349         }
350 #endif
351 }
352 #endif
353
354 static uint16_t
355 bond_ethdev_rx_burst_alb(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
356 {
357         struct bond_tx_queue *bd_tx_q = (struct bond_tx_queue *)queue;
358         struct bond_dev_private *internals = bd_tx_q->dev_private;
359         struct ether_hdr *eth_h;
360         uint16_t ether_type, offset;
361         uint16_t nb_recv_pkts;
362         int i;
363
364         nb_recv_pkts = bond_ethdev_rx_burst(queue, bufs, nb_pkts);
365
366         for (i = 0; i < nb_recv_pkts; i++) {
367                 eth_h = rte_pktmbuf_mtod(bufs[i], struct ether_hdr *);
368                 ether_type = eth_h->ether_type;
369                 offset = get_vlan_offset(eth_h, &ether_type);
370
371                 if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_ARP)) {
372 #if defined(RTE_LIBRTE_BOND_DEBUG_ALB) || defined(RTE_LIBRTE_BOND_DEBUG_ALB_L1)
373                         mode6_debug("RX ARP:", eth_h, bufs[i]->port, &burstnumberRX);
374 #endif
375                         bond_mode_alb_arp_recv(eth_h, offset, internals);
376                 }
377 #if defined(RTE_LIBRTE_BOND_DEBUG_ALB) || defined(RTE_LIBRTE_BOND_DEBUG_ALB_L1)
378                 else if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_IPv4))
379                         mode6_debug("RX IPv4:", eth_h, bufs[i]->port, &burstnumberRX);
380 #endif
381         }
382
383         return nb_recv_pkts;
384 }
385
386 static uint16_t
387 bond_ethdev_tx_burst_round_robin(void *queue, struct rte_mbuf **bufs,
388                 uint16_t nb_pkts)
389 {
390         struct bond_dev_private *internals;
391         struct bond_tx_queue *bd_tx_q;
392
393         struct rte_mbuf *slave_bufs[RTE_MAX_ETHPORTS][nb_pkts];
394         uint16_t slave_nb_pkts[RTE_MAX_ETHPORTS] = { 0 };
395
396         uint8_t num_of_slaves;
397         uint8_t slaves[RTE_MAX_ETHPORTS];
398
399         uint16_t num_tx_total = 0, num_tx_slave;
400
401         static int slave_idx = 0;
402         int i, cslave_idx = 0, tx_fail_total = 0;
403
404         bd_tx_q = (struct bond_tx_queue *)queue;
405         internals = bd_tx_q->dev_private;
406
407         /* Copy slave list to protect against slave up/down changes during tx
408          * bursting */
409         num_of_slaves = internals->active_slave_count;
410         memcpy(slaves, internals->active_slaves,
411                         sizeof(internals->active_slaves[0]) * num_of_slaves);
412
413         if (num_of_slaves < 1)
414                 return num_tx_total;
415
416         /* Populate slaves mbuf with which packets are to be sent on it  */
417         for (i = 0; i < nb_pkts; i++) {
418                 cslave_idx = (slave_idx + i) % num_of_slaves;
419                 slave_bufs[cslave_idx][(slave_nb_pkts[cslave_idx])++] = bufs[i];
420         }
421
422         /* increment current slave index so the next call to tx burst starts on the
423          * next slave */
424         slave_idx = ++cslave_idx;
425
426         /* Send packet burst on each slave device */
427         for (i = 0; i < num_of_slaves; i++) {
428                 if (slave_nb_pkts[i] > 0) {
429                         num_tx_slave = rte_eth_tx_burst(slaves[i], bd_tx_q->queue_id,
430                                         slave_bufs[i], slave_nb_pkts[i]);
431
432                         /* if tx burst fails move packets to end of bufs */
433                         if (unlikely(num_tx_slave < slave_nb_pkts[i])) {
434                                 int tx_fail_slave = slave_nb_pkts[i] - num_tx_slave;
435
436                                 tx_fail_total += tx_fail_slave;
437
438                                 memcpy(&bufs[nb_pkts - tx_fail_total],
439                                                 &slave_bufs[i][num_tx_slave],
440                                                 tx_fail_slave * sizeof(bufs[0]));
441                         }
442                         num_tx_total += num_tx_slave;
443                 }
444         }
445
446         return num_tx_total;
447 }
448
449 static uint16_t
450 bond_ethdev_tx_burst_active_backup(void *queue,
451                 struct rte_mbuf **bufs, uint16_t nb_pkts)
452 {
453         struct bond_dev_private *internals;
454         struct bond_tx_queue *bd_tx_q;
455
456         bd_tx_q = (struct bond_tx_queue *)queue;
457         internals = bd_tx_q->dev_private;
458
459         if (internals->active_slave_count < 1)
460                 return 0;
461
462         return rte_eth_tx_burst(internals->current_primary_port, bd_tx_q->queue_id,
463                         bufs, nb_pkts);
464 }
465
466 static inline uint16_t
467 ether_hash(struct ether_hdr *eth_hdr)
468 {
469         unaligned_uint16_t *word_src_addr =
470                 (unaligned_uint16_t *)eth_hdr->s_addr.addr_bytes;
471         unaligned_uint16_t *word_dst_addr =
472                 (unaligned_uint16_t *)eth_hdr->d_addr.addr_bytes;
473
474         return (word_src_addr[0] ^ word_dst_addr[0]) ^
475                         (word_src_addr[1] ^ word_dst_addr[1]) ^
476                         (word_src_addr[2] ^ word_dst_addr[2]);
477 }
478
479 static inline uint32_t
480 ipv4_hash(struct ipv4_hdr *ipv4_hdr)
481 {
482         return (ipv4_hdr->src_addr ^ ipv4_hdr->dst_addr);
483 }
484
485 static inline uint32_t
486 ipv6_hash(struct ipv6_hdr *ipv6_hdr)
487 {
488         unaligned_uint32_t *word_src_addr =
489                 (unaligned_uint32_t *)&(ipv6_hdr->src_addr[0]);
490         unaligned_uint32_t *word_dst_addr =
491                 (unaligned_uint32_t *)&(ipv6_hdr->dst_addr[0]);
492
493         return (word_src_addr[0] ^ word_dst_addr[0]) ^
494                         (word_src_addr[1] ^ word_dst_addr[1]) ^
495                         (word_src_addr[2] ^ word_dst_addr[2]) ^
496                         (word_src_addr[3] ^ word_dst_addr[3]);
497 }
498
499 uint16_t
500 xmit_l2_hash(const struct rte_mbuf *buf, uint8_t slave_count)
501 {
502         struct ether_hdr *eth_hdr = rte_pktmbuf_mtod(buf, struct ether_hdr *);
503
504         uint32_t hash = ether_hash(eth_hdr);
505
506         return (hash ^= hash >> 8) % slave_count;
507 }
508
509 uint16_t
510 xmit_l23_hash(const struct rte_mbuf *buf, uint8_t slave_count)
511 {
512         struct ether_hdr *eth_hdr = rte_pktmbuf_mtod(buf, struct ether_hdr *);
513         uint16_t proto = eth_hdr->ether_type;
514         size_t vlan_offset = get_vlan_offset(eth_hdr, &proto);
515         uint32_t hash, l3hash = 0;
516
517         hash = ether_hash(eth_hdr);
518
519         if (rte_cpu_to_be_16(ETHER_TYPE_IPv4) == proto) {
520                 struct ipv4_hdr *ipv4_hdr = (struct ipv4_hdr *)
521                                 ((char *)(eth_hdr + 1) + vlan_offset);
522                 l3hash = ipv4_hash(ipv4_hdr);
523
524         } else if (rte_cpu_to_be_16(ETHER_TYPE_IPv6) == proto) {
525                 struct ipv6_hdr *ipv6_hdr = (struct ipv6_hdr *)
526                                 ((char *)(eth_hdr + 1) + vlan_offset);
527                 l3hash = ipv6_hash(ipv6_hdr);
528         }
529
530         hash = hash ^ l3hash;
531         hash ^= hash >> 16;
532         hash ^= hash >> 8;
533
534         return hash % slave_count;
535 }
536
537 uint16_t
538 xmit_l34_hash(const struct rte_mbuf *buf, uint8_t slave_count)
539 {
540         struct ether_hdr *eth_hdr = rte_pktmbuf_mtod(buf, struct ether_hdr *);
541         uint16_t proto = eth_hdr->ether_type;
542         size_t vlan_offset = get_vlan_offset(eth_hdr, &proto);
543
544         struct udp_hdr *udp_hdr = NULL;
545         struct tcp_hdr *tcp_hdr = NULL;
546         uint32_t hash, l3hash = 0, l4hash = 0;
547
548         if (rte_cpu_to_be_16(ETHER_TYPE_IPv4) == proto) {
549                 struct ipv4_hdr *ipv4_hdr = (struct ipv4_hdr *)
550                                 ((char *)(eth_hdr + 1) + vlan_offset);
551                 size_t ip_hdr_offset;
552
553                 l3hash = ipv4_hash(ipv4_hdr);
554
555                 ip_hdr_offset = (ipv4_hdr->version_ihl & IPV4_HDR_IHL_MASK) *
556                                 IPV4_IHL_MULTIPLIER;
557
558                 if (ipv4_hdr->next_proto_id == IPPROTO_TCP) {
559                         tcp_hdr = (struct tcp_hdr *)((char *)ipv4_hdr +
560                                         ip_hdr_offset);
561                         l4hash = HASH_L4_PORTS(tcp_hdr);
562                 } else if (ipv4_hdr->next_proto_id == IPPROTO_UDP) {
563                         udp_hdr = (struct udp_hdr *)((char *)ipv4_hdr +
564                                         ip_hdr_offset);
565                         l4hash = HASH_L4_PORTS(udp_hdr);
566                 }
567         } else if  (rte_cpu_to_be_16(ETHER_TYPE_IPv6) == proto) {
568                 struct ipv6_hdr *ipv6_hdr = (struct ipv6_hdr *)
569                                 ((char *)(eth_hdr + 1) + vlan_offset);
570                 l3hash = ipv6_hash(ipv6_hdr);
571
572                 if (ipv6_hdr->proto == IPPROTO_TCP) {
573                         tcp_hdr = (struct tcp_hdr *)(ipv6_hdr + 1);
574                         l4hash = HASH_L4_PORTS(tcp_hdr);
575                 } else if (ipv6_hdr->proto == IPPROTO_UDP) {
576                         udp_hdr = (struct udp_hdr *)(ipv6_hdr + 1);
577                         l4hash = HASH_L4_PORTS(udp_hdr);
578                 }
579         }
580
581         hash = l3hash ^ l4hash;
582         hash ^= hash >> 16;
583         hash ^= hash >> 8;
584
585         return hash % slave_count;
586 }
587
588 struct bwg_slave {
589         uint64_t bwg_left_int;
590         uint64_t bwg_left_remainder;
591         uint8_t slave;
592 };
593
594 void
595 bond_tlb_activate_slave(struct bond_dev_private *internals) {
596         int i;
597
598         for (i = 0; i < internals->active_slave_count; i++) {
599                 tlb_last_obytets[internals->active_slaves[i]] = 0;
600         }
601 }
602
603 static int
604 bandwidth_cmp(const void *a, const void *b)
605 {
606         const struct bwg_slave *bwg_a = a;
607         const struct bwg_slave *bwg_b = b;
608         int64_t diff = (int64_t)bwg_b->bwg_left_int - (int64_t)bwg_a->bwg_left_int;
609         int64_t diff2 = (int64_t)bwg_b->bwg_left_remainder -
610                         (int64_t)bwg_a->bwg_left_remainder;
611         if (diff > 0)
612                 return 1;
613         else if (diff < 0)
614                 return -1;
615         else if (diff2 > 0)
616                 return 1;
617         else if (diff2 < 0)
618                 return -1;
619         else
620                 return 0;
621 }
622
623 static void
624 bandwidth_left(uint8_t port_id, uint64_t load, uint8_t update_idx,
625                 struct bwg_slave *bwg_slave)
626 {
627         struct rte_eth_link link_status;
628
629         rte_eth_link_get(port_id, &link_status);
630         uint64_t link_bwg = link_status.link_speed * 1000000ULL / 8;
631         if (link_bwg == 0)
632                 return;
633         link_bwg = link_bwg * (update_idx+1) * REORDER_PERIOD_MS;
634         bwg_slave->bwg_left_int = (link_bwg - 1000*load) / link_bwg;
635         bwg_slave->bwg_left_remainder = (link_bwg - 1000*load) % link_bwg;
636 }
637
638 static void
639 bond_ethdev_update_tlb_slave_cb(void *arg)
640 {
641         struct bond_dev_private *internals = arg;
642         struct rte_eth_stats slave_stats;
643         struct bwg_slave bwg_array[RTE_MAX_ETHPORTS];
644         uint8_t slave_count;
645         uint64_t tx_bytes;
646
647         uint8_t update_stats = 0;
648         uint8_t i, slave_id;
649
650         internals->slave_update_idx++;
651
652
653         if (internals->slave_update_idx >= REORDER_PERIOD_MS)
654                 update_stats = 1;
655
656         for (i = 0; i < internals->active_slave_count; i++) {
657                 slave_id = internals->active_slaves[i];
658                 rte_eth_stats_get(slave_id, &slave_stats);
659                 tx_bytes = slave_stats.obytes - tlb_last_obytets[slave_id];
660                 bandwidth_left(slave_id, tx_bytes,
661                                 internals->slave_update_idx, &bwg_array[i]);
662                 bwg_array[i].slave = slave_id;
663
664                 if (update_stats) {
665                         tlb_last_obytets[slave_id] = slave_stats.obytes;
666                 }
667         }
668
669         if (update_stats == 1)
670                 internals->slave_update_idx = 0;
671
672         slave_count = i;
673         qsort(bwg_array, slave_count, sizeof(bwg_array[0]), bandwidth_cmp);
674         for (i = 0; i < slave_count; i++)
675                 internals->tlb_slaves_order[i] = bwg_array[i].slave;
676
677         rte_eal_alarm_set(REORDER_PERIOD_MS * 1000, bond_ethdev_update_tlb_slave_cb,
678                         (struct bond_dev_private *)internals);
679 }
680
681 static uint16_t
682 bond_ethdev_tx_burst_tlb(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
683 {
684         struct bond_tx_queue *bd_tx_q = (struct bond_tx_queue *)queue;
685         struct bond_dev_private *internals = bd_tx_q->dev_private;
686
687         struct rte_eth_dev *primary_port =
688                         &rte_eth_devices[internals->primary_port];
689         uint16_t num_tx_total = 0;
690         uint8_t i, j;
691
692         uint8_t num_of_slaves = internals->active_slave_count;
693         uint8_t slaves[RTE_MAX_ETHPORTS];
694
695         struct ether_hdr *ether_hdr;
696         struct ether_addr primary_slave_addr;
697         struct ether_addr active_slave_addr;
698
699         if (num_of_slaves < 1)
700                 return num_tx_total;
701
702         memcpy(slaves, internals->tlb_slaves_order,
703                                 sizeof(internals->tlb_slaves_order[0]) * num_of_slaves);
704
705
706         ether_addr_copy(primary_port->data->mac_addrs, &primary_slave_addr);
707
708         if (nb_pkts > 3) {
709                 for (i = 0; i < 3; i++)
710                         rte_prefetch0(rte_pktmbuf_mtod(bufs[i], void*));
711         }
712
713         for (i = 0; i < num_of_slaves; i++) {
714                 rte_eth_macaddr_get(slaves[i], &active_slave_addr);
715                 for (j = num_tx_total; j < nb_pkts; j++) {
716                         if (j + 3 < nb_pkts)
717                                 rte_prefetch0(rte_pktmbuf_mtod(bufs[j+3], void*));
718
719                         ether_hdr = rte_pktmbuf_mtod(bufs[j], struct ether_hdr *);
720                         if (is_same_ether_addr(&ether_hdr->s_addr, &primary_slave_addr))
721                                 ether_addr_copy(&active_slave_addr, &ether_hdr->s_addr);
722 #if defined(RTE_LIBRTE_BOND_DEBUG_ALB) || defined(RTE_LIBRTE_BOND_DEBUG_ALB_L1)
723                                         mode6_debug("TX IPv4:", ether_hdr, slaves[i], &burstnumberTX);
724 #endif
725                 }
726
727                 num_tx_total += rte_eth_tx_burst(slaves[i], bd_tx_q->queue_id,
728                                 bufs + num_tx_total, nb_pkts - num_tx_total);
729
730                 if (num_tx_total == nb_pkts)
731                         break;
732         }
733
734         return num_tx_total;
735 }
736
737 void
738 bond_tlb_disable(struct bond_dev_private *internals)
739 {
740         rte_eal_alarm_cancel(bond_ethdev_update_tlb_slave_cb, internals);
741 }
742
743 void
744 bond_tlb_enable(struct bond_dev_private *internals)
745 {
746         bond_ethdev_update_tlb_slave_cb(internals);
747 }
748
749 static uint16_t
750 bond_ethdev_tx_burst_alb(void *queue, struct rte_mbuf **bufs, uint16_t nb_pkts)
751 {
752         struct bond_tx_queue *bd_tx_q = (struct bond_tx_queue *)queue;
753         struct bond_dev_private *internals = bd_tx_q->dev_private;
754
755         struct ether_hdr *eth_h;
756         uint16_t ether_type, offset;
757
758         struct client_data *client_info;
759
760         /*
761          * We create transmit buffers for every slave and one additional to send
762          * through tlb. In worst case every packet will be send on one port.
763          */
764         struct rte_mbuf *slave_bufs[RTE_MAX_ETHPORTS + 1][nb_pkts];
765         uint16_t slave_bufs_pkts[RTE_MAX_ETHPORTS + 1] = { 0 };
766
767         /*
768          * We create separate transmit buffers for update packets as they wont be
769          * counted in num_tx_total.
770          */
771         struct rte_mbuf *update_bufs[RTE_MAX_ETHPORTS][ALB_HASH_TABLE_SIZE];
772         uint16_t update_bufs_pkts[RTE_MAX_ETHPORTS] = { 0 };
773
774         struct rte_mbuf *upd_pkt;
775         size_t pkt_size;
776
777         uint16_t num_send, num_not_send = 0;
778         uint16_t num_tx_total = 0;
779         uint8_t slave_idx;
780
781         int i, j;
782
783         /* Search tx buffer for ARP packets and forward them to alb */
784         for (i = 0; i < nb_pkts; i++) {
785                 eth_h = rte_pktmbuf_mtod(bufs[i], struct ether_hdr *);
786                 ether_type = eth_h->ether_type;
787                 offset = get_vlan_offset(eth_h, &ether_type);
788
789                 if (ether_type == rte_cpu_to_be_16(ETHER_TYPE_ARP)) {
790                         slave_idx = bond_mode_alb_arp_xmit(eth_h, offset, internals);
791
792                         /* Change src mac in eth header */
793                         rte_eth_macaddr_get(slave_idx, &eth_h->s_addr);
794
795                         /* Add packet to slave tx buffer */
796                         slave_bufs[slave_idx][slave_bufs_pkts[slave_idx]] = bufs[i];
797                         slave_bufs_pkts[slave_idx]++;
798                 } else {
799                         /* If packet is not ARP, send it with TLB policy */
800                         slave_bufs[RTE_MAX_ETHPORTS][slave_bufs_pkts[RTE_MAX_ETHPORTS]] =
801                                         bufs[i];
802                         slave_bufs_pkts[RTE_MAX_ETHPORTS]++;
803                 }
804         }
805
806         /* Update connected client ARP tables */
807         if (internals->mode6.ntt) {
808                 for (i = 0; i < ALB_HASH_TABLE_SIZE; i++) {
809                         client_info = &internals->mode6.client_table[i];
810
811                         if (client_info->in_use) {
812                                 /* Allocate new packet to send ARP update on current slave */
813                                 upd_pkt = rte_pktmbuf_alloc(internals->mode6.mempool);
814                                 if (upd_pkt == NULL) {
815                                         RTE_LOG(ERR, PMD, "Failed to allocate ARP packet from pool\n");
816                                         continue;
817                                 }
818                                 pkt_size = sizeof(struct ether_hdr) + sizeof(struct arp_hdr)
819                                                 + client_info->vlan_count * sizeof(struct vlan_hdr);
820                                 upd_pkt->data_len = pkt_size;
821                                 upd_pkt->pkt_len = pkt_size;
822
823                                 slave_idx = bond_mode_alb_arp_upd(client_info, upd_pkt,
824                                                 internals);
825
826                                 /* Add packet to update tx buffer */
827                                 update_bufs[slave_idx][update_bufs_pkts[slave_idx]] = upd_pkt;
828                                 update_bufs_pkts[slave_idx]++;
829                         }
830                 }
831                 internals->mode6.ntt = 0;
832         }
833
834         /* Send ARP packets on proper slaves */
835         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
836                 if (slave_bufs_pkts[i] > 0) {
837                         num_send = rte_eth_tx_burst(i, bd_tx_q->queue_id,
838                                         slave_bufs[i], slave_bufs_pkts[i]);
839                         for (j = 0; j < slave_bufs_pkts[i] - num_send; j++) {
840                                 bufs[nb_pkts - 1 - num_not_send - j] =
841                                                 slave_bufs[i][nb_pkts - 1 - j];
842                         }
843
844                         num_tx_total += num_send;
845                         num_not_send += slave_bufs_pkts[i] - num_send;
846
847 #if defined(RTE_LIBRTE_BOND_DEBUG_ALB) || defined(RTE_LIBRTE_BOND_DEBUG_ALB_L1)
848         /* Print TX stats including update packets */
849                         for (j = 0; j < slave_bufs_pkts[i]; j++) {
850                                 eth_h = rte_pktmbuf_mtod(slave_bufs[i][j], struct ether_hdr *);
851                                 mode6_debug("TX ARP:", eth_h, i, &burstnumberTX);
852                         }
853 #endif
854                 }
855         }
856
857         /* Send update packets on proper slaves */
858         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
859                 if (update_bufs_pkts[i] > 0) {
860                         num_send = rte_eth_tx_burst(i, bd_tx_q->queue_id, update_bufs[i],
861                                         update_bufs_pkts[i]);
862                         for (j = num_send; j < update_bufs_pkts[i]; j++) {
863                                 rte_pktmbuf_free(update_bufs[i][j]);
864                         }
865 #if defined(RTE_LIBRTE_BOND_DEBUG_ALB) || defined(RTE_LIBRTE_BOND_DEBUG_ALB_L1)
866                         for (j = 0; j < update_bufs_pkts[i]; j++) {
867                                 eth_h = rte_pktmbuf_mtod(update_bufs[i][j], struct ether_hdr *);
868                                 mode6_debug("TX ARPupd:", eth_h, i, &burstnumberTX);
869                         }
870 #endif
871                 }
872         }
873
874         /* Send non-ARP packets using tlb policy */
875         if (slave_bufs_pkts[RTE_MAX_ETHPORTS] > 0) {
876                 num_send = bond_ethdev_tx_burst_tlb(queue,
877                                 slave_bufs[RTE_MAX_ETHPORTS],
878                                 slave_bufs_pkts[RTE_MAX_ETHPORTS]);
879
880                 for (j = 0; j < slave_bufs_pkts[RTE_MAX_ETHPORTS]; j++) {
881                         bufs[nb_pkts - 1 - num_not_send - j] =
882                                         slave_bufs[RTE_MAX_ETHPORTS][nb_pkts - 1 - j];
883                 }
884
885                 num_tx_total += num_send;
886                 num_not_send += slave_bufs_pkts[RTE_MAX_ETHPORTS] - num_send;
887         }
888
889         return num_tx_total;
890 }
891
892 static uint16_t
893 bond_ethdev_tx_burst_balance(void *queue, struct rte_mbuf **bufs,
894                 uint16_t nb_pkts)
895 {
896         struct bond_dev_private *internals;
897         struct bond_tx_queue *bd_tx_q;
898
899         uint8_t num_of_slaves;
900         uint8_t slaves[RTE_MAX_ETHPORTS];
901
902         uint16_t num_tx_total = 0, num_tx_slave = 0, tx_fail_total = 0;
903
904         int i, op_slave_id;
905
906         struct rte_mbuf *slave_bufs[RTE_MAX_ETHPORTS][nb_pkts];
907         uint16_t slave_nb_pkts[RTE_MAX_ETHPORTS] = { 0 };
908
909         bd_tx_q = (struct bond_tx_queue *)queue;
910         internals = bd_tx_q->dev_private;
911
912         /* Copy slave list to protect against slave up/down changes during tx
913          * bursting */
914         num_of_slaves = internals->active_slave_count;
915         memcpy(slaves, internals->active_slaves,
916                         sizeof(internals->active_slaves[0]) * num_of_slaves);
917
918         if (num_of_slaves < 1)
919                 return num_tx_total;
920
921         /* Populate slaves mbuf with the packets which are to be sent on it  */
922         for (i = 0; i < nb_pkts; i++) {
923                 /* Select output slave using hash based on xmit policy */
924                 op_slave_id = internals->xmit_hash(bufs[i], num_of_slaves);
925
926                 /* Populate slave mbuf arrays with mbufs for that slave */
927                 slave_bufs[op_slave_id][slave_nb_pkts[op_slave_id]++] = bufs[i];
928         }
929
930         /* Send packet burst on each slave device */
931         for (i = 0; i < num_of_slaves; i++) {
932                 if (slave_nb_pkts[i] > 0) {
933                         num_tx_slave = rte_eth_tx_burst(slaves[i], bd_tx_q->queue_id,
934                                         slave_bufs[i], slave_nb_pkts[i]);
935
936                         /* if tx burst fails move packets to end of bufs */
937                         if (unlikely(num_tx_slave < slave_nb_pkts[i])) {
938                                 int slave_tx_fail_count = slave_nb_pkts[i] - num_tx_slave;
939
940                                 tx_fail_total += slave_tx_fail_count;
941                                 memcpy(&bufs[nb_pkts - tx_fail_total],
942                                                 &slave_bufs[i][num_tx_slave],
943                                                 slave_tx_fail_count * sizeof(bufs[0]));
944                         }
945
946                         num_tx_total += num_tx_slave;
947                 }
948         }
949
950         return num_tx_total;
951 }
952
953 static uint16_t
954 bond_ethdev_tx_burst_8023ad(void *queue, struct rte_mbuf **bufs,
955                 uint16_t nb_pkts)
956 {
957         struct bond_dev_private *internals;
958         struct bond_tx_queue *bd_tx_q;
959
960         uint8_t num_of_slaves;
961         uint8_t slaves[RTE_MAX_ETHPORTS];
962          /* positions in slaves, not ID */
963         uint8_t distributing_offsets[RTE_MAX_ETHPORTS];
964         uint8_t distributing_count;
965
966         uint16_t num_tx_slave, num_tx_total = 0, num_tx_fail_total = 0;
967         uint16_t i, j, op_slave_idx;
968         const uint16_t buffs_size = nb_pkts + BOND_MODE_8023AX_SLAVE_TX_PKTS + 1;
969
970         /* Allocate additional packets in case 8023AD mode. */
971         struct rte_mbuf *slave_bufs[RTE_MAX_ETHPORTS][buffs_size];
972         void *slow_pkts[BOND_MODE_8023AX_SLAVE_TX_PKTS] = { NULL };
973
974         /* Total amount of packets in slave_bufs */
975         uint16_t slave_nb_pkts[RTE_MAX_ETHPORTS] = { 0 };
976         /* Slow packets placed in each slave */
977         uint8_t slave_slow_nb_pkts[RTE_MAX_ETHPORTS] = { 0 };
978
979         bd_tx_q = (struct bond_tx_queue *)queue;
980         internals = bd_tx_q->dev_private;
981
982         /* Copy slave list to protect against slave up/down changes during tx
983          * bursting */
984         num_of_slaves = internals->active_slave_count;
985         if (num_of_slaves < 1)
986                 return num_tx_total;
987
988         memcpy(slaves, internals->active_slaves, sizeof(slaves[0]) * num_of_slaves);
989
990         distributing_count = 0;
991         for (i = 0; i < num_of_slaves; i++) {
992                 struct port *port = &mode_8023ad_ports[slaves[i]];
993
994                 slave_slow_nb_pkts[i] = rte_ring_dequeue_burst(port->tx_ring,
995                                 slow_pkts, BOND_MODE_8023AX_SLAVE_TX_PKTS);
996                 slave_nb_pkts[i] = slave_slow_nb_pkts[i];
997
998                 for (j = 0; j < slave_slow_nb_pkts[i]; j++)
999                         slave_bufs[i][j] = slow_pkts[j];
1000
1001                 if (ACTOR_STATE(port, DISTRIBUTING))
1002                         distributing_offsets[distributing_count++] = i;
1003         }
1004
1005         if (likely(distributing_count > 0)) {
1006                 /* Populate slaves mbuf with the packets which are to be sent on it */
1007                 for (i = 0; i < nb_pkts; i++) {
1008                         /* Select output slave using hash based on xmit policy */
1009                         op_slave_idx = internals->xmit_hash(bufs[i], distributing_count);
1010
1011                         /* Populate slave mbuf arrays with mbufs for that slave. Use only
1012                          * slaves that are currently distributing. */
1013                         uint8_t slave_offset = distributing_offsets[op_slave_idx];
1014                         slave_bufs[slave_offset][slave_nb_pkts[slave_offset]] = bufs[i];
1015                         slave_nb_pkts[slave_offset]++;
1016                 }
1017         }
1018
1019         /* Send packet burst on each slave device */
1020         for (i = 0; i < num_of_slaves; i++) {
1021                 if (slave_nb_pkts[i] == 0)
1022                         continue;
1023
1024                 num_tx_slave = rte_eth_tx_burst(slaves[i], bd_tx_q->queue_id,
1025                                 slave_bufs[i], slave_nb_pkts[i]);
1026
1027                 /* If tx burst fails drop slow packets */
1028                 for ( ; num_tx_slave < slave_slow_nb_pkts[i]; num_tx_slave++)
1029                         rte_pktmbuf_free(slave_bufs[i][num_tx_slave]);
1030
1031                 num_tx_total += num_tx_slave - slave_slow_nb_pkts[i];
1032                 num_tx_fail_total += slave_nb_pkts[i] - num_tx_slave;
1033
1034                 /* If tx burst fails move packets to end of bufs */
1035                 if (unlikely(num_tx_slave < slave_nb_pkts[i])) {
1036                         uint16_t j = nb_pkts - num_tx_fail_total;
1037                         for ( ; num_tx_slave < slave_nb_pkts[i]; j++, num_tx_slave++)
1038                                 bufs[j] = slave_bufs[i][num_tx_slave];
1039                 }
1040         }
1041
1042         return num_tx_total;
1043 }
1044
1045 static uint16_t
1046 bond_ethdev_tx_burst_broadcast(void *queue, struct rte_mbuf **bufs,
1047                 uint16_t nb_pkts)
1048 {
1049         struct bond_dev_private *internals;
1050         struct bond_tx_queue *bd_tx_q;
1051
1052         uint8_t tx_failed_flag = 0, num_of_slaves;
1053         uint8_t slaves[RTE_MAX_ETHPORTS];
1054
1055         uint16_t max_nb_of_tx_pkts = 0;
1056
1057         int slave_tx_total[RTE_MAX_ETHPORTS];
1058         int i, most_successful_tx_slave = -1;
1059
1060         bd_tx_q = (struct bond_tx_queue *)queue;
1061         internals = bd_tx_q->dev_private;
1062
1063         /* Copy slave list to protect against slave up/down changes during tx
1064          * bursting */
1065         num_of_slaves = internals->active_slave_count;
1066         memcpy(slaves, internals->active_slaves,
1067                         sizeof(internals->active_slaves[0]) * num_of_slaves);
1068
1069         if (num_of_slaves < 1)
1070                 return 0;
1071
1072         /* Increment reference count on mbufs */
1073         for (i = 0; i < nb_pkts; i++)
1074                 rte_mbuf_refcnt_update(bufs[i], num_of_slaves - 1);
1075
1076         /* Transmit burst on each active slave */
1077         for (i = 0; i < num_of_slaves; i++) {
1078                 slave_tx_total[i] = rte_eth_tx_burst(slaves[i], bd_tx_q->queue_id,
1079                                         bufs, nb_pkts);
1080
1081                 if (unlikely(slave_tx_total[i] < nb_pkts))
1082                         tx_failed_flag = 1;
1083
1084                 /* record the value and slave index for the slave which transmits the
1085                  * maximum number of packets */
1086                 if (slave_tx_total[i] > max_nb_of_tx_pkts) {
1087                         max_nb_of_tx_pkts = slave_tx_total[i];
1088                         most_successful_tx_slave = i;
1089                 }
1090         }
1091
1092         /* if slaves fail to transmit packets from burst, the calling application
1093          * is not expected to know about multiple references to packets so we must
1094          * handle failures of all packets except those of the most successful slave
1095          */
1096         if (unlikely(tx_failed_flag))
1097                 for (i = 0; i < num_of_slaves; i++)
1098                         if (i != most_successful_tx_slave)
1099                                 while (slave_tx_total[i] < nb_pkts)
1100                                         rte_pktmbuf_free(bufs[slave_tx_total[i]++]);
1101
1102         return max_nb_of_tx_pkts;
1103 }
1104
1105 void
1106 link_properties_set(struct rte_eth_dev *bonded_eth_dev,
1107                 struct rte_eth_link *slave_dev_link)
1108 {
1109         struct rte_eth_link *bonded_dev_link = &bonded_eth_dev->data->dev_link;
1110         struct bond_dev_private *internals = bonded_eth_dev->data->dev_private;
1111
1112         if (slave_dev_link->link_status &&
1113                 bonded_eth_dev->data->dev_started) {
1114                 bonded_dev_link->link_duplex = slave_dev_link->link_duplex;
1115                 bonded_dev_link->link_speed = slave_dev_link->link_speed;
1116
1117                 internals->link_props_set = 1;
1118         }
1119 }
1120
1121 void
1122 link_properties_reset(struct rte_eth_dev *bonded_eth_dev)
1123 {
1124         struct bond_dev_private *internals = bonded_eth_dev->data->dev_private;
1125
1126         memset(&(bonded_eth_dev->data->dev_link), 0,
1127                         sizeof(bonded_eth_dev->data->dev_link));
1128
1129         internals->link_props_set = 0;
1130 }
1131
1132 int
1133 link_properties_valid(struct rte_eth_link *bonded_dev_link,
1134                 struct rte_eth_link *slave_dev_link)
1135 {
1136         if (bonded_dev_link->link_duplex != slave_dev_link->link_duplex ||
1137                 bonded_dev_link->link_speed !=  slave_dev_link->link_speed)
1138                 return -1;
1139
1140         return 0;
1141 }
1142
1143 int
1144 mac_address_get(struct rte_eth_dev *eth_dev, struct ether_addr *dst_mac_addr)
1145 {
1146         struct ether_addr *mac_addr;
1147
1148         if (eth_dev == NULL) {
1149                 RTE_LOG(ERR, PMD, "%s: NULL pointer eth_dev specified\n", __func__);
1150                 return -1;
1151         }
1152
1153         if (dst_mac_addr == NULL) {
1154                 RTE_LOG(ERR, PMD, "%s: NULL pointer MAC specified\n", __func__);
1155                 return -1;
1156         }
1157
1158         mac_addr = eth_dev->data->mac_addrs;
1159
1160         ether_addr_copy(mac_addr, dst_mac_addr);
1161         return 0;
1162 }
1163
1164 int
1165 mac_address_set(struct rte_eth_dev *eth_dev, struct ether_addr *new_mac_addr)
1166 {
1167         struct ether_addr *mac_addr;
1168
1169         if (eth_dev == NULL) {
1170                 RTE_BOND_LOG(ERR, "NULL pointer eth_dev specified");
1171                 return -1;
1172         }
1173
1174         if (new_mac_addr == NULL) {
1175                 RTE_BOND_LOG(ERR, "NULL pointer MAC specified");
1176                 return -1;
1177         }
1178
1179         mac_addr = eth_dev->data->mac_addrs;
1180
1181         /* If new MAC is different to current MAC then update */
1182         if (memcmp(mac_addr, new_mac_addr, sizeof(*mac_addr)) != 0)
1183                 memcpy(mac_addr, new_mac_addr, sizeof(*mac_addr));
1184
1185         return 0;
1186 }
1187
1188 int
1189 mac_address_slaves_update(struct rte_eth_dev *bonded_eth_dev)
1190 {
1191         struct bond_dev_private *internals = bonded_eth_dev->data->dev_private;
1192         int i;
1193
1194         /* Update slave devices MAC addresses */
1195         if (internals->slave_count < 1)
1196                 return -1;
1197
1198         switch (internals->mode) {
1199         case BONDING_MODE_ROUND_ROBIN:
1200         case BONDING_MODE_BALANCE:
1201         case BONDING_MODE_BROADCAST:
1202                 for (i = 0; i < internals->slave_count; i++) {
1203                         if (mac_address_set(&rte_eth_devices[internals->slaves[i].port_id],
1204                                         bonded_eth_dev->data->mac_addrs)) {
1205                                 RTE_BOND_LOG(ERR, "Failed to update port Id %d MAC address",
1206                                                 internals->slaves[i].port_id);
1207                                 return -1;
1208                         }
1209                 }
1210                 break;
1211         case BONDING_MODE_8023AD:
1212                 bond_mode_8023ad_mac_address_update(bonded_eth_dev);
1213                 break;
1214         case BONDING_MODE_ACTIVE_BACKUP:
1215         case BONDING_MODE_TLB:
1216         case BONDING_MODE_ALB:
1217         default:
1218                 for (i = 0; i < internals->slave_count; i++) {
1219                         if (internals->slaves[i].port_id ==
1220                                         internals->current_primary_port) {
1221                                 if (mac_address_set(&rte_eth_devices[internals->primary_port],
1222                                                 bonded_eth_dev->data->mac_addrs)) {
1223                                         RTE_BOND_LOG(ERR, "Failed to update port Id %d MAC address",
1224                                                         internals->current_primary_port);
1225                                         return -1;
1226                                 }
1227                         } else {
1228                                 if (mac_address_set(
1229                                                 &rte_eth_devices[internals->slaves[i].port_id],
1230                                                 &internals->slaves[i].persisted_mac_addr)) {
1231                                         RTE_BOND_LOG(ERR, "Failed to update port Id %d MAC address",
1232                                                         internals->slaves[i].port_id);
1233                                         return -1;
1234                                 }
1235                         }
1236                 }
1237         }
1238
1239         return 0;
1240 }
1241
1242 int
1243 bond_ethdev_mode_set(struct rte_eth_dev *eth_dev, int mode)
1244 {
1245         struct bond_dev_private *internals;
1246
1247         internals = eth_dev->data->dev_private;
1248
1249         switch (mode) {
1250         case BONDING_MODE_ROUND_ROBIN:
1251                 eth_dev->tx_pkt_burst = bond_ethdev_tx_burst_round_robin;
1252                 eth_dev->rx_pkt_burst = bond_ethdev_rx_burst;
1253                 break;
1254         case BONDING_MODE_ACTIVE_BACKUP:
1255                 eth_dev->tx_pkt_burst = bond_ethdev_tx_burst_active_backup;
1256                 eth_dev->rx_pkt_burst = bond_ethdev_rx_burst_active_backup;
1257                 break;
1258         case BONDING_MODE_BALANCE:
1259                 eth_dev->tx_pkt_burst = bond_ethdev_tx_burst_balance;
1260                 eth_dev->rx_pkt_burst = bond_ethdev_rx_burst;
1261                 break;
1262         case BONDING_MODE_BROADCAST:
1263                 eth_dev->tx_pkt_burst = bond_ethdev_tx_burst_broadcast;
1264                 eth_dev->rx_pkt_burst = bond_ethdev_rx_burst;
1265                 break;
1266         case BONDING_MODE_8023AD:
1267                 if (bond_mode_8023ad_enable(eth_dev) != 0)
1268                         return -1;
1269
1270                 eth_dev->rx_pkt_burst = bond_ethdev_rx_burst_8023ad;
1271                 eth_dev->tx_pkt_burst = bond_ethdev_tx_burst_8023ad;
1272                 RTE_LOG(WARNING, PMD,
1273                                 "Using mode 4, it is necessary to do TX burst and RX burst "
1274                                 "at least every 100ms.\n");
1275                 break;
1276         case BONDING_MODE_TLB:
1277                 eth_dev->tx_pkt_burst = bond_ethdev_tx_burst_tlb;
1278                 eth_dev->rx_pkt_burst = bond_ethdev_rx_burst_active_backup;
1279                 break;
1280         case BONDING_MODE_ALB:
1281                 if (bond_mode_alb_enable(eth_dev) != 0)
1282                         return -1;
1283
1284                 eth_dev->tx_pkt_burst = bond_ethdev_tx_burst_alb;
1285                 eth_dev->rx_pkt_burst = bond_ethdev_rx_burst_alb;
1286                 break;
1287         default:
1288                 return -1;
1289         }
1290
1291         internals->mode = mode;
1292
1293         return 0;
1294 }
1295
1296 int
1297 slave_configure(struct rte_eth_dev *bonded_eth_dev,
1298                 struct rte_eth_dev *slave_eth_dev)
1299 {
1300         struct bond_rx_queue *bd_rx_q;
1301         struct bond_tx_queue *bd_tx_q;
1302
1303         int errval;
1304         uint16_t q_id;
1305
1306         /* Stop slave */
1307         rte_eth_dev_stop(slave_eth_dev->data->port_id);
1308
1309         /* Enable interrupts on slave device if supported */
1310         if (slave_eth_dev->driver->pci_drv.drv_flags & RTE_PCI_DRV_INTR_LSC)
1311                 slave_eth_dev->data->dev_conf.intr_conf.lsc = 1;
1312
1313         /* Configure device */
1314         errval = rte_eth_dev_configure(slave_eth_dev->data->port_id,
1315                         bonded_eth_dev->data->nb_rx_queues,
1316                         bonded_eth_dev->data->nb_tx_queues,
1317                         &(slave_eth_dev->data->dev_conf));
1318         if (errval != 0) {
1319                 RTE_BOND_LOG(ERR, "Cannot configure slave device: port %u , err (%d)",
1320                                 slave_eth_dev->data->port_id, errval);
1321                 return errval;
1322         }
1323
1324         /* Setup Rx Queues */
1325         for (q_id = 0; q_id < bonded_eth_dev->data->nb_rx_queues; q_id++) {
1326                 bd_rx_q = (struct bond_rx_queue *)bonded_eth_dev->data->rx_queues[q_id];
1327
1328                 errval = rte_eth_rx_queue_setup(slave_eth_dev->data->port_id, q_id,
1329                                 bd_rx_q->nb_rx_desc,
1330                                 rte_eth_dev_socket_id(slave_eth_dev->data->port_id),
1331                                 &(bd_rx_q->rx_conf), bd_rx_q->mb_pool);
1332                 if (errval != 0) {
1333                         RTE_BOND_LOG(ERR,
1334                                         "rte_eth_rx_queue_setup: port=%d queue_id %d, err (%d)",
1335                                         slave_eth_dev->data->port_id, q_id, errval);
1336                         return errval;
1337                 }
1338         }
1339
1340         /* Setup Tx Queues */
1341         for (q_id = 0; q_id < bonded_eth_dev->data->nb_tx_queues; q_id++) {
1342                 bd_tx_q = (struct bond_tx_queue *)bonded_eth_dev->data->tx_queues[q_id];
1343
1344                 errval = rte_eth_tx_queue_setup(slave_eth_dev->data->port_id, q_id,
1345                                 bd_tx_q->nb_tx_desc,
1346                                 rte_eth_dev_socket_id(slave_eth_dev->data->port_id),
1347                                 &bd_tx_q->tx_conf);
1348                 if (errval != 0) {
1349                         RTE_BOND_LOG(ERR,
1350                                         "rte_eth_tx_queue_setup: port=%d queue_id %d, err (%d)",
1351                                         slave_eth_dev->data->port_id, q_id, errval);
1352                         return errval;
1353                 }
1354         }
1355
1356         /* Start device */
1357         errval = rte_eth_dev_start(slave_eth_dev->data->port_id);
1358         if (errval != 0) {
1359                 RTE_BOND_LOG(ERR, "rte_eth_dev_start: port=%u, err (%d)",
1360                                 slave_eth_dev->data->port_id, errval);
1361                 return -1;
1362         }
1363
1364         /* If lsc interrupt is set, check initial slave's link status */
1365         if (slave_eth_dev->driver->pci_drv.drv_flags & RTE_PCI_DRV_INTR_LSC)
1366                 bond_ethdev_lsc_event_callback(slave_eth_dev->data->port_id,
1367                                 RTE_ETH_EVENT_INTR_LSC, &bonded_eth_dev->data->port_id);
1368
1369         return 0;
1370 }
1371
1372 void
1373 slave_remove(struct bond_dev_private *internals,
1374                 struct rte_eth_dev *slave_eth_dev)
1375 {
1376         uint8_t i;
1377
1378         for (i = 0; i < internals->slave_count; i++)
1379                 if (internals->slaves[i].port_id ==
1380                                 slave_eth_dev->data->port_id)
1381                         break;
1382
1383         if (i < (internals->slave_count - 1))
1384                 memmove(&internals->slaves[i], &internals->slaves[i + 1],
1385                                 sizeof(internals->slaves[0]) *
1386                                 (internals->slave_count - i - 1));
1387
1388         internals->slave_count--;
1389 }
1390
1391 static void
1392 bond_ethdev_slave_link_status_change_monitor(void *cb_arg);
1393
1394 void
1395 slave_add(struct bond_dev_private *internals,
1396                 struct rte_eth_dev *slave_eth_dev)
1397 {
1398         struct bond_slave_details *slave_details =
1399                         &internals->slaves[internals->slave_count];
1400
1401         slave_details->port_id = slave_eth_dev->data->port_id;
1402         slave_details->last_link_status = 0;
1403
1404         /* If slave device doesn't support interrupts then we need to enabled
1405          * polling to monitor link status */
1406         if (!(slave_eth_dev->pci_dev->driver->drv_flags & RTE_PCI_DRV_INTR_LSC)) {
1407                 slave_details->link_status_poll_enabled = 1;
1408
1409                 if (!internals->link_status_polling_enabled) {
1410                         internals->link_status_polling_enabled = 1;
1411
1412                         rte_eal_alarm_set(internals->link_status_polling_interval_ms * 1000,
1413                                         bond_ethdev_slave_link_status_change_monitor,
1414                                         (void *)&rte_eth_devices[internals->port_id]);
1415                 }
1416         }
1417
1418         slave_details->link_status_wait_to_complete = 0;
1419         /* clean tlb_last_obytes when adding port for bonding device */
1420         memcpy(&(slave_details->persisted_mac_addr), slave_eth_dev->data->mac_addrs,
1421                         sizeof(struct ether_addr));
1422 }
1423
1424 void
1425 bond_ethdev_primary_set(struct bond_dev_private *internals,
1426                 uint8_t slave_port_id)
1427 {
1428         int i;
1429
1430         if (internals->active_slave_count < 1)
1431                 internals->current_primary_port = slave_port_id;
1432         else
1433                 /* Search bonded device slave ports for new proposed primary port */
1434                 for (i = 0; i < internals->active_slave_count; i++) {
1435                         if (internals->active_slaves[i] == slave_port_id)
1436                                 internals->current_primary_port = slave_port_id;
1437                 }
1438 }
1439
1440 static void
1441 bond_ethdev_promiscuous_enable(struct rte_eth_dev *eth_dev);
1442
1443 static int
1444 bond_ethdev_start(struct rte_eth_dev *eth_dev)
1445 {
1446         struct bond_dev_private *internals;
1447         int i;
1448
1449         /* slave eth dev will be started by bonded device */
1450         if (valid_bonded_ethdev(eth_dev)) {
1451                 RTE_BOND_LOG(ERR, "User tried to explicitly start a slave eth_dev (%d)",
1452                                 eth_dev->data->port_id);
1453                 return -1;
1454         }
1455
1456         eth_dev->data->dev_link.link_status = 0;
1457         eth_dev->data->dev_started = 1;
1458
1459         internals = eth_dev->data->dev_private;
1460
1461         if (internals->slave_count == 0) {
1462                 RTE_BOND_LOG(ERR, "Cannot start port since there are no slave devices");
1463                 return -1;
1464         }
1465
1466         if (internals->user_defined_mac == 0) {
1467                 struct ether_addr *new_mac_addr = NULL;
1468
1469                 for (i = 0; i < internals->slave_count; i++)
1470                         if (internals->slaves[i].port_id == internals->primary_port)
1471                                 new_mac_addr = &internals->slaves[i].persisted_mac_addr;
1472
1473                 if (new_mac_addr == NULL)
1474                         return -1;
1475
1476                 if (mac_address_set(eth_dev, new_mac_addr) != 0) {
1477                         RTE_BOND_LOG(ERR, "bonded port (%d) failed to update MAC address",
1478                                         eth_dev->data->port_id);
1479                         return -1;
1480                 }
1481         }
1482
1483         /* Update all slave devices MACs*/
1484         if (mac_address_slaves_update(eth_dev) != 0)
1485                 return -1;
1486
1487         /* If bonded device is configure in promiscuous mode then re-apply config */
1488         if (internals->promiscuous_en)
1489                 bond_ethdev_promiscuous_enable(eth_dev);
1490
1491         /* Reconfigure each slave device if starting bonded device */
1492         for (i = 0; i < internals->slave_count; i++) {
1493                 if (slave_configure(eth_dev,
1494                                 &(rte_eth_devices[internals->slaves[i].port_id])) != 0) {
1495                         RTE_BOND_LOG(ERR,
1496                                         "bonded port (%d) failed to reconfigure slave device (%d)",
1497                                         eth_dev->data->port_id, internals->slaves[i].port_id);
1498                         return -1;
1499                 }
1500         }
1501
1502         if (internals->user_defined_primary_port)
1503                 bond_ethdev_primary_set(internals, internals->primary_port);
1504
1505         if (internals->mode == BONDING_MODE_8023AD)
1506                 bond_mode_8023ad_start(eth_dev);
1507
1508         if (internals->mode == BONDING_MODE_TLB ||
1509                         internals->mode == BONDING_MODE_ALB)
1510                 bond_tlb_enable(internals);
1511
1512         return 0;
1513 }
1514
1515 static void
1516 bond_ethdev_free_queues(struct rte_eth_dev *dev)
1517 {
1518         uint8_t i;
1519
1520         for (i = 0; i < dev->data->nb_rx_queues; i++) {
1521                 rte_free(dev->data->rx_queues[i]);
1522                 dev->data->rx_queues[i] = NULL;
1523         }
1524         dev->data->nb_rx_queues = 0;
1525
1526         for (i = 0; i < dev->data->nb_tx_queues; i++) {
1527                 rte_free(dev->data->tx_queues[i]);
1528                 dev->data->tx_queues[i] = NULL;
1529         }
1530         dev->data->nb_tx_queues = 0;
1531 }
1532
1533 void
1534 bond_ethdev_stop(struct rte_eth_dev *eth_dev)
1535 {
1536         struct bond_dev_private *internals = eth_dev->data->dev_private;
1537         uint8_t i;
1538
1539         if (internals->mode == BONDING_MODE_8023AD) {
1540                 struct port *port;
1541                 void *pkt = NULL;
1542
1543                 bond_mode_8023ad_stop(eth_dev);
1544
1545                 /* Discard all messages to/from mode 4 state machines */
1546                 for (i = 0; i < internals->active_slave_count; i++) {
1547                         port = &mode_8023ad_ports[internals->active_slaves[i]];
1548
1549                         RTE_VERIFY(port->rx_ring != NULL);
1550                         while (rte_ring_dequeue(port->rx_ring, &pkt) != -ENOENT)
1551                                 rte_pktmbuf_free(pkt);
1552
1553                         RTE_VERIFY(port->tx_ring != NULL);
1554                         while (rte_ring_dequeue(port->tx_ring, &pkt) != -ENOENT)
1555                                 rte_pktmbuf_free(pkt);
1556                 }
1557         }
1558
1559         if (internals->mode == BONDING_MODE_TLB ||
1560                         internals->mode == BONDING_MODE_ALB) {
1561                 bond_tlb_disable(internals);
1562                 for (i = 0; i < internals->active_slave_count; i++)
1563                         tlb_last_obytets[internals->active_slaves[i]] = 0;
1564         }
1565
1566         internals->active_slave_count = 0;
1567         internals->link_status_polling_enabled = 0;
1568
1569         eth_dev->data->dev_link.link_status = 0;
1570         eth_dev->data->dev_started = 0;
1571 }
1572
1573 void
1574 bond_ethdev_close(struct rte_eth_dev *dev)
1575 {
1576         bond_ethdev_free_queues(dev);
1577 }
1578
1579 /* forward declaration */
1580 static int bond_ethdev_configure(struct rte_eth_dev *dev);
1581
1582 static void
1583 bond_ethdev_info(struct rte_eth_dev *dev, struct rte_eth_dev_info *dev_info)
1584 {
1585         struct bond_dev_private *internals = dev->data->dev_private;
1586
1587         dev_info->max_mac_addrs = 1;
1588
1589         dev_info->max_rx_pktlen = (uint32_t)2048;
1590
1591         dev_info->max_rx_queues = (uint16_t)128;
1592         dev_info->max_tx_queues = (uint16_t)512;
1593
1594         dev_info->min_rx_bufsize = 0;
1595         dev_info->pci_dev = dev->pci_dev;
1596
1597         dev_info->rx_offload_capa = internals->rx_offload_capa;
1598         dev_info->tx_offload_capa = internals->tx_offload_capa;
1599 }
1600
1601 static int
1602 bond_ethdev_rx_queue_setup(struct rte_eth_dev *dev, uint16_t rx_queue_id,
1603                 uint16_t nb_rx_desc, unsigned int socket_id __rte_unused,
1604                 const struct rte_eth_rxconf *rx_conf, struct rte_mempool *mb_pool)
1605 {
1606         struct bond_rx_queue *bd_rx_q = (struct bond_rx_queue *)
1607                         rte_zmalloc_socket(NULL, sizeof(struct bond_rx_queue),
1608                                         0, dev->pci_dev->numa_node);
1609         if (bd_rx_q == NULL)
1610                 return -1;
1611
1612         bd_rx_q->queue_id = rx_queue_id;
1613         bd_rx_q->dev_private = dev->data->dev_private;
1614
1615         bd_rx_q->nb_rx_desc = nb_rx_desc;
1616
1617         memcpy(&(bd_rx_q->rx_conf), rx_conf, sizeof(struct rte_eth_rxconf));
1618         bd_rx_q->mb_pool = mb_pool;
1619
1620         dev->data->rx_queues[rx_queue_id] = bd_rx_q;
1621
1622         return 0;
1623 }
1624
1625 static int
1626 bond_ethdev_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
1627                 uint16_t nb_tx_desc, unsigned int socket_id __rte_unused,
1628                 const struct rte_eth_txconf *tx_conf)
1629 {
1630         struct bond_tx_queue *bd_tx_q  = (struct bond_tx_queue *)
1631                         rte_zmalloc_socket(NULL, sizeof(struct bond_tx_queue),
1632                                         0, dev->pci_dev->numa_node);
1633
1634         if (bd_tx_q == NULL)
1635                 return -1;
1636
1637         bd_tx_q->queue_id = tx_queue_id;
1638         bd_tx_q->dev_private = dev->data->dev_private;
1639
1640         bd_tx_q->nb_tx_desc = nb_tx_desc;
1641         memcpy(&(bd_tx_q->tx_conf), tx_conf, sizeof(bd_tx_q->tx_conf));
1642
1643         dev->data->tx_queues[tx_queue_id] = bd_tx_q;
1644
1645         return 0;
1646 }
1647
1648 static void
1649 bond_ethdev_rx_queue_release(void *queue)
1650 {
1651         if (queue == NULL)
1652                 return;
1653
1654         rte_free(queue);
1655 }
1656
1657 static void
1658 bond_ethdev_tx_queue_release(void *queue)
1659 {
1660         if (queue == NULL)
1661                 return;
1662
1663         rte_free(queue);
1664 }
1665
1666 static void
1667 bond_ethdev_slave_link_status_change_monitor(void *cb_arg)
1668 {
1669         struct rte_eth_dev *bonded_ethdev, *slave_ethdev;
1670         struct bond_dev_private *internals;
1671
1672         /* Default value for polling slave found is true as we don't want to
1673          * disable the polling thread if we cannot get the lock */
1674         int i, polling_slave_found = 1;
1675
1676         if (cb_arg == NULL)
1677                 return;
1678
1679         bonded_ethdev = (struct rte_eth_dev *)cb_arg;
1680         internals = (struct bond_dev_private *)bonded_ethdev->data->dev_private;
1681
1682         if (!bonded_ethdev->data->dev_started ||
1683                 !internals->link_status_polling_enabled)
1684                 return;
1685
1686         /* If device is currently being configured then don't check slaves link
1687          * status, wait until next period */
1688         if (rte_spinlock_trylock(&internals->lock)) {
1689                 if (internals->slave_count > 0)
1690                         polling_slave_found = 0;
1691
1692                 for (i = 0; i < internals->slave_count; i++) {
1693                         if (!internals->slaves[i].link_status_poll_enabled)
1694                                 continue;
1695
1696                         slave_ethdev = &rte_eth_devices[internals->slaves[i].port_id];
1697                         polling_slave_found = 1;
1698
1699                         /* Update slave link status */
1700                         (*slave_ethdev->dev_ops->link_update)(slave_ethdev,
1701                                         internals->slaves[i].link_status_wait_to_complete);
1702
1703                         /* if link status has changed since last checked then call lsc
1704                          * event callback */
1705                         if (slave_ethdev->data->dev_link.link_status !=
1706                                         internals->slaves[i].last_link_status) {
1707                                 internals->slaves[i].last_link_status =
1708                                                 slave_ethdev->data->dev_link.link_status;
1709
1710                                 bond_ethdev_lsc_event_callback(internals->slaves[i].port_id,
1711                                                 RTE_ETH_EVENT_INTR_LSC,
1712                                                 &bonded_ethdev->data->port_id);
1713                         }
1714                 }
1715                 rte_spinlock_unlock(&internals->lock);
1716         }
1717
1718         if (polling_slave_found)
1719                 /* Set alarm to continue monitoring link status of slave ethdev's */
1720                 rte_eal_alarm_set(internals->link_status_polling_interval_ms * 1000,
1721                                 bond_ethdev_slave_link_status_change_monitor, cb_arg);
1722 }
1723
1724 static int
1725 bond_ethdev_link_update(struct rte_eth_dev *bonded_eth_dev,
1726                 int wait_to_complete)
1727 {
1728         struct bond_dev_private *internals = bonded_eth_dev->data->dev_private;
1729
1730         if (!bonded_eth_dev->data->dev_started ||
1731                 internals->active_slave_count == 0) {
1732                 bonded_eth_dev->data->dev_link.link_status = 0;
1733                 return 0;
1734         } else {
1735                 struct rte_eth_dev *slave_eth_dev;
1736                 int i, link_up = 0;
1737
1738                 for (i = 0; i < internals->active_slave_count; i++) {
1739                         slave_eth_dev = &rte_eth_devices[internals->active_slaves[i]];
1740
1741                         (*slave_eth_dev->dev_ops->link_update)(slave_eth_dev,
1742                                         wait_to_complete);
1743                         if (slave_eth_dev->data->dev_link.link_status == 1) {
1744                                 link_up = 1;
1745                                 break;
1746                         }
1747                 }
1748
1749                 bonded_eth_dev->data->dev_link.link_status = link_up;
1750         }
1751
1752         return 0;
1753 }
1754
1755 static void
1756 bond_ethdev_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *stats)
1757 {
1758         struct bond_dev_private *internals = dev->data->dev_private;
1759         struct rte_eth_stats slave_stats;
1760         int i;
1761
1762         for (i = 0; i < internals->slave_count; i++) {
1763                 rte_eth_stats_get(internals->slaves[i].port_id, &slave_stats);
1764
1765                 stats->ipackets += slave_stats.ipackets;
1766                 stats->opackets += slave_stats.opackets;
1767                 stats->ibytes += slave_stats.ibytes;
1768                 stats->obytes += slave_stats.obytes;
1769                 stats->ierrors += slave_stats.ierrors;
1770                 stats->oerrors += slave_stats.oerrors;
1771                 stats->imcasts += slave_stats.imcasts;
1772                 stats->rx_nombuf += slave_stats.rx_nombuf;
1773                 stats->fdirmatch += slave_stats.fdirmatch;
1774                 stats->fdirmiss += slave_stats.fdirmiss;
1775                 stats->tx_pause_xon += slave_stats.tx_pause_xon;
1776                 stats->rx_pause_xon += slave_stats.rx_pause_xon;
1777                 stats->tx_pause_xoff += slave_stats.tx_pause_xoff;
1778                 stats->rx_pause_xoff += slave_stats.rx_pause_xoff;
1779         }
1780 }
1781
1782 static void
1783 bond_ethdev_stats_reset(struct rte_eth_dev *dev)
1784 {
1785         struct bond_dev_private *internals = dev->data->dev_private;
1786         int i;
1787
1788         for (i = 0; i < internals->slave_count; i++)
1789                 rte_eth_stats_reset(internals->slaves[i].port_id);
1790 }
1791
1792 static void
1793 bond_ethdev_promiscuous_enable(struct rte_eth_dev *eth_dev)
1794 {
1795         struct bond_dev_private *internals = eth_dev->data->dev_private;
1796         int i;
1797
1798         internals->promiscuous_en = 1;
1799
1800         switch (internals->mode) {
1801         /* Promiscuous mode is propagated to all slaves */
1802         case BONDING_MODE_ROUND_ROBIN:
1803         case BONDING_MODE_BALANCE:
1804         case BONDING_MODE_BROADCAST:
1805                 for (i = 0; i < internals->slave_count; i++)
1806                         rte_eth_promiscuous_enable(internals->slaves[i].port_id);
1807                 break;
1808         /* In mode4 promiscus mode is managed when slave is added/removed */
1809         case BONDING_MODE_8023AD:
1810                 break;
1811         /* Promiscuous mode is propagated only to primary slave */
1812         case BONDING_MODE_ACTIVE_BACKUP:
1813         case BONDING_MODE_TLB:
1814         case BONDING_MODE_ALB:
1815         default:
1816                 rte_eth_promiscuous_enable(internals->current_primary_port);
1817         }
1818 }
1819
1820 static void
1821 bond_ethdev_promiscuous_disable(struct rte_eth_dev *dev)
1822 {
1823         struct bond_dev_private *internals = dev->data->dev_private;
1824         int i;
1825
1826         internals->promiscuous_en = 0;
1827
1828         switch (internals->mode) {
1829         /* Promiscuous mode is propagated to all slaves */
1830         case BONDING_MODE_ROUND_ROBIN:
1831         case BONDING_MODE_BALANCE:
1832         case BONDING_MODE_BROADCAST:
1833                 for (i = 0; i < internals->slave_count; i++)
1834                         rte_eth_promiscuous_disable(internals->slaves[i].port_id);
1835                 break;
1836         /* In mode4 promiscus mode is set managed when slave is added/removed */
1837         case BONDING_MODE_8023AD:
1838                 break;
1839         /* Promiscuous mode is propagated only to primary slave */
1840         case BONDING_MODE_ACTIVE_BACKUP:
1841         case BONDING_MODE_TLB:
1842         case BONDING_MODE_ALB:
1843         default:
1844                 rte_eth_promiscuous_disable(internals->current_primary_port);
1845         }
1846 }
1847
1848 static void
1849 bond_ethdev_delayed_lsc_propagation(void *arg)
1850 {
1851         if (arg == NULL)
1852                 return;
1853
1854         _rte_eth_dev_callback_process((struct rte_eth_dev *)arg,
1855                         RTE_ETH_EVENT_INTR_LSC);
1856 }
1857
1858 void
1859 bond_ethdev_lsc_event_callback(uint8_t port_id, enum rte_eth_event_type type,
1860                 void *param)
1861 {
1862         struct rte_eth_dev *bonded_eth_dev, *slave_eth_dev;
1863         struct bond_dev_private *internals;
1864         struct rte_eth_link link;
1865
1866         int i, valid_slave = 0;
1867         uint8_t active_pos;
1868         uint8_t lsc_flag = 0;
1869
1870         if (type != RTE_ETH_EVENT_INTR_LSC || param == NULL)
1871                 return;
1872
1873         bonded_eth_dev = &rte_eth_devices[*(uint8_t *)param];
1874         slave_eth_dev = &rte_eth_devices[port_id];
1875
1876         if (valid_bonded_ethdev(bonded_eth_dev))
1877                 return;
1878
1879         internals = bonded_eth_dev->data->dev_private;
1880
1881         /* If the device isn't started don't handle interrupts */
1882         if (!bonded_eth_dev->data->dev_started)
1883                 return;
1884
1885         /* verify that port_id is a valid slave of bonded port */
1886         for (i = 0; i < internals->slave_count; i++) {
1887                 if (internals->slaves[i].port_id == port_id) {
1888                         valid_slave = 1;
1889                         break;
1890                 }
1891         }
1892
1893         if (!valid_slave)
1894                 return;
1895
1896         /* Search for port in active port list */
1897         active_pos = find_slave_by_id(internals->active_slaves,
1898                         internals->active_slave_count, port_id);
1899
1900         rte_eth_link_get_nowait(port_id, &link);
1901         if (link.link_status) {
1902                 if (active_pos < internals->active_slave_count)
1903                         return;
1904
1905                 /* if no active slave ports then set this port to be primary port */
1906                 if (internals->active_slave_count < 1) {
1907                         /* If first active slave, then change link status */
1908                         bonded_eth_dev->data->dev_link.link_status = 1;
1909                         internals->current_primary_port = port_id;
1910                         lsc_flag = 1;
1911
1912                         mac_address_slaves_update(bonded_eth_dev);
1913
1914                         /* Inherit eth dev link properties from first active slave */
1915                         link_properties_set(bonded_eth_dev,
1916                                         &(slave_eth_dev->data->dev_link));
1917                 }
1918
1919                 activate_slave(bonded_eth_dev, port_id);
1920
1921                 /* If user has defined the primary port then default to using it */
1922                 if (internals->user_defined_primary_port &&
1923                                 internals->primary_port == port_id)
1924                         bond_ethdev_primary_set(internals, port_id);
1925         } else {
1926                 if (active_pos == internals->active_slave_count)
1927                         return;
1928
1929                 /* Remove from active slave list */
1930                 deactivate_slave(bonded_eth_dev, port_id);
1931
1932                 /* No active slaves, change link status to down and reset other
1933                  * link properties */
1934                 if (internals->active_slave_count < 1) {
1935                         lsc_flag = 1;
1936                         bonded_eth_dev->data->dev_link.link_status = 0;
1937
1938                         link_properties_reset(bonded_eth_dev);
1939                 }
1940
1941                 /* Update primary id, take first active slave from list or if none
1942                  * available set to -1 */
1943                 if (port_id == internals->current_primary_port) {
1944                         if (internals->active_slave_count > 0)
1945                                 bond_ethdev_primary_set(internals,
1946                                                 internals->active_slaves[0]);
1947                         else
1948                                 internals->current_primary_port = internals->primary_port;
1949                 }
1950         }
1951
1952         if (lsc_flag) {
1953                 /* Cancel any possible outstanding interrupts if delays are enabled */
1954                 if (internals->link_up_delay_ms > 0 ||
1955                         internals->link_down_delay_ms > 0)
1956                         rte_eal_alarm_cancel(bond_ethdev_delayed_lsc_propagation,
1957                                         bonded_eth_dev);
1958
1959                 if (bonded_eth_dev->data->dev_link.link_status) {
1960                         if (internals->link_up_delay_ms > 0)
1961                                 rte_eal_alarm_set(internals->link_up_delay_ms * 1000,
1962                                                 bond_ethdev_delayed_lsc_propagation,
1963                                                 (void *)bonded_eth_dev);
1964                         else
1965                                 _rte_eth_dev_callback_process(bonded_eth_dev,
1966                                                 RTE_ETH_EVENT_INTR_LSC);
1967
1968                 } else {
1969                         if (internals->link_down_delay_ms > 0)
1970                                 rte_eal_alarm_set(internals->link_down_delay_ms * 1000,
1971                                                 bond_ethdev_delayed_lsc_propagation,
1972                                                 (void *)bonded_eth_dev);
1973                         else
1974                                 _rte_eth_dev_callback_process(bonded_eth_dev,
1975                                                 RTE_ETH_EVENT_INTR_LSC);
1976                 }
1977         }
1978 }
1979
1980 struct eth_dev_ops default_dev_ops = {
1981                 .dev_start = bond_ethdev_start,
1982                 .dev_stop = bond_ethdev_stop,
1983                 .dev_close = bond_ethdev_close,
1984                 .dev_configure = bond_ethdev_configure,
1985                 .dev_infos_get = bond_ethdev_info,
1986                 .rx_queue_setup = bond_ethdev_rx_queue_setup,
1987                 .tx_queue_setup = bond_ethdev_tx_queue_setup,
1988                 .rx_queue_release = bond_ethdev_rx_queue_release,
1989                 .tx_queue_release = bond_ethdev_tx_queue_release,
1990                 .link_update = bond_ethdev_link_update,
1991                 .stats_get = bond_ethdev_stats_get,
1992                 .stats_reset = bond_ethdev_stats_reset,
1993                 .promiscuous_enable = bond_ethdev_promiscuous_enable,
1994                 .promiscuous_disable = bond_ethdev_promiscuous_disable
1995 };
1996
1997 static int
1998 bond_init(const char *name, const char *params)
1999 {
2000         struct bond_dev_private *internals;
2001         struct rte_kvargs *kvlist;
2002         uint8_t bonding_mode, socket_id;
2003         int  arg_count, port_id;
2004
2005         RTE_LOG(INFO, EAL, "Initializing pmd_bond for %s\n", name);
2006
2007         kvlist = rte_kvargs_parse(params, pmd_bond_init_valid_arguments);
2008         if (kvlist == NULL)
2009                 return -1;
2010
2011         /* Parse link bonding mode */
2012         if (rte_kvargs_count(kvlist, PMD_BOND_MODE_KVARG) == 1) {
2013                 if (rte_kvargs_process(kvlist, PMD_BOND_MODE_KVARG,
2014                                 &bond_ethdev_parse_slave_mode_kvarg,
2015                                 &bonding_mode) != 0) {
2016                         RTE_LOG(ERR, EAL, "Invalid mode for bonded device %s\n",
2017                                         name);
2018                         goto parse_error;
2019                 }
2020         } else {
2021                 RTE_LOG(ERR, EAL, "Mode must be specified only once for bonded "
2022                                 "device %s\n", name);
2023                 goto parse_error;
2024         }
2025
2026         /* Parse socket id to create bonding device on */
2027         arg_count = rte_kvargs_count(kvlist, PMD_BOND_SOCKET_ID_KVARG);
2028         if (arg_count == 1) {
2029                 if (rte_kvargs_process(kvlist, PMD_BOND_SOCKET_ID_KVARG,
2030                                 &bond_ethdev_parse_socket_id_kvarg, &socket_id)
2031                                 != 0) {
2032                         RTE_LOG(ERR, EAL, "Invalid socket Id specified for "
2033                                         "bonded device %s\n", name);
2034                         goto parse_error;
2035                 }
2036         } else if (arg_count > 1) {
2037                 RTE_LOG(ERR, EAL, "Socket Id can be specified only once for "
2038                                 "bonded device %s\n", name);
2039                 goto parse_error;
2040         } else {
2041                 socket_id = rte_socket_id();
2042         }
2043
2044         /* Create link bonding eth device */
2045         port_id = rte_eth_bond_create(name, bonding_mode, socket_id);
2046         if (port_id < 0) {
2047                 RTE_LOG(ERR, EAL, "Failed to create socket %s in mode %u on "
2048                                 "socket %u.\n", name, bonding_mode, socket_id);
2049                 goto parse_error;
2050         }
2051         internals = rte_eth_devices[port_id].data->dev_private;
2052         internals->kvlist = kvlist;
2053
2054         RTE_LOG(INFO, EAL, "Create bonded device %s on port %d in mode %u on "
2055                         "socket %u.\n", name, port_id, bonding_mode, socket_id);
2056         return 0;
2057
2058 parse_error:
2059         rte_kvargs_free(kvlist);
2060
2061         return -1;
2062 }
2063
2064 static int
2065 bond_uninit(const char *name)
2066 {
2067         int  ret;
2068
2069         if (name == NULL)
2070                 return -EINVAL;
2071
2072         RTE_LOG(INFO, EAL, "Uninitializing pmd_bond for %s\n", name);
2073
2074         /* free link bonding eth device */
2075         ret = rte_eth_bond_free(name);
2076         if (ret < 0)
2077                 RTE_LOG(ERR, EAL, "Failed to free %s\n", name);
2078
2079         return ret;
2080 }
2081
2082 /* this part will resolve the slave portids after all the other pdev and vdev
2083  * have been allocated */
2084 static int
2085 bond_ethdev_configure(struct rte_eth_dev *dev)
2086 {
2087         char *name = dev->data->name;
2088         struct bond_dev_private *internals = dev->data->dev_private;
2089         struct rte_kvargs *kvlist = internals->kvlist;
2090         int arg_count;
2091         uint8_t port_id = dev - rte_eth_devices;
2092
2093         /*
2094          * if no kvlist, it means that this bonded device has been created
2095          * through the bonding api.
2096          */
2097         if (!kvlist)
2098                 return 0;
2099
2100         /* Parse MAC address for bonded device */
2101         arg_count = rte_kvargs_count(kvlist, PMD_BOND_MAC_ADDR_KVARG);
2102         if (arg_count == 1) {
2103                 struct ether_addr bond_mac;
2104
2105                 if (rte_kvargs_process(kvlist, PMD_BOND_MAC_ADDR_KVARG,
2106                                 &bond_ethdev_parse_bond_mac_addr_kvarg, &bond_mac) < 0) {
2107                         RTE_LOG(INFO, EAL, "Invalid mac address for bonded device %s\n",
2108                                         name);
2109                         return -1;
2110                 }
2111
2112                 /* Set MAC address */
2113                 if (rte_eth_bond_mac_address_set(port_id, &bond_mac) != 0) {
2114                         RTE_LOG(ERR, EAL,
2115                                         "Failed to set mac address on bonded device %s\n",
2116                                         name);
2117                         return -1;
2118                 }
2119         } else if (arg_count > 1) {
2120                 RTE_LOG(ERR, EAL,
2121                                 "MAC address can be specified only once for bonded device %s\n",
2122                                 name);
2123                 return -1;
2124         }
2125
2126         /* Parse/set balance mode transmit policy */
2127         arg_count = rte_kvargs_count(kvlist, PMD_BOND_XMIT_POLICY_KVARG);
2128         if (arg_count == 1) {
2129                 uint8_t xmit_policy;
2130
2131                 if (rte_kvargs_process(kvlist, PMD_BOND_XMIT_POLICY_KVARG,
2132                                 &bond_ethdev_parse_balance_xmit_policy_kvarg, &xmit_policy) !=
2133                                                 0) {
2134                         RTE_LOG(INFO, EAL,
2135                                         "Invalid xmit policy specified for bonded device %s\n",
2136                                         name);
2137                         return -1;
2138                 }
2139
2140                 /* Set balance mode transmit policy*/
2141                 if (rte_eth_bond_xmit_policy_set(port_id, xmit_policy) != 0) {
2142                         RTE_LOG(ERR, EAL,
2143                                         "Failed to set balance xmit policy on bonded device %s\n",
2144                                         name);
2145                         return -1;
2146                 }
2147         } else if (arg_count > 1) {
2148                 RTE_LOG(ERR, EAL,
2149                                 "Transmit policy can be specified only once for bonded device"
2150                                 " %s\n", name);
2151                 return -1;
2152         }
2153
2154         /* Parse/add slave ports to bonded device */
2155         if (rte_kvargs_count(kvlist, PMD_BOND_SLAVE_PORT_KVARG) > 0) {
2156                 struct bond_ethdev_slave_ports slave_ports;
2157                 unsigned i;
2158
2159                 memset(&slave_ports, 0, sizeof(slave_ports));
2160
2161                 if (rte_kvargs_process(kvlist, PMD_BOND_SLAVE_PORT_KVARG,
2162                                 &bond_ethdev_parse_slave_port_kvarg, &slave_ports) != 0) {
2163                         RTE_LOG(ERR, EAL,
2164                                         "Failed to parse slave ports for bonded device %s\n",
2165                                         name);
2166                         return -1;
2167                 }
2168
2169                 for (i = 0; i < slave_ports.slave_count; i++) {
2170                         if (rte_eth_bond_slave_add(port_id, slave_ports.slaves[i]) != 0) {
2171                                 RTE_LOG(ERR, EAL,
2172                                                 "Failed to add port %d as slave to bonded device %s\n",
2173                                                 slave_ports.slaves[i], name);
2174                         }
2175                 }
2176
2177         } else {
2178                 RTE_LOG(INFO, EAL, "No slaves specified for bonded device %s\n", name);
2179                 return -1;
2180         }
2181
2182         /* Parse/set primary slave port id*/
2183         arg_count = rte_kvargs_count(kvlist, PMD_BOND_PRIMARY_SLAVE_KVARG);
2184         if (arg_count == 1) {
2185                 uint8_t primary_slave_port_id;
2186
2187                 if (rte_kvargs_process(kvlist,
2188                                 PMD_BOND_PRIMARY_SLAVE_KVARG,
2189                                 &bond_ethdev_parse_primary_slave_port_id_kvarg,
2190                                 &primary_slave_port_id) < 0) {
2191                         RTE_LOG(INFO, EAL,
2192                                         "Invalid primary slave port id specified for bonded device"
2193                                         " %s\n", name);
2194                         return -1;
2195                 }
2196
2197                 /* Set balance mode transmit policy*/
2198                 if (rte_eth_bond_primary_set(port_id, (uint8_t)primary_slave_port_id)
2199                                 != 0) {
2200                         RTE_LOG(ERR, EAL,
2201                                         "Failed to set primary slave port %d on bonded device %s\n",
2202                                         primary_slave_port_id, name);
2203                         return -1;
2204                 }
2205         } else if (arg_count > 1) {
2206                 RTE_LOG(INFO, EAL,
2207                                 "Primary slave can be specified only once for bonded device"
2208                                 " %s\n", name);
2209                 return -1;
2210         }
2211
2212         /* Parse link status monitor polling interval */
2213         arg_count = rte_kvargs_count(kvlist, PMD_BOND_LSC_POLL_PERIOD_KVARG);
2214         if (arg_count == 1) {
2215                 uint32_t lsc_poll_interval_ms;
2216
2217                 if (rte_kvargs_process(kvlist,
2218                                 PMD_BOND_LSC_POLL_PERIOD_KVARG,
2219                                 &bond_ethdev_parse_time_ms_kvarg,
2220                                 &lsc_poll_interval_ms) < 0) {
2221                         RTE_LOG(INFO, EAL,
2222                                         "Invalid lsc polling interval value specified for bonded"
2223                                         " device %s\n", name);
2224                         return -1;
2225                 }
2226
2227                 if (rte_eth_bond_link_monitoring_set(port_id, lsc_poll_interval_ms)
2228                                 != 0) {
2229                         RTE_LOG(ERR, EAL,
2230                                         "Failed to set lsc monitor polling interval (%u ms) on"
2231                                         " bonded device %s\n", lsc_poll_interval_ms, name);
2232                         return -1;
2233                 }
2234         } else if (arg_count > 1) {
2235                 RTE_LOG(INFO, EAL,
2236                                 "LSC polling interval can be specified only once for bonded"
2237                                 " device %s\n", name);
2238                 return -1;
2239         }
2240
2241         /* Parse link up interrupt propagation delay */
2242         arg_count = rte_kvargs_count(kvlist, PMD_BOND_LINK_UP_PROP_DELAY_KVARG);
2243         if (arg_count == 1) {
2244                 uint32_t link_up_delay_ms;
2245
2246                 if (rte_kvargs_process(kvlist,
2247                                 PMD_BOND_LINK_UP_PROP_DELAY_KVARG,
2248                                 &bond_ethdev_parse_time_ms_kvarg,
2249                                 &link_up_delay_ms) < 0) {
2250                         RTE_LOG(INFO, EAL,
2251                                         "Invalid link up propagation delay value specified for"
2252                                         " bonded device %s\n", name);
2253                         return -1;
2254                 }
2255
2256                 /* Set balance mode transmit policy*/
2257                 if (rte_eth_bond_link_up_prop_delay_set(port_id, link_up_delay_ms)
2258                                 != 0) {
2259                         RTE_LOG(ERR, EAL,
2260                                         "Failed to set link up propagation delay (%u ms) on bonded"
2261                                         " device %s\n", link_up_delay_ms, name);
2262                         return -1;
2263                 }
2264         } else if (arg_count > 1) {
2265                 RTE_LOG(INFO, EAL,
2266                                 "Link up propagation delay can be specified only once for"
2267                                 " bonded device %s\n", name);
2268                 return -1;
2269         }
2270
2271         /* Parse link down interrupt propagation delay */
2272         arg_count = rte_kvargs_count(kvlist, PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG);
2273         if (arg_count == 1) {
2274                 uint32_t link_down_delay_ms;
2275
2276                 if (rte_kvargs_process(kvlist,
2277                                 PMD_BOND_LINK_DOWN_PROP_DELAY_KVARG,
2278                                 &bond_ethdev_parse_time_ms_kvarg,
2279                                 &link_down_delay_ms) < 0) {
2280                         RTE_LOG(INFO, EAL,
2281                                         "Invalid link down propagation delay value specified for"
2282                                         " bonded device %s\n", name);
2283                         return -1;
2284                 }
2285
2286                 /* Set balance mode transmit policy*/
2287                 if (rte_eth_bond_link_down_prop_delay_set(port_id, link_down_delay_ms)
2288                                 != 0) {
2289                         RTE_LOG(ERR, EAL,
2290                                         "Failed to set link down propagation delay (%u ms) on"
2291                                         " bonded device %s\n", link_down_delay_ms, name);
2292                         return -1;
2293                 }
2294         } else if (arg_count > 1) {
2295                 RTE_LOG(INFO, EAL,
2296                                 "Link down propagation delay can be specified only once for"
2297                                 " bonded device %s\n", name);
2298                 return -1;
2299         }
2300
2301         return 0;
2302 }
2303
2304 static struct rte_driver bond_drv = {
2305         .name = "eth_bond",
2306         .type = PMD_VDEV,
2307         .init = bond_init,
2308         .uninit = bond_uninit,
2309 };
2310
2311 PMD_REGISTER_DRIVER(bond_drv);