* [dpdk-dev] [PATCH] net/bonding: set MTU on slave configure
@ 2018-02-23 4:01 Chas Williams
2018-03-14 12:11 ` Radu Nicolau
0 siblings, 1 reply; 3+ messages in thread
From: Chas Williams @ 2018-02-23 4:01 UTC (permalink / raw)
To: dev; +Cc: declan.doherty, Chas Williams
From: Chas Williams <chas3@att.com>
When a slave is configured make sure that the slave's MTU
matches the bonding's idea of the MTU.
Signed-off-by: Chas Williams <chas3@att.com>
---
drivers/net/bonding/rte_eth_bond_pmd.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/net/bonding/rte_eth_bond_pmd.c b/drivers/net/bonding/rte_eth_bond_pmd.c
index c34c3251f..b59ba9f7c 100644
--- a/drivers/net/bonding/rte_eth_bond_pmd.c
+++ b/drivers/net/bonding/rte_eth_bond_pmd.c
@@ -1831,6 +1831,14 @@ slave_configure(struct rte_eth_dev *bonded_eth_dev,
}
}
+ errval = rte_eth_dev_set_mtu(slave_eth_dev->data->port_id,
+ bonded_eth_dev->data->mtu);
+ if (errval != 0 && errval != -ENOTSUP) {
+ RTE_BOND_LOG(ERR, "rte_eth_dev_set_mtu: port %u, err (%d)",
+ slave_eth_dev->data->port_id, errval);
+ return errval;
+ }
+
/* Configure device */
errval = rte_eth_dev_configure(slave_eth_dev->data->port_id,
nb_rx_queues, nb_tx_queues,
--
2.13.6
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] net/bonding: set MTU on slave configure
2018-02-23 4:01 [dpdk-dev] [PATCH] net/bonding: set MTU on slave configure Chas Williams
@ 2018-03-14 12:11 ` Radu Nicolau
2018-03-16 13:43 ` Ferruh Yigit
0 siblings, 1 reply; 3+ messages in thread
From: Radu Nicolau @ 2018-03-14 12:11 UTC (permalink / raw)
To: Chas Williams, dev; +Cc: declan.doherty, Chas Williams
On 2/23/2018 4:01 AM, Chas Williams wrote:
> From: Chas Williams <chas3@att.com>
>
> When a slave is configured make sure that the slave's MTU
> matches the bonding's idea of the MTU.
>
> Signed-off-by: Chas Williams <chas3@att.com>
> ---
>
Acked-by: Radu Nicolau <radu.nicolau@intel.com>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [dpdk-dev] [PATCH] net/bonding: set MTU on slave configure
2018-03-14 12:11 ` Radu Nicolau
@ 2018-03-16 13:43 ` Ferruh Yigit
0 siblings, 0 replies; 3+ messages in thread
From: Ferruh Yigit @ 2018-03-16 13:43 UTC (permalink / raw)
To: Radu Nicolau, Chas Williams, dev; +Cc: declan.doherty, Chas Williams
On 3/14/2018 12:11 PM, Radu Nicolau wrote:
>
> On 2/23/2018 4:01 AM, Chas Williams wrote:
>> From: Chas Williams <chas3@att.com>
>>
>> When a slave is configured make sure that the slave's MTU
>> matches the bonding's idea of the MTU.
>>
>> Signed-off-by: Chas Williams <chas3@att.com>
>> ---
>>
> Acked-by: Radu Nicolau <radu.nicolau@intel.com>
Applied to dpdk-next-net/master, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2018-03-16 13:43 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-23 4:01 [dpdk-dev] [PATCH] net/bonding: set MTU on slave configure Chas Williams
2018-03-14 12:11 ` Radu Nicolau
2018-03-16 13:43 ` Ferruh Yigit
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).