From e6509c6cbb484f4a1f36ca4a71fd9d33ee42af2d Mon Sep 17 00:00:00 2001 From: Radu Nicolau Date: Thu, 25 Jan 2018 16:26:26 +0000 Subject: [PATCH 1/1] examples/bond: fix vdev name Fixes: 73db5bad ("net: align ethdev and eal driver names") Cc: stable@dpdk.org Signed-off-by: Radu Nicolau Acked-by: Pablo de Lara --- examples/bond/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/bond/main.c b/examples/bond/main.c index 2cbf68fe09..b8efcafca3 100644 --- a/examples/bond/main.c +++ b/examples/bond/main.c @@ -212,7 +212,7 @@ bond_port_init(struct rte_mempool *mbuf_pool) struct rte_eth_txconf txq_conf; struct rte_eth_conf local_port_conf = port_conf; - retval = rte_eth_bond_create("bond0", BONDING_MODE_ALB, + retval = rte_eth_bond_create("net_bonding0", BONDING_MODE_ALB, 0 /*SOCKET_ID_ANY*/); if (retval < 0) rte_exit(EXIT_FAILURE, -- 2.20.1