1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2017 Intel Corporation
8 #include <rte_malloc.h>
9 #include <rte_ethdev_driver.h>
11 #include <rte_bus_vdev.h>
12 #include <rte_kvargs.h>
14 #include "rte_eth_bond.h"
15 #include "eth_bond_private.h"
16 #include "eth_bond_8023ad_private.h"
19 check_for_bonded_ethdev(const struct rte_eth_dev *eth_dev)
21 /* Check valid pointer */
22 if (eth_dev == NULL ||
23 eth_dev->device == NULL ||
24 eth_dev->device->driver == NULL ||
25 eth_dev->device->driver->name == NULL)
28 /* return 0 if driver name matches */
29 return eth_dev->device->driver->name != pmd_bond_drv.driver.name;
33 valid_bonded_port_id(uint16_t port_id)
35 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
36 return check_for_bonded_ethdev(&rte_eth_devices[port_id]);
40 check_for_master_bonded_ethdev(const struct rte_eth_dev *eth_dev)
43 struct bond_dev_private *internals;
45 if (check_for_bonded_ethdev(eth_dev) != 0)
48 internals = eth_dev->data->dev_private;
50 /* Check if any of slave devices is a bonded device */
51 for (i = 0; i < internals->slave_count; i++)
52 if (valid_bonded_port_id(internals->slaves[i].port_id) == 0)
59 valid_slave_port_id(uint16_t port_id, uint8_t mode)
61 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
63 /* Verify that port_id refers to a non bonded port */
64 if (check_for_bonded_ethdev(&rte_eth_devices[port_id]) == 0 &&
65 mode == BONDING_MODE_8023AD) {
66 RTE_BOND_LOG(ERR, "Cannot add slave to bonded device in 802.3ad"
67 " mode as slave is also a bonded device, only "
68 "physical devices can be support in this mode.");
76 activate_slave(struct rte_eth_dev *eth_dev, uint16_t port_id)
78 struct bond_dev_private *internals = eth_dev->data->dev_private;
79 uint16_t active_count = internals->active_slave_count;
81 if (internals->mode == BONDING_MODE_8023AD)
82 bond_mode_8023ad_activate_slave(eth_dev, port_id);
84 if (internals->mode == BONDING_MODE_TLB
85 || internals->mode == BONDING_MODE_ALB) {
87 internals->tlb_slaves_order[active_count] = port_id;
90 RTE_ASSERT(internals->active_slave_count <
91 (RTE_DIM(internals->active_slaves) - 1));
93 internals->active_slaves[internals->active_slave_count] = port_id;
94 internals->active_slave_count++;
96 if (internals->mode == BONDING_MODE_TLB)
97 bond_tlb_activate_slave(internals);
98 if (internals->mode == BONDING_MODE_ALB)
99 bond_mode_alb_client_list_upd(eth_dev);
103 deactivate_slave(struct rte_eth_dev *eth_dev, uint16_t port_id)
106 struct bond_dev_private *internals = eth_dev->data->dev_private;
107 uint16_t active_count = internals->active_slave_count;
109 if (internals->mode == BONDING_MODE_8023AD) {
110 bond_mode_8023ad_stop(eth_dev);
111 bond_mode_8023ad_deactivate_slave(eth_dev, port_id);
112 } else if (internals->mode == BONDING_MODE_TLB
113 || internals->mode == BONDING_MODE_ALB)
114 bond_tlb_disable(internals);
116 slave_pos = find_slave_by_id(internals->active_slaves, active_count,
119 /* If slave was not at the end of the list
120 * shift active slaves up active array list */
121 if (slave_pos < active_count) {
123 memmove(internals->active_slaves + slave_pos,
124 internals->active_slaves + slave_pos + 1,
125 (active_count - slave_pos) *
126 sizeof(internals->active_slaves[0]));
129 RTE_ASSERT(active_count < RTE_DIM(internals->active_slaves));
130 internals->active_slave_count = active_count;
132 /* Resetting active_slave when reaches to max
133 * no of slaves in active list
135 if (internals->active_slave >= active_count)
136 internals->active_slave = 0;
138 if (eth_dev->data->dev_started) {
139 if (internals->mode == BONDING_MODE_8023AD) {
140 bond_mode_8023ad_start(eth_dev);
141 } else if (internals->mode == BONDING_MODE_TLB) {
142 bond_tlb_enable(internals);
143 } else if (internals->mode == BONDING_MODE_ALB) {
144 bond_tlb_enable(internals);
145 bond_mode_alb_client_list_upd(eth_dev);
151 rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
153 struct bond_dev_private *internals;
159 RTE_BOND_LOG(ERR, "Invalid name specified");
163 ret = snprintf(devargs, sizeof(devargs),
164 "driver=net_bonding,mode=%d,socket_id=%d", mode, socket_id);
165 if (ret < 0 || ret >= (int)sizeof(devargs))
168 ret = rte_vdev_init(name, devargs);
172 ret = rte_eth_dev_get_port_by_name(name, &port_id);
176 * To make bond_ethdev_configure() happy we need to free the
177 * internals->kvlist here.
179 * Also see comment in bond_ethdev_configure().
181 internals = rte_eth_devices[port_id].data->dev_private;
182 rte_kvargs_free(internals->kvlist);
183 internals->kvlist = NULL;
189 rte_eth_bond_free(const char *name)
191 return rte_vdev_uninit(name);
195 slave_vlan_filter_set(uint16_t bonded_port_id, uint16_t slave_port_id)
197 struct rte_eth_dev *bonded_eth_dev;
198 struct bond_dev_private *internals;
205 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
206 if ((bonded_eth_dev->data->dev_conf.rxmode.offloads &
207 DEV_RX_OFFLOAD_VLAN_FILTER) == 0)
210 internals = bonded_eth_dev->data->dev_private;
211 found = rte_bitmap_scan(internals->vlan_filter_bmp, &pos, &slab);
221 for (i = 0, mask = 1;
222 i < RTE_BITMAP_SLAB_BIT_SIZE;
224 if (unlikely(slab & mask)) {
225 uint16_t vlan_id = pos + i;
227 res = rte_eth_dev_vlan_filter(slave_port_id,
231 found = rte_bitmap_scan(internals->vlan_filter_bmp,
233 } while (found && first != pos && res == 0);
239 slave_rte_flow_prepare(uint16_t slave_id, struct bond_dev_private *internals)
241 struct rte_flow *flow;
242 struct rte_flow_error ferror;
243 uint16_t slave_port_id = internals->slaves[slave_id].port_id;
245 if (internals->flow_isolated_valid != 0) {
246 rte_eth_dev_stop(slave_port_id);
247 if (rte_flow_isolate(slave_port_id, internals->flow_isolated,
249 RTE_BOND_LOG(ERR, "rte_flow_isolate failed for slave"
250 " %d: %s", slave_id, ferror.message ?
251 ferror.message : "(no stated reason)");
255 TAILQ_FOREACH(flow, &internals->flow_list, next) {
256 flow->flows[slave_id] = rte_flow_create(slave_port_id,
261 if (flow->flows[slave_id] == NULL) {
262 RTE_BOND_LOG(ERR, "Cannot create flow for slave"
264 ferror.message ? ferror.message :
265 "(no stated reason)");
266 /* Destroy successful bond flows from the slave */
267 TAILQ_FOREACH(flow, &internals->flow_list, next) {
268 if (flow->flows[slave_id] != NULL) {
269 rte_flow_destroy(slave_port_id,
270 flow->flows[slave_id],
272 flow->flows[slave_id] = NULL;
282 eth_bond_slave_inherit_dev_info_rx_first(struct bond_dev_private *internals,
283 const struct rte_eth_dev_info *di)
285 struct rte_eth_rxconf *rxconf_i = &internals->default_rxconf;
287 internals->reta_size = di->reta_size;
289 /* Inherit Rx offload capabilities from the first slave device */
290 internals->rx_offload_capa = di->rx_offload_capa;
291 internals->rx_queue_offload_capa = di->rx_queue_offload_capa;
292 internals->flow_type_rss_offloads = di->flow_type_rss_offloads;
294 /* Inherit maximum Rx packet size from the first slave device */
295 internals->candidate_max_rx_pktlen = di->max_rx_pktlen;
297 /* Inherit default Rx queue settings from the first slave device */
298 memcpy(rxconf_i, &di->default_rxconf, sizeof(*rxconf_i));
301 * Turn off descriptor prefetch and writeback by default for all
302 * slave devices. Applications may tweak this setting if need be.
304 rxconf_i->rx_thresh.pthresh = 0;
305 rxconf_i->rx_thresh.hthresh = 0;
306 rxconf_i->rx_thresh.wthresh = 0;
308 /* Setting this to zero should effectively enable default values */
309 rxconf_i->rx_free_thresh = 0;
311 /* Disable deferred start by default for all slave devices */
312 rxconf_i->rx_deferred_start = 0;
316 eth_bond_slave_inherit_dev_info_tx_first(struct bond_dev_private *internals,
317 const struct rte_eth_dev_info *di)
319 struct rte_eth_txconf *txconf_i = &internals->default_txconf;
321 /* Inherit Tx offload capabilities from the first slave device */
322 internals->tx_offload_capa = di->tx_offload_capa;
323 internals->tx_queue_offload_capa = di->tx_queue_offload_capa;
325 /* Inherit default Tx queue settings from the first slave device */
326 memcpy(txconf_i, &di->default_txconf, sizeof(*txconf_i));
329 * Turn off descriptor prefetch and writeback by default for all
330 * slave devices. Applications may tweak this setting if need be.
332 txconf_i->tx_thresh.pthresh = 0;
333 txconf_i->tx_thresh.hthresh = 0;
334 txconf_i->tx_thresh.wthresh = 0;
337 * Setting these parameters to zero assumes that default
338 * values will be configured implicitly by slave devices.
340 txconf_i->tx_free_thresh = 0;
341 txconf_i->tx_rs_thresh = 0;
343 /* Disable deferred start by default for all slave devices */
344 txconf_i->tx_deferred_start = 0;
348 eth_bond_slave_inherit_dev_info_rx_next(struct bond_dev_private *internals,
349 const struct rte_eth_dev_info *di)
351 struct rte_eth_rxconf *rxconf_i = &internals->default_rxconf;
352 const struct rte_eth_rxconf *rxconf = &di->default_rxconf;
354 internals->rx_offload_capa &= di->rx_offload_capa;
355 internals->rx_queue_offload_capa &= di->rx_queue_offload_capa;
356 internals->flow_type_rss_offloads &= di->flow_type_rss_offloads;
359 * If at least one slave device suggests enabling this
360 * setting by default, enable it for all slave devices
361 * since disabling it may not be necessarily supported.
363 if (rxconf->rx_drop_en == 1)
364 rxconf_i->rx_drop_en = 1;
367 * Adding a new slave device may cause some of previously inherited
368 * offloads to be withdrawn from the internal rx_queue_offload_capa
369 * value. Thus, the new internal value of default Rx queue offloads
370 * has to be masked by rx_queue_offload_capa to make sure that only
371 * commonly supported offloads are preserved from both the previous
372 * value and the value being inhereted from the new slave device.
374 rxconf_i->offloads = (rxconf_i->offloads | rxconf->offloads) &
375 internals->rx_queue_offload_capa;
378 * RETA size is GCD of all slaves RETA sizes, so, if all sizes will be
379 * the power of 2, the lower one is GCD
381 if (internals->reta_size > di->reta_size)
382 internals->reta_size = di->reta_size;
384 if (!internals->max_rx_pktlen &&
385 di->max_rx_pktlen < internals->candidate_max_rx_pktlen)
386 internals->candidate_max_rx_pktlen = di->max_rx_pktlen;
390 eth_bond_slave_inherit_dev_info_tx_next(struct bond_dev_private *internals,
391 const struct rte_eth_dev_info *di)
393 struct rte_eth_txconf *txconf_i = &internals->default_txconf;
394 const struct rte_eth_txconf *txconf = &di->default_txconf;
396 internals->tx_offload_capa &= di->tx_offload_capa;
397 internals->tx_queue_offload_capa &= di->tx_queue_offload_capa;
400 * Adding a new slave device may cause some of previously inherited
401 * offloads to be withdrawn from the internal tx_queue_offload_capa
402 * value. Thus, the new internal value of default Tx queue offloads
403 * has to be masked by tx_queue_offload_capa to make sure that only
404 * commonly supported offloads are preserved from both the previous
405 * value and the value being inhereted from the new slave device.
407 txconf_i->offloads = (txconf_i->offloads | txconf->offloads) &
408 internals->tx_queue_offload_capa;
412 eth_bond_slave_inherit_desc_lim_first(struct rte_eth_desc_lim *bond_desc_lim,
413 const struct rte_eth_desc_lim *slave_desc_lim)
415 memcpy(bond_desc_lim, slave_desc_lim, sizeof(*bond_desc_lim));
419 eth_bond_slave_inherit_desc_lim_next(struct rte_eth_desc_lim *bond_desc_lim,
420 const struct rte_eth_desc_lim *slave_desc_lim)
422 bond_desc_lim->nb_max = RTE_MIN(bond_desc_lim->nb_max,
423 slave_desc_lim->nb_max);
424 bond_desc_lim->nb_min = RTE_MAX(bond_desc_lim->nb_min,
425 slave_desc_lim->nb_min);
426 bond_desc_lim->nb_align = RTE_MAX(bond_desc_lim->nb_align,
427 slave_desc_lim->nb_align);
429 if (bond_desc_lim->nb_min > bond_desc_lim->nb_max ||
430 bond_desc_lim->nb_align > bond_desc_lim->nb_max) {
431 RTE_BOND_LOG(ERR, "Failed to inherit descriptor limits");
435 /* Treat maximum number of segments equal to 0 as unspecified */
436 if (slave_desc_lim->nb_seg_max != 0 &&
437 (bond_desc_lim->nb_seg_max == 0 ||
438 slave_desc_lim->nb_seg_max < bond_desc_lim->nb_seg_max))
439 bond_desc_lim->nb_seg_max = slave_desc_lim->nb_seg_max;
440 if (slave_desc_lim->nb_mtu_seg_max != 0 &&
441 (bond_desc_lim->nb_mtu_seg_max == 0 ||
442 slave_desc_lim->nb_mtu_seg_max < bond_desc_lim->nb_mtu_seg_max))
443 bond_desc_lim->nb_mtu_seg_max = slave_desc_lim->nb_mtu_seg_max;
449 __eth_bond_slave_add_lock_free(uint16_t bonded_port_id, uint16_t slave_port_id)
451 struct rte_eth_dev *bonded_eth_dev, *slave_eth_dev;
452 struct bond_dev_private *internals;
453 struct rte_eth_link link_props;
454 struct rte_eth_dev_info dev_info;
457 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
458 internals = bonded_eth_dev->data->dev_private;
460 if (valid_slave_port_id(slave_port_id, internals->mode) != 0)
463 slave_eth_dev = &rte_eth_devices[slave_port_id];
464 if (slave_eth_dev->data->dev_flags & RTE_ETH_DEV_BONDED_SLAVE) {
465 RTE_BOND_LOG(ERR, "Slave device is already a slave of a bonded device");
469 ret = rte_eth_dev_info_get(slave_port_id, &dev_info);
472 "%s: Error during getting device (port %u) info: %s\n",
473 __func__, slave_port_id, strerror(-ret));
477 if (dev_info.max_rx_pktlen < internals->max_rx_pktlen) {
478 RTE_BOND_LOG(ERR, "Slave (port %u) max_rx_pktlen too small",
483 slave_add(internals, slave_eth_dev);
485 /* We need to store slaves reta_size to be able to synchronize RETA for all
486 * slave devices even if its sizes are different.
488 internals->slaves[internals->slave_count].reta_size = dev_info.reta_size;
490 if (internals->slave_count < 1) {
491 /* if MAC is not user defined then use MAC of first slave add to
493 if (!internals->user_defined_mac) {
494 if (mac_address_set(bonded_eth_dev,
495 slave_eth_dev->data->mac_addrs)) {
496 RTE_BOND_LOG(ERR, "Failed to set MAC address");
501 /* Make primary slave */
502 internals->primary_port = slave_port_id;
503 internals->current_primary_port = slave_port_id;
505 /* Inherit queues settings from first slave */
506 internals->nb_rx_queues = slave_eth_dev->data->nb_rx_queues;
507 internals->nb_tx_queues = slave_eth_dev->data->nb_tx_queues;
509 eth_bond_slave_inherit_dev_info_rx_first(internals, &dev_info);
510 eth_bond_slave_inherit_dev_info_tx_first(internals, &dev_info);
512 eth_bond_slave_inherit_desc_lim_first(&internals->rx_desc_lim,
513 &dev_info.rx_desc_lim);
514 eth_bond_slave_inherit_desc_lim_first(&internals->tx_desc_lim,
515 &dev_info.tx_desc_lim);
519 eth_bond_slave_inherit_dev_info_rx_next(internals, &dev_info);
520 eth_bond_slave_inherit_dev_info_tx_next(internals, &dev_info);
522 ret = eth_bond_slave_inherit_desc_lim_next(
523 &internals->rx_desc_lim, &dev_info.rx_desc_lim);
527 ret = eth_bond_slave_inherit_desc_lim_next(
528 &internals->tx_desc_lim, &dev_info.tx_desc_lim);
533 bonded_eth_dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf &=
534 internals->flow_type_rss_offloads;
536 if (slave_rte_flow_prepare(internals->slave_count, internals) != 0) {
537 RTE_BOND_LOG(ERR, "Failed to prepare new slave flows: port=%d",
542 /* Add additional MAC addresses to the slave */
543 if (slave_add_mac_addresses(bonded_eth_dev, slave_port_id) != 0) {
544 RTE_BOND_LOG(ERR, "Failed to add mac address(es) to slave %hu",
549 internals->slave_count++;
551 if (bonded_eth_dev->data->dev_started) {
552 if (slave_configure(bonded_eth_dev, slave_eth_dev) != 0) {
553 internals->slave_count--;
554 RTE_BOND_LOG(ERR, "rte_bond_slaves_configure: port=%d",
560 /* Update all slave devices MACs */
561 mac_address_slaves_update(bonded_eth_dev);
563 /* Register link status change callback with bonded device pointer as
565 rte_eth_dev_callback_register(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
566 bond_ethdev_lsc_event_callback, &bonded_eth_dev->data->port_id);
568 /* If bonded device is started then we can add the slave to our active
570 if (bonded_eth_dev->data->dev_started) {
571 ret = rte_eth_link_get_nowait(slave_port_id, &link_props);
573 rte_eth_dev_callback_unregister(slave_port_id,
574 RTE_ETH_EVENT_INTR_LSC,
575 bond_ethdev_lsc_event_callback,
576 &bonded_eth_dev->data->port_id);
577 internals->slave_count--;
579 "Slave (port %u) link get failed: %s\n",
580 slave_port_id, rte_strerror(-ret));
584 if (link_props.link_status == ETH_LINK_UP) {
585 if (internals->active_slave_count == 0 &&
586 !internals->user_defined_primary_port)
587 bond_ethdev_primary_set(internals,
592 /* Add slave details to bonded device */
593 slave_eth_dev->data->dev_flags |= RTE_ETH_DEV_BONDED_SLAVE;
595 slave_vlan_filter_set(bonded_port_id, slave_port_id);
602 rte_eth_bond_slave_add(uint16_t bonded_port_id, uint16_t slave_port_id)
604 struct rte_eth_dev *bonded_eth_dev;
605 struct bond_dev_private *internals;
609 /* Verify that port id's are valid bonded and slave ports */
610 if (valid_bonded_port_id(bonded_port_id) != 0)
613 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
614 internals = bonded_eth_dev->data->dev_private;
616 rte_spinlock_lock(&internals->lock);
618 retval = __eth_bond_slave_add_lock_free(bonded_port_id, slave_port_id);
620 rte_spinlock_unlock(&internals->lock);
626 __eth_bond_slave_remove_lock_free(uint16_t bonded_port_id,
627 uint16_t slave_port_id)
629 struct rte_eth_dev *bonded_eth_dev;
630 struct bond_dev_private *internals;
631 struct rte_eth_dev *slave_eth_dev;
632 struct rte_flow_error flow_error;
633 struct rte_flow *flow;
636 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
637 internals = bonded_eth_dev->data->dev_private;
639 if (valid_slave_port_id(slave_port_id, internals->mode) < 0)
642 /* first remove from active slave list */
643 slave_idx = find_slave_by_id(internals->active_slaves,
644 internals->active_slave_count, slave_port_id);
646 if (slave_idx < internals->active_slave_count)
647 deactivate_slave(bonded_eth_dev, slave_port_id);
650 /* now find in slave list */
651 for (i = 0; i < internals->slave_count; i++)
652 if (internals->slaves[i].port_id == slave_port_id) {
658 RTE_BOND_LOG(ERR, "Couldn't find slave in port list, slave count %d",
659 internals->slave_count);
663 /* Un-register link status change callback with bonded device pointer as
665 rte_eth_dev_callback_unregister(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
666 bond_ethdev_lsc_event_callback,
667 &rte_eth_devices[bonded_port_id].data->port_id);
669 /* Restore original MAC address of slave device */
670 rte_eth_dev_default_mac_addr_set(slave_port_id,
671 &(internals->slaves[slave_idx].persisted_mac_addr));
673 /* remove additional MAC addresses from the slave */
674 slave_remove_mac_addresses(bonded_eth_dev, slave_port_id);
677 * Remove bond device flows from slave device.
678 * Note: don't restore flow isolate mode.
680 TAILQ_FOREACH(flow, &internals->flow_list, next) {
681 if (flow->flows[slave_idx] != NULL) {
682 rte_flow_destroy(slave_port_id, flow->flows[slave_idx],
684 flow->flows[slave_idx] = NULL;
688 slave_eth_dev = &rte_eth_devices[slave_port_id];
689 slave_remove(internals, slave_eth_dev);
690 slave_eth_dev->data->dev_flags &= (~RTE_ETH_DEV_BONDED_SLAVE);
692 /* first slave in the active list will be the primary by default,
693 * otherwise use first device in list */
694 if (internals->current_primary_port == slave_port_id) {
695 if (internals->active_slave_count > 0)
696 internals->current_primary_port = internals->active_slaves[0];
697 else if (internals->slave_count > 0)
698 internals->current_primary_port = internals->slaves[0].port_id;
700 internals->primary_port = 0;
703 if (internals->active_slave_count < 1) {
704 /* if no slaves are any longer attached to bonded device and MAC is not
705 * user defined then clear MAC of bonded device as it will be reset
706 * when a new slave is added */
707 if (internals->slave_count < 1 && !internals->user_defined_mac)
708 memset(rte_eth_devices[bonded_port_id].data->mac_addrs, 0,
709 sizeof(*(rte_eth_devices[bonded_port_id].data->mac_addrs)));
711 if (internals->slave_count == 0) {
712 internals->rx_offload_capa = 0;
713 internals->tx_offload_capa = 0;
714 internals->rx_queue_offload_capa = 0;
715 internals->tx_queue_offload_capa = 0;
716 internals->flow_type_rss_offloads = ETH_RSS_PROTO_MASK;
717 internals->reta_size = 0;
718 internals->candidate_max_rx_pktlen = 0;
719 internals->max_rx_pktlen = 0;
725 rte_eth_bond_slave_remove(uint16_t bonded_port_id, uint16_t slave_port_id)
727 struct rte_eth_dev *bonded_eth_dev;
728 struct bond_dev_private *internals;
731 if (valid_bonded_port_id(bonded_port_id) != 0)
734 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
735 internals = bonded_eth_dev->data->dev_private;
737 rte_spinlock_lock(&internals->lock);
739 retval = __eth_bond_slave_remove_lock_free(bonded_port_id, slave_port_id);
741 rte_spinlock_unlock(&internals->lock);
747 rte_eth_bond_mode_set(uint16_t bonded_port_id, uint8_t mode)
749 struct rte_eth_dev *bonded_eth_dev;
751 if (valid_bonded_port_id(bonded_port_id) != 0)
754 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
756 if (check_for_master_bonded_ethdev(bonded_eth_dev) != 0 &&
757 mode == BONDING_MODE_8023AD)
760 return bond_ethdev_mode_set(bonded_eth_dev, mode);
764 rte_eth_bond_mode_get(uint16_t bonded_port_id)
766 struct bond_dev_private *internals;
768 if (valid_bonded_port_id(bonded_port_id) != 0)
771 internals = rte_eth_devices[bonded_port_id].data->dev_private;
773 return internals->mode;
777 rte_eth_bond_primary_set(uint16_t bonded_port_id, uint16_t slave_port_id)
779 struct bond_dev_private *internals;
781 if (valid_bonded_port_id(bonded_port_id) != 0)
784 internals = rte_eth_devices[bonded_port_id].data->dev_private;
786 if (valid_slave_port_id(slave_port_id, internals->mode) != 0)
789 internals->user_defined_primary_port = 1;
790 internals->primary_port = slave_port_id;
792 bond_ethdev_primary_set(internals, slave_port_id);
798 rte_eth_bond_primary_get(uint16_t bonded_port_id)
800 struct bond_dev_private *internals;
802 if (valid_bonded_port_id(bonded_port_id) != 0)
805 internals = rte_eth_devices[bonded_port_id].data->dev_private;
807 if (internals->slave_count < 1)
810 return internals->current_primary_port;
814 rte_eth_bond_slaves_get(uint16_t bonded_port_id, uint16_t slaves[],
817 struct bond_dev_private *internals;
820 if (valid_bonded_port_id(bonded_port_id) != 0)
826 internals = rte_eth_devices[bonded_port_id].data->dev_private;
828 if (internals->slave_count > len)
831 for (i = 0; i < internals->slave_count; i++)
832 slaves[i] = internals->slaves[i].port_id;
834 return internals->slave_count;
838 rte_eth_bond_active_slaves_get(uint16_t bonded_port_id, uint16_t slaves[],
841 struct bond_dev_private *internals;
843 if (valid_bonded_port_id(bonded_port_id) != 0)
849 internals = rte_eth_devices[bonded_port_id].data->dev_private;
851 if (internals->active_slave_count > len)
854 memcpy(slaves, internals->active_slaves,
855 internals->active_slave_count * sizeof(internals->active_slaves[0]));
857 return internals->active_slave_count;
861 rte_eth_bond_mac_address_set(uint16_t bonded_port_id,
862 struct rte_ether_addr *mac_addr)
864 struct rte_eth_dev *bonded_eth_dev;
865 struct bond_dev_private *internals;
867 if (valid_bonded_port_id(bonded_port_id) != 0)
870 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
871 internals = bonded_eth_dev->data->dev_private;
873 /* Set MAC Address of Bonded Device */
874 if (mac_address_set(bonded_eth_dev, mac_addr))
877 internals->user_defined_mac = 1;
879 /* Update all slave devices MACs*/
880 if (internals->slave_count > 0)
881 return mac_address_slaves_update(bonded_eth_dev);
887 rte_eth_bond_mac_address_reset(uint16_t bonded_port_id)
889 struct rte_eth_dev *bonded_eth_dev;
890 struct bond_dev_private *internals;
892 if (valid_bonded_port_id(bonded_port_id) != 0)
895 bonded_eth_dev = &rte_eth_devices[bonded_port_id];
896 internals = bonded_eth_dev->data->dev_private;
898 internals->user_defined_mac = 0;
900 if (internals->slave_count > 0) {
902 /* Get the primary slave location based on the primary port
903 * number as, while slave_add(), we will keep the primary
904 * slave based on slave_count,but not based on the primary port.
906 for (slave_port = 0; slave_port < internals->slave_count;
908 if (internals->slaves[slave_port].port_id ==
909 internals->primary_port)
913 /* Set MAC Address of Bonded Device */
914 if (mac_address_set(bonded_eth_dev,
915 &internals->slaves[slave_port].persisted_mac_addr)
917 RTE_BOND_LOG(ERR, "Failed to set MAC address on bonded device");
920 /* Update all slave devices MAC addresses */
921 return mac_address_slaves_update(bonded_eth_dev);
923 /* No need to update anything as no slaves present */
928 rte_eth_bond_xmit_policy_set(uint16_t bonded_port_id, uint8_t policy)
930 struct bond_dev_private *internals;
932 if (valid_bonded_port_id(bonded_port_id) != 0)
935 internals = rte_eth_devices[bonded_port_id].data->dev_private;
938 case BALANCE_XMIT_POLICY_LAYER2:
939 internals->balance_xmit_policy = policy;
940 internals->burst_xmit_hash = burst_xmit_l2_hash;
942 case BALANCE_XMIT_POLICY_LAYER23:
943 internals->balance_xmit_policy = policy;
944 internals->burst_xmit_hash = burst_xmit_l23_hash;
946 case BALANCE_XMIT_POLICY_LAYER34:
947 internals->balance_xmit_policy = policy;
948 internals->burst_xmit_hash = burst_xmit_l34_hash;
958 rte_eth_bond_xmit_policy_get(uint16_t bonded_port_id)
960 struct bond_dev_private *internals;
962 if (valid_bonded_port_id(bonded_port_id) != 0)
965 internals = rte_eth_devices[bonded_port_id].data->dev_private;
967 return internals->balance_xmit_policy;
971 rte_eth_bond_link_monitoring_set(uint16_t bonded_port_id, uint32_t internal_ms)
973 struct bond_dev_private *internals;
975 if (valid_bonded_port_id(bonded_port_id) != 0)
978 internals = rte_eth_devices[bonded_port_id].data->dev_private;
979 internals->link_status_polling_interval_ms = internal_ms;
985 rte_eth_bond_link_monitoring_get(uint16_t bonded_port_id)
987 struct bond_dev_private *internals;
989 if (valid_bonded_port_id(bonded_port_id) != 0)
992 internals = rte_eth_devices[bonded_port_id].data->dev_private;
994 return internals->link_status_polling_interval_ms;
998 rte_eth_bond_link_down_prop_delay_set(uint16_t bonded_port_id,
1002 struct bond_dev_private *internals;
1004 if (valid_bonded_port_id(bonded_port_id) != 0)
1007 internals = rte_eth_devices[bonded_port_id].data->dev_private;
1008 internals->link_down_delay_ms = delay_ms;
1014 rte_eth_bond_link_down_prop_delay_get(uint16_t bonded_port_id)
1016 struct bond_dev_private *internals;
1018 if (valid_bonded_port_id(bonded_port_id) != 0)
1021 internals = rte_eth_devices[bonded_port_id].data->dev_private;
1023 return internals->link_down_delay_ms;
1027 rte_eth_bond_link_up_prop_delay_set(uint16_t bonded_port_id, uint32_t delay_ms)
1030 struct bond_dev_private *internals;
1032 if (valid_bonded_port_id(bonded_port_id) != 0)
1035 internals = rte_eth_devices[bonded_port_id].data->dev_private;
1036 internals->link_up_delay_ms = delay_ms;
1042 rte_eth_bond_link_up_prop_delay_get(uint16_t bonded_port_id)
1044 struct bond_dev_private *internals;
1046 if (valid_bonded_port_id(bonded_port_id) != 0)
1049 internals = rte_eth_devices[bonded_port_id].data->dev_private;
1051 return internals->link_up_delay_ms;