From: David Marchand <david.marchand@redhat.com>
To: dev@dpdk.org
Cc: Chas Williams <3chas3@gmail.com>, "Min Hu (Connor)" <humin29@huawei.com>
Subject: [PATCH 05/10] test/bonding: get MAC address with public API
Date: Fri, 17 Jul 2026 11:30:00 +0200 [thread overview]
Message-ID: <20260717093006.229370-6-david.marchand@redhat.com> (raw)
In-Reply-To: <20260717093006.229370-1-david.marchand@redhat.com>
Replace direct rte_eth_devices[].data->mac_addrs access with
rte_eth_macaddr_get() public API. This removes the dependency
on the internal ethdev_driver.h header.
Signed-off-by: David Marchand <david.marchand@redhat.com>
---
app/test/test_link_bonding.c | 35 +++++++++++++----------------------
1 file changed, 13 insertions(+), 22 deletions(-)
diff --git a/app/test/test_link_bonding.c b/app/test/test_link_bonding.c
index 19b064771a..b9c6718e36 100644
--- a/app/test/test_link_bonding.c
+++ b/app/test/test_link_bonding.c
@@ -19,7 +19,6 @@
#include <rte_common.h>
#include <rte_debug.h>
#include <rte_ethdev.h>
-#include <ethdev_driver.h>
#include <rte_log.h>
#include <rte_lcore.h>
#include <rte_memory.h>
@@ -4763,7 +4762,7 @@ test_alb_change_mac_in_reply_sent(void)
int retval = 0;
struct rte_ether_addr bond_mac, client_mac;
- struct rte_ether_addr *member_mac1, *member_mac2;
+ struct rte_ether_addr member_mac1, member_mac2;
TEST_ASSERT_SUCCESS(
initialize_bonding_device_with_members(BONDING_MODE_ALB,
@@ -4779,9 +4778,7 @@ test_alb_change_mac_in_reply_sent(void)
MAX_PKT_BURST);
}
- rte_ether_addr_copy(
- rte_eth_devices[test_params->bonding_port_id].data->mac_addrs,
- &bond_mac);
+ rte_eth_macaddr_get(test_params->bonding_port_id, &bond_mac);
/*
* Generating four packets with different mac and ip addresses and sending
@@ -4831,10 +4828,8 @@ test_alb_change_mac_in_reply_sent(void)
RTE_ARP_OP_REPLY);
rte_eth_tx_burst(test_params->bonding_port_id, 0, &pkt, 1);
- member_mac1 =
- rte_eth_devices[test_params->member_port_ids[0]].data->mac_addrs;
- member_mac2 =
- rte_eth_devices[test_params->member_port_ids[1]].data->mac_addrs;
+ rte_eth_macaddr_get(test_params->member_port_ids[0], &member_mac1);
+ rte_eth_macaddr_get(test_params->member_port_ids[1], &member_mac2);
/*
* Checking if packets are properly distributed on bonding ports. Packets
@@ -4852,13 +4847,13 @@ test_alb_change_mac_in_reply_sent(void)
sizeof(struct rte_ether_hdr));
if (member_idx%2 == 0) {
- if (!rte_is_same_ether_addr(member_mac1,
+ if (!rte_is_same_ether_addr(&member_mac1,
&arp_pkt->arp_data.arp_sha)) {
retval = -1;
goto test_end;
}
} else {
- if (!rte_is_same_ether_addr(member_mac2,
+ if (!rte_is_same_ether_addr(&member_mac2,
&arp_pkt->arp_data.arp_sha)) {
retval = -1;
goto test_end;
@@ -4885,7 +4880,7 @@ test_alb_reply_from_client(void)
int retval = 0;
struct rte_ether_addr bond_mac, client_mac;
- struct rte_ether_addr *member_mac1, *member_mac2;
+ struct rte_ether_addr member_mac1, member_mac2;
TEST_ASSERT_SUCCESS(
initialize_bonding_device_with_members(BONDING_MODE_ALB,
@@ -4900,9 +4895,7 @@ test_alb_reply_from_client(void)
MAX_PKT_BURST);
}
- rte_ether_addr_copy(
- rte_eth_devices[test_params->bonding_port_id].data->mac_addrs,
- &bond_mac);
+ rte_eth_macaddr_get(test_params->bonding_port_id, &bond_mac);
/*
* Generating four packets with different mac and ip addresses and placing
@@ -4963,8 +4956,8 @@ test_alb_reply_from_client(void)
rte_eth_rx_burst(test_params->bonding_port_id, 0, pkts_sent, MAX_PKT_BURST);
rte_eth_tx_burst(test_params->bonding_port_id, 0, NULL, 0);
- member_mac1 = rte_eth_devices[test_params->member_port_ids[0]].data->mac_addrs;
- member_mac2 = rte_eth_devices[test_params->member_port_ids[1]].data->mac_addrs;
+ rte_eth_macaddr_get(test_params->member_port_ids[0], &member_mac1);
+ rte_eth_macaddr_get(test_params->member_port_ids[1], &member_mac2);
/*
* Checking if update ARP packets were properly send on member ports.
@@ -4981,13 +4974,13 @@ test_alb_reply_from_client(void)
sizeof(struct rte_ether_hdr));
if (member_idx%2 == 0) {
- if (!rte_is_same_ether_addr(member_mac1,
+ if (!rte_is_same_ether_addr(&member_mac1,
&arp_pkt->arp_data.arp_sha)) {
retval = -1;
goto test_end;
}
} else {
- if (!rte_is_same_ether_addr(member_mac2,
+ if (!rte_is_same_ether_addr(&member_mac2,
&arp_pkt->arp_data.arp_sha)) {
retval = -1;
goto test_end;
@@ -5035,9 +5028,7 @@ test_alb_receive_vlan_reply(void)
MAX_PKT_BURST);
}
- rte_ether_addr_copy(
- rte_eth_devices[test_params->bonding_port_id].data->mac_addrs,
- &bond_mac);
+ rte_eth_macaddr_get(test_params->bonding_port_id, &bond_mac);
/*
* Generating packet with double VLAN header and placing it in the rx queue.
--
2.54.0
next prev parent reply other threads:[~2026-07-17 9:30 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-17 9:29 [PATCH 00/10] Limit usage of internal API in tests David Marchand
2026-07-17 9:29 ` [PATCH 01/10] bbdev: fix stats aggregation from queues David Marchand
2026-07-17 17:22 ` Chautru, Nicolas
2026-07-17 9:29 ` [PATCH 02/10] bbdev: add per-queue statistics API David Marchand
2026-07-17 9:29 ` [PATCH 03/10] hash: fix GFNI stubs export David Marchand
2026-07-17 9:38 ` Bruce Richardson
2026-07-17 9:55 ` Konstantin Ananyev
2026-07-17 9:29 ` [PATCH 04/10] test: uninline helper for forking David Marchand
2026-07-17 9:39 ` Bruce Richardson
2026-07-17 9:30 ` David Marchand [this message]
2026-07-17 9:30 ` [PATCH 06/10] test/devargs: check driver presence with public API David Marchand
2026-07-17 9:55 ` Bruce Richardson
2026-07-17 10:08 ` David Marchand
2026-07-17 10:14 ` Bruce Richardson
2026-07-17 12:34 ` David Marchand
2026-07-17 12:56 ` Thomas Monjalon
2026-07-17 9:30 ` [PATCH 07/10] test/vdev: find device " David Marchand
2026-07-17 9:30 ` [PATCH 08/10] test: limit internal API usage David Marchand
2026-07-17 9:30 ` [PATCH 09/10] ci: make ABI reference generation faster David Marchand
2026-07-17 9:30 ` [PATCH 10/10] ci: run reference unit tests against ABI David Marchand
2026-07-17 9:35 ` [PATCH 00/10] Limit usage of internal API in tests David Marchand
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20260717093006.229370-6-david.marchand@redhat.com \
--to=david.marchand@redhat.com \
--cc=3chas3@gmail.com \
--cc=dev@dpdk.org \
--cc=humin29@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox