de1d9e0dbb9f94e7643f6bfeaad926144d6621e1
[deb_dpdk.git] / drivers / net / bonding / rte_eth_bond_api.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2017 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
34 #include <string.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_vdev.h>
41 #include <rte_kvargs.h>
42
43 #include "rte_eth_bond.h"
44 #include "rte_eth_bond_private.h"
45 #include "rte_eth_bond_8023ad_private.h"
46
47 int
48 check_for_bonded_ethdev(const struct rte_eth_dev *eth_dev)
49 {
50         /* Check valid pointer */
51         if (eth_dev->device->driver->name == NULL)
52                 return -1;
53
54         /* return 0 if driver name matches */
55         return eth_dev->device->driver->name != pmd_bond_drv.driver.name;
56 }
57
58 int
59 valid_bonded_port_id(uint8_t port_id)
60 {
61         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
62         return check_for_bonded_ethdev(&rte_eth_devices[port_id]);
63 }
64
65 int
66 valid_slave_port_id(uint8_t port_id, uint8_t mode)
67 {
68         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
69
70         /* Verify that port_id refers to a non bonded port */
71         if (check_for_bonded_ethdev(&rte_eth_devices[port_id]) == 0 &&
72                         mode == BONDING_MODE_8023AD) {
73                 RTE_BOND_LOG(ERR, "Cannot add slave to bonded device in 802.3ad"
74                                 " mode as slave is also a bonded device, only "
75                                 "physical devices can be support in this mode.");
76                 return -1;
77         }
78
79         return 0;
80 }
81
82 void
83 activate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id)
84 {
85         struct bond_dev_private *internals = eth_dev->data->dev_private;
86         uint8_t active_count = internals->active_slave_count;
87
88         if (internals->mode == BONDING_MODE_8023AD)
89                 bond_mode_8023ad_activate_slave(eth_dev, port_id);
90
91         if (internals->mode == BONDING_MODE_TLB
92                         || internals->mode == BONDING_MODE_ALB) {
93
94                 internals->tlb_slaves_order[active_count] = port_id;
95         }
96
97         RTE_ASSERT(internals->active_slave_count <
98                         (RTE_DIM(internals->active_slaves) - 1));
99
100         internals->active_slaves[internals->active_slave_count] = port_id;
101         internals->active_slave_count++;
102
103         if (internals->mode == BONDING_MODE_TLB)
104                 bond_tlb_activate_slave(internals);
105         if (internals->mode == BONDING_MODE_ALB)
106                 bond_mode_alb_client_list_upd(eth_dev);
107 }
108
109 void
110 deactivate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id)
111 {
112         uint8_t slave_pos;
113         struct bond_dev_private *internals = eth_dev->data->dev_private;
114         uint8_t active_count = internals->active_slave_count;
115
116         if (internals->mode == BONDING_MODE_8023AD) {
117                 bond_mode_8023ad_stop(eth_dev);
118                 bond_mode_8023ad_deactivate_slave(eth_dev, port_id);
119         } else if (internals->mode == BONDING_MODE_TLB
120                         || internals->mode == BONDING_MODE_ALB)
121                 bond_tlb_disable(internals);
122
123         slave_pos = find_slave_by_id(internals->active_slaves, active_count,
124                         port_id);
125
126         /* If slave was not at the end of the list
127          * shift active slaves up active array list */
128         if (slave_pos < active_count) {
129                 active_count--;
130                 memmove(internals->active_slaves + slave_pos,
131                                 internals->active_slaves + slave_pos + 1,
132                                 (active_count - slave_pos) *
133                                         sizeof(internals->active_slaves[0]));
134         }
135
136         RTE_ASSERT(active_count < RTE_DIM(internals->active_slaves));
137         internals->active_slave_count = active_count;
138
139         if (eth_dev->data->dev_started) {
140                 if (internals->mode == BONDING_MODE_8023AD) {
141                         bond_mode_8023ad_start(eth_dev);
142                 } else if (internals->mode == BONDING_MODE_TLB) {
143                         bond_tlb_enable(internals);
144                 } else if (internals->mode == BONDING_MODE_ALB) {
145                         bond_tlb_enable(internals);
146                         bond_mode_alb_client_list_upd(eth_dev);
147                 }
148         }
149 }
150
151 int
152 rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
153 {
154         struct bond_dev_private *internals;
155         char devargs[52];
156         uint8_t port_id;
157         int ret;
158
159         if (name == NULL) {
160                 RTE_BOND_LOG(ERR, "Invalid name specified");
161                 return -EINVAL;
162         }
163
164         ret = snprintf(devargs, sizeof(devargs),
165                 "driver=net_bonding,mode=%d,socket_id=%d", mode, socket_id);
166         if (ret < 0 || ret >= (int)sizeof(devargs))
167                 return -ENOMEM;
168
169         ret = rte_vdev_init(name, devargs);
170         if (ret)
171                 return -ENOMEM;
172
173         ret = rte_eth_dev_get_port_by_name(name, &port_id);
174         RTE_ASSERT(!ret);
175
176         /*
177          * To make bond_ethdev_configure() happy we need to free the
178          * internals->kvlist here.
179          *
180          * Also see comment in bond_ethdev_configure().
181          */
182         internals = rte_eth_devices[port_id].data->dev_private;
183         rte_kvargs_free(internals->kvlist);
184         internals->kvlist = NULL;
185
186         return port_id;
187 }
188
189 int
190 rte_eth_bond_free(const char *name)
191 {
192         return rte_vdev_uninit(name);
193 }
194
195 static int
196 slave_vlan_filter_set(uint8_t bonded_port_id, uint8_t slave_port_id)
197 {
198         struct rte_eth_dev *bonded_eth_dev;
199         struct bond_dev_private *internals;
200         int found;
201         int res = 0;
202         uint64_t slab = 0;
203         uint32_t pos = 0;
204         uint16_t first;
205
206         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
207         if (bonded_eth_dev->data->dev_conf.rxmode.hw_vlan_filter == 0)
208                 return 0;
209
210         internals = bonded_eth_dev->data->dev_private;
211         found = rte_bitmap_scan(internals->vlan_filter_bmp, &pos, &slab);
212         first = pos;
213
214         if (!found)
215                 return 0;
216
217         do {
218                 uint32_t i;
219                 uint64_t mask;
220
221                 for (i = 0, mask = 1;
222                      i < RTE_BITMAP_SLAB_BIT_SIZE;
223                      i ++, mask <<= 1) {
224                         if (unlikely(slab & mask))
225                                 res = rte_eth_dev_vlan_filter(slave_port_id,
226                                                               (uint16_t)pos, 1);
227                 }
228                 found = rte_bitmap_scan(internals->vlan_filter_bmp,
229                                         &pos, &slab);
230         } while (found && first != pos && res == 0);
231
232         return res;
233 }
234
235 static int
236 __eth_bond_slave_add_lock_free(uint8_t bonded_port_id, uint8_t slave_port_id)
237 {
238         struct rte_eth_dev *bonded_eth_dev, *slave_eth_dev;
239         struct bond_dev_private *internals;
240         struct rte_eth_link link_props;
241         struct rte_eth_dev_info dev_info;
242
243         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
244         internals = bonded_eth_dev->data->dev_private;
245
246         if (valid_slave_port_id(slave_port_id, internals->mode) != 0)
247                 return -1;
248
249         slave_eth_dev = &rte_eth_devices[slave_port_id];
250         if (slave_eth_dev->data->dev_flags & RTE_ETH_DEV_BONDED_SLAVE) {
251                 RTE_BOND_LOG(ERR, "Slave device is already a slave of a bonded device");
252                 return -1;
253         }
254
255         /* Add slave details to bonded device */
256         slave_eth_dev->data->dev_flags |= RTE_ETH_DEV_BONDED_SLAVE;
257
258         rte_eth_dev_info_get(slave_port_id, &dev_info);
259         if (dev_info.max_rx_pktlen < internals->max_rx_pktlen) {
260                 RTE_BOND_LOG(ERR, "Slave (port %u) max_rx_pktlen too small",
261                              slave_port_id);
262                 return -1;
263         }
264
265         slave_add(internals, slave_eth_dev);
266
267         /* We need to store slaves reta_size to be able to synchronize RETA for all
268          * slave devices even if its sizes are different.
269          */
270         internals->slaves[internals->slave_count].reta_size = dev_info.reta_size;
271
272         if (internals->slave_count < 1) {
273                 /* if MAC is not user defined then use MAC of first slave add to
274                  * bonded device */
275                 if (!internals->user_defined_mac)
276                         mac_address_set(bonded_eth_dev, slave_eth_dev->data->mac_addrs);
277
278                 /* Inherit eth dev link properties from first slave */
279                 link_properties_set(bonded_eth_dev,
280                                 &(slave_eth_dev->data->dev_link));
281
282                 /* Make primary slave */
283                 internals->primary_port = slave_port_id;
284                 internals->current_primary_port = slave_port_id;
285
286                 /* Inherit queues settings from first slave */
287                 internals->nb_rx_queues = slave_eth_dev->data->nb_rx_queues;
288                 internals->nb_tx_queues = slave_eth_dev->data->nb_tx_queues;
289
290                 internals->reta_size = dev_info.reta_size;
291
292                 /* Take the first dev's offload capabilities */
293                 internals->rx_offload_capa = dev_info.rx_offload_capa;
294                 internals->tx_offload_capa = dev_info.tx_offload_capa;
295                 internals->flow_type_rss_offloads = dev_info.flow_type_rss_offloads;
296
297                 /* Inherit first slave's max rx packet size */
298                 internals->candidate_max_rx_pktlen = dev_info.max_rx_pktlen;
299
300         } else {
301                 internals->rx_offload_capa &= dev_info.rx_offload_capa;
302                 internals->tx_offload_capa &= dev_info.tx_offload_capa;
303                 internals->flow_type_rss_offloads &= dev_info.flow_type_rss_offloads;
304
305                 link_properties_valid(bonded_eth_dev,
306                                 &slave_eth_dev->data->dev_link);
307
308                 /* RETA size is GCD of all slaves RETA sizes, so, if all sizes will be
309                  * the power of 2, the lower one is GCD
310                  */
311                 if (internals->reta_size > dev_info.reta_size)
312                         internals->reta_size = dev_info.reta_size;
313
314                 if (!internals->max_rx_pktlen &&
315                     dev_info.max_rx_pktlen < internals->candidate_max_rx_pktlen)
316                         internals->candidate_max_rx_pktlen = dev_info.max_rx_pktlen;
317         }
318
319         bonded_eth_dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf &=
320                         internals->flow_type_rss_offloads;
321
322         internals->slave_count++;
323
324         /* Update all slave devices MACs*/
325         mac_address_slaves_update(bonded_eth_dev);
326
327         if (bonded_eth_dev->data->dev_started) {
328                 if (slave_configure(bonded_eth_dev, slave_eth_dev) != 0) {
329                         slave_eth_dev->data->dev_flags &= (~RTE_ETH_DEV_BONDED_SLAVE);
330                         RTE_BOND_LOG(ERR, "rte_bond_slaves_configure: port=%d",
331                                         slave_port_id);
332                         return -1;
333                 }
334         }
335
336         /* Register link status change callback with bonded device pointer as
337          * argument*/
338         rte_eth_dev_callback_register(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
339                         bond_ethdev_lsc_event_callback, &bonded_eth_dev->data->port_id);
340
341         /* If bonded device is started then we can add the slave to our active
342          * slave array */
343         if (bonded_eth_dev->data->dev_started) {
344                 rte_eth_link_get_nowait(slave_port_id, &link_props);
345
346                  if (link_props.link_status == ETH_LINK_UP) {
347                         if (internals->active_slave_count == 0 &&
348                             !internals->user_defined_primary_port)
349                                 bond_ethdev_primary_set(internals,
350                                                         slave_port_id);
351
352                         if (find_slave_by_id(internals->active_slaves,
353                                              internals->active_slave_count,
354                                              slave_port_id) == internals->active_slave_count)
355                                 activate_slave(bonded_eth_dev, slave_port_id);
356                 }
357         }
358
359         slave_vlan_filter_set(bonded_port_id, slave_port_id);
360
361         return 0;
362
363 }
364
365 int
366 rte_eth_bond_slave_add(uint8_t bonded_port_id, uint8_t slave_port_id)
367 {
368         struct rte_eth_dev *bonded_eth_dev;
369         struct bond_dev_private *internals;
370
371         int retval;
372
373         /* Verify that port id's are valid bonded and slave ports */
374         if (valid_bonded_port_id(bonded_port_id) != 0)
375                 return -1;
376
377         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
378         internals = bonded_eth_dev->data->dev_private;
379
380         rte_spinlock_lock(&internals->lock);
381
382         retval = __eth_bond_slave_add_lock_free(bonded_port_id, slave_port_id);
383
384         rte_spinlock_unlock(&internals->lock);
385
386         return retval;
387 }
388
389 static int
390 __eth_bond_slave_remove_lock_free(uint8_t bonded_port_id, uint8_t slave_port_id)
391 {
392         struct rte_eth_dev *bonded_eth_dev;
393         struct bond_dev_private *internals;
394         struct rte_eth_dev *slave_eth_dev;
395         int i, slave_idx;
396
397         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
398         internals = bonded_eth_dev->data->dev_private;
399
400         if (valid_slave_port_id(slave_port_id, internals->mode) < 0)
401                 return -1;
402
403         /* first remove from active slave list */
404         slave_idx = find_slave_by_id(internals->active_slaves,
405                 internals->active_slave_count, slave_port_id);
406
407         if (slave_idx < internals->active_slave_count)
408                 deactivate_slave(bonded_eth_dev, slave_port_id);
409
410         slave_idx = -1;
411         /* now find in slave list */
412         for (i = 0; i < internals->slave_count; i++)
413                 if (internals->slaves[i].port_id == slave_port_id) {
414                         slave_idx = i;
415                         break;
416                 }
417
418         if (slave_idx < 0) {
419                 RTE_BOND_LOG(ERR, "Couldn't find slave in port list, slave count %d",
420                                 internals->slave_count);
421                 return -1;
422         }
423
424         /* Un-register link status change callback with bonded device pointer as
425          * argument*/
426         rte_eth_dev_callback_unregister(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
427                         bond_ethdev_lsc_event_callback,
428                         &rte_eth_devices[bonded_port_id].data->port_id);
429
430         /* Restore original MAC address of slave device */
431         mac_address_set(&rte_eth_devices[slave_port_id],
432                         &(internals->slaves[slave_idx].persisted_mac_addr));
433
434         slave_eth_dev = &rte_eth_devices[slave_port_id];
435         slave_remove(internals, slave_eth_dev);
436         slave_eth_dev->data->dev_flags &= (~RTE_ETH_DEV_BONDED_SLAVE);
437
438         /*  first slave in the active list will be the primary by default,
439          *  otherwise use first device in list */
440         if (internals->current_primary_port == slave_port_id) {
441                 if (internals->active_slave_count > 0)
442                         internals->current_primary_port = internals->active_slaves[0];
443                 else if (internals->slave_count > 0)
444                         internals->current_primary_port = internals->slaves[0].port_id;
445                 else
446                         internals->primary_port = 0;
447         }
448
449         if (internals->active_slave_count < 1) {
450                 /* if no slaves are any longer attached to bonded device and MAC is not
451                  * user defined then clear MAC of bonded device as it will be reset
452                  * when a new slave is added */
453                 if (internals->slave_count < 1 && !internals->user_defined_mac)
454                         memset(rte_eth_devices[bonded_port_id].data->mac_addrs, 0,
455                                         sizeof(*(rte_eth_devices[bonded_port_id].data->mac_addrs)));
456         }
457         if (internals->slave_count == 0) {
458                 internals->rx_offload_capa = 0;
459                 internals->tx_offload_capa = 0;
460                 internals->flow_type_rss_offloads = ETH_RSS_PROTO_MASK;
461                 internals->reta_size = 0;
462                 internals->candidate_max_rx_pktlen = 0;
463                 internals->max_rx_pktlen = 0;
464         }
465         return 0;
466 }
467
468 int
469 rte_eth_bond_slave_remove(uint8_t bonded_port_id, uint8_t slave_port_id)
470 {
471         struct rte_eth_dev *bonded_eth_dev;
472         struct bond_dev_private *internals;
473         int retval;
474
475         if (valid_bonded_port_id(bonded_port_id) != 0)
476                 return -1;
477
478         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
479         internals = bonded_eth_dev->data->dev_private;
480
481         rte_spinlock_lock(&internals->lock);
482
483         retval = __eth_bond_slave_remove_lock_free(bonded_port_id, slave_port_id);
484
485         rte_spinlock_unlock(&internals->lock);
486
487         return retval;
488 }
489
490 int
491 rte_eth_bond_mode_set(uint8_t bonded_port_id, uint8_t mode)
492 {
493         if (valid_bonded_port_id(bonded_port_id) != 0)
494                 return -1;
495
496         return bond_ethdev_mode_set(&rte_eth_devices[bonded_port_id], mode);
497 }
498
499 int
500 rte_eth_bond_mode_get(uint8_t bonded_port_id)
501 {
502         struct bond_dev_private *internals;
503
504         if (valid_bonded_port_id(bonded_port_id) != 0)
505                 return -1;
506
507         internals = rte_eth_devices[bonded_port_id].data->dev_private;
508
509         return internals->mode;
510 }
511
512 int
513 rte_eth_bond_primary_set(uint8_t bonded_port_id, uint8_t slave_port_id)
514 {
515         struct bond_dev_private *internals;
516
517         if (valid_bonded_port_id(bonded_port_id) != 0)
518                 return -1;
519
520         internals = rte_eth_devices[bonded_port_id].data->dev_private;
521
522         if (valid_slave_port_id(slave_port_id, internals->mode) != 0)
523                 return -1;
524
525         internals->user_defined_primary_port = 1;
526         internals->primary_port = slave_port_id;
527
528         bond_ethdev_primary_set(internals, slave_port_id);
529
530         return 0;
531 }
532
533 int
534 rte_eth_bond_primary_get(uint8_t bonded_port_id)
535 {
536         struct bond_dev_private *internals;
537
538         if (valid_bonded_port_id(bonded_port_id) != 0)
539                 return -1;
540
541         internals = rte_eth_devices[bonded_port_id].data->dev_private;
542
543         if (internals->slave_count < 1)
544                 return -1;
545
546         return internals->current_primary_port;
547 }
548
549 int
550 rte_eth_bond_slaves_get(uint8_t bonded_port_id, uint8_t slaves[], uint8_t len)
551 {
552         struct bond_dev_private *internals;
553         uint8_t i;
554
555         if (valid_bonded_port_id(bonded_port_id) != 0)
556                 return -1;
557
558         if (slaves == NULL)
559                 return -1;
560
561         internals = rte_eth_devices[bonded_port_id].data->dev_private;
562
563         if (internals->slave_count > len)
564                 return -1;
565
566         for (i = 0; i < internals->slave_count; i++)
567                 slaves[i] = internals->slaves[i].port_id;
568
569         return internals->slave_count;
570 }
571
572 int
573 rte_eth_bond_active_slaves_get(uint8_t bonded_port_id, uint8_t slaves[],
574                 uint8_t len)
575 {
576         struct bond_dev_private *internals;
577
578         if (valid_bonded_port_id(bonded_port_id) != 0)
579                 return -1;
580
581         if (slaves == NULL)
582                 return -1;
583
584         internals = rte_eth_devices[bonded_port_id].data->dev_private;
585
586         if (internals->active_slave_count > len)
587                 return -1;
588
589         memcpy(slaves, internals->active_slaves, internals->active_slave_count);
590
591         return internals->active_slave_count;
592 }
593
594 int
595 rte_eth_bond_mac_address_set(uint8_t bonded_port_id,
596                 struct ether_addr *mac_addr)
597 {
598         struct rte_eth_dev *bonded_eth_dev;
599         struct bond_dev_private *internals;
600
601         if (valid_bonded_port_id(bonded_port_id) != 0)
602                 return -1;
603
604         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
605         internals = bonded_eth_dev->data->dev_private;
606
607         /* Set MAC Address of Bonded Device */
608         if (mac_address_set(bonded_eth_dev, mac_addr))
609                 return -1;
610
611         internals->user_defined_mac = 1;
612
613         /* Update all slave devices MACs*/
614         if (internals->slave_count > 0)
615                 return mac_address_slaves_update(bonded_eth_dev);
616
617         return 0;
618 }
619
620 int
621 rte_eth_bond_mac_address_reset(uint8_t bonded_port_id)
622 {
623         struct rte_eth_dev *bonded_eth_dev;
624         struct bond_dev_private *internals;
625
626         if (valid_bonded_port_id(bonded_port_id) != 0)
627                 return -1;
628
629         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
630         internals = bonded_eth_dev->data->dev_private;
631
632         internals->user_defined_mac = 0;
633
634         if (internals->slave_count > 0) {
635                 /* Set MAC Address of Bonded Device */
636                 if (mac_address_set(bonded_eth_dev,
637                                 &internals->slaves[internals->primary_port].persisted_mac_addr)
638                                 != 0) {
639                         RTE_BOND_LOG(ERR, "Failed to set MAC address on bonded device");
640                         return -1;
641                 }
642                 /* Update all slave devices MAC addresses */
643                 return mac_address_slaves_update(bonded_eth_dev);
644         }
645         /* No need to update anything as no slaves present */
646         return 0;
647 }
648
649 int
650 rte_eth_bond_xmit_policy_set(uint8_t bonded_port_id, uint8_t policy)
651 {
652         struct bond_dev_private *internals;
653
654         if (valid_bonded_port_id(bonded_port_id) != 0)
655                 return -1;
656
657         internals = rte_eth_devices[bonded_port_id].data->dev_private;
658
659         switch (policy) {
660         case BALANCE_XMIT_POLICY_LAYER2:
661                 internals->balance_xmit_policy = policy;
662                 internals->xmit_hash = xmit_l2_hash;
663                 break;
664         case BALANCE_XMIT_POLICY_LAYER23:
665                 internals->balance_xmit_policy = policy;
666                 internals->xmit_hash = xmit_l23_hash;
667                 break;
668         case BALANCE_XMIT_POLICY_LAYER34:
669                 internals->balance_xmit_policy = policy;
670                 internals->xmit_hash = xmit_l34_hash;
671                 break;
672
673         default:
674                 return -1;
675         }
676         return 0;
677 }
678
679 int
680 rte_eth_bond_xmit_policy_get(uint8_t bonded_port_id)
681 {
682         struct bond_dev_private *internals;
683
684         if (valid_bonded_port_id(bonded_port_id) != 0)
685                 return -1;
686
687         internals = rte_eth_devices[bonded_port_id].data->dev_private;
688
689         return internals->balance_xmit_policy;
690 }
691
692 int
693 rte_eth_bond_link_monitoring_set(uint8_t bonded_port_id, uint32_t internal_ms)
694 {
695         struct bond_dev_private *internals;
696
697         if (valid_bonded_port_id(bonded_port_id) != 0)
698                 return -1;
699
700         internals = rte_eth_devices[bonded_port_id].data->dev_private;
701         internals->link_status_polling_interval_ms = internal_ms;
702
703         return 0;
704 }
705
706 int
707 rte_eth_bond_link_monitoring_get(uint8_t bonded_port_id)
708 {
709         struct bond_dev_private *internals;
710
711         if (valid_bonded_port_id(bonded_port_id) != 0)
712                 return -1;
713
714         internals = rte_eth_devices[bonded_port_id].data->dev_private;
715
716         return internals->link_status_polling_interval_ms;
717 }
718
719 int
720 rte_eth_bond_link_down_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms)
721
722 {
723         struct bond_dev_private *internals;
724
725         if (valid_bonded_port_id(bonded_port_id) != 0)
726                 return -1;
727
728         internals = rte_eth_devices[bonded_port_id].data->dev_private;
729         internals->link_down_delay_ms = delay_ms;
730
731         return 0;
732 }
733
734 int
735 rte_eth_bond_link_down_prop_delay_get(uint8_t bonded_port_id)
736 {
737         struct bond_dev_private *internals;
738
739         if (valid_bonded_port_id(bonded_port_id) != 0)
740                 return -1;
741
742         internals = rte_eth_devices[bonded_port_id].data->dev_private;
743
744         return internals->link_down_delay_ms;
745 }
746
747 int
748 rte_eth_bond_link_up_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms)
749
750 {
751         struct bond_dev_private *internals;
752
753         if (valid_bonded_port_id(bonded_port_id) != 0)
754                 return -1;
755
756         internals = rte_eth_devices[bonded_port_id].data->dev_private;
757         internals->link_up_delay_ms = delay_ms;
758
759         return 0;
760 }
761
762 int
763 rte_eth_bond_link_up_prop_delay_get(uint8_t bonded_port_id)
764 {
765         struct bond_dev_private *internals;
766
767         if (valid_bonded_port_id(bonded_port_id) != 0)
768                 return -1;
769
770         internals = rte_eth_devices[bonded_port_id].data->dev_private;
771
772         return internals->link_up_delay_ms;
773 }