DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] net/dpaa2: fix dpdmux default interface
@ 2022-03-29 20:26 Tianli Lai
  2022-03-29 13:30 ` Hemant Agrawal
  2022-03-29 22:01 ` [PATCH v2] " Tianli Lai
  0 siblings, 2 replies; 6+ messages in thread
From: Tianli Lai @ 2022-03-29 20:26 UTC (permalink / raw)
  To: dev; +Cc: Hemant Agrawal, Sachin Saxena

if dpdmux objects created by restool tools with
the argument "--default-if=<if-id-number>", this
function would change it to 1

Signed-off-by: Tianli Lai <laitianli@tom.com>
---
 drivers/net/dpaa2/dpaa2_mux.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/dpaa2/dpaa2_mux.c b/drivers/net/dpaa2/dpaa2_mux.c
index bd4596b891..e8689a7832 100644
--- a/drivers/net/dpaa2/dpaa2_mux.c
+++ b/drivers/net/dpaa2/dpaa2_mux.c
@@ -296,7 +296,7 @@ dpaa2_create_dpdmux_device(int vdev_fd __rte_unused,
 	}
 
 	ret = dpdmux_if_set_default(&dpdmux_dev->dpdmux, CMD_PRI_LOW,
-				    dpdmux_dev->token, 1);
+				    dpdmux_dev->token, attr.default_if);
 	if (ret) {
 		DPAA2_PMD_ERR("setting default interface failed in %s",
 			      __func__);
-- 
2.27.0


^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2022-04-07  8:34 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-29 20:26 [PATCH] net/dpaa2: fix dpdmux default interface Tianli Lai
2022-03-29 13:30 ` Hemant Agrawal
2022-03-29 13:45   ` Hemant Agrawal
2022-03-29 22:01 ` [PATCH v2] " Tianli Lai
2022-03-31 10:19   ` Hemant Agrawal
2022-04-07  8:33     ` Thomas Monjalon

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).