Skip to content

Commit

Permalink
Merge "DPDK: fix LACP address add function"
Browse files Browse the repository at this point in the history
  • Loading branch information
Zuul authored and opencontrail-ci-admin committed Jun 13, 2016
2 parents dbd5528 + b9a29e3 commit c1fd92b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dpdk/vr_dpdk_ethdev.c
Expand Up @@ -617,7 +617,7 @@ dpdk_ethdev_bond_info_update(struct vr_dpdk_ethdev *ethdev)

/* try to add bond mac and LACP multicast MACs */
if (rte_eth_dev_mac_addr_add(slave_port_id, &bond_mac, 0) == 0
&& rte_eth_dev_mac_addr_add(slave_port_id, &lacp_mac, 0) == 0) {
&& rte_eth_dev_set_mc_addr_list(slave_port_id, &lacp_mac, 1) == 0) {
/* disable the promisc mode enabled by default */
rte_eth_promiscuous_disable(ethdev->ethdev_port_id);
RTE_LOG(INFO, VROUTER, " bond member eth device %" PRIu8
Expand Down

0 comments on commit c1fd92b

Please sign in to comment.