@@ -210,6 +210,7 @@ typedef struct pktio_if_ops {
int (*promisc_mode_set)(pktio_entry_t *pktio_entry, int enable);
int (*promisc_mode_get)(pktio_entry_t *pktio_entry);
int (*mac_get)(pktio_entry_t *pktio_entry, void *mac_addr);
+ int (*mac_set)(pktio_entry_t *pktio_entry, const void *mac_addr);
int (*link_status)(pktio_entry_t *pktio_entry);
int (*capability)(pktio_entry_t *pktio_entry,
odp_pktio_capability_t *capa);
@@ -895,6 +895,42 @@ int odp_pktio_mac_addr(odp_pktio_t hdl, void *mac_addr, int addr_size)
return ret;
}
+int odp_pktio_mac_addr_set(odp_pktio_t hdl, const void *mac_addr, int addr_size)
+{
+ pktio_entry_t *entry;
+ int ret = -1;
+
+ if (addr_size < ETH_ALEN) {
+ /* Input buffer too small */
+ return -1;
+ }
+
+ entry = get_pktio_entry(hdl);
+ if (entry == NULL) {
+ ODP_DBG("pktio entry %d does not exist\n", hdl);
+ return -1;
+ }
+
+ lock_entry(entry);
+
+ if (odp_unlikely(is_free(entry))) {
+ unlock_entry(entry);
+ ODP_DBG("already freed pktio\n");
+ return -1;
+ }
+
+ if (entry->s.state == PKTIO_STATE_STARTED) {
+ unlock_entry(entry);
+ return -1;
+ }
+
+ if (entry->s.ops->mac_set)
+ ret = entry->s.ops->mac_set(entry, mac_addr);
+
+ unlock_entry(entry);
+ return ret;
+}
+
int odp_pktio_link_status(odp_pktio_t hdl)
{
pktio_entry_t *entry;
@@ -1542,6 +1542,7 @@ const pktio_if_ops_t dpdk_pktio_ops = {
.promisc_mode_set = dpdk_promisc_mode_set,
.promisc_mode_get = dpdk_promisc_mode_get,
.mac_get = dpdk_mac_addr_get,
+ .mac_set = NULL,
.capability = dpdk_capability,
.pktin_ts_res = NULL,
.pktin_ts_from_ns = NULL,
@@ -790,6 +790,7 @@ const pktio_if_ops_t ipc_pktio_ops = {
.promisc_mode_set = NULL,
.promisc_mode_get = NULL,
.mac_get = ipc_mac_addr_get,
+ .mac_set = NULL,
.pktin_ts_res = NULL,
.pktin_ts_from_ns = NULL,
.config = NULL
@@ -265,6 +265,7 @@ const pktio_if_ops_t loopback_pktio_ops = {
.promisc_mode_set = loopback_promisc_mode_set,
.promisc_mode_get = loopback_promisc_mode_get,
.mac_get = loopback_mac_addr_get,
+ .mac_set = NULL,
.link_status = loopback_link_status,
.capability = loopback_capability,
.pktin_ts_res = NULL,
@@ -962,6 +962,7 @@ const pktio_if_ops_t netmap_pktio_ops = {
.promisc_mode_set = netmap_promisc_mode_set,
.promisc_mode_get = netmap_promisc_mode_get,
.mac_get = netmap_mac_addr_get,
+ .mac_set = NULL,
.capability = netmap_capability,
.pktin_ts_res = NULL,
.pktin_ts_from_ns = NULL,
@@ -440,6 +440,7 @@ const pktio_if_ops_t pcap_pktio_ops = {
.promisc_mode_set = pcapif_promisc_mode_set,
.promisc_mode_get = pcapif_promisc_mode_get,
.mac_get = pcapif_mac_addr_get,
+ .mac_set = NULL,
.capability = pcapif_capability,
.pktin_ts_res = NULL,
.pktin_ts_from_ns = NULL,
@@ -873,6 +873,7 @@ const pktio_if_ops_t sock_mmsg_pktio_ops = {
.promisc_mode_set = sock_promisc_mode_set,
.promisc_mode_get = sock_promisc_mode_get,
.mac_get = sock_mac_addr_get,
+ .mac_set = NULL,
.link_status = sock_link_status,
.capability = sock_capability,
.pktin_ts_res = NULL,
@@ -730,6 +730,7 @@ const pktio_if_ops_t sock_mmap_pktio_ops = {
.promisc_mode_set = sock_mmap_promisc_mode_set,
.promisc_mode_get = sock_mmap_promisc_mode_get,
.mac_get = sock_mmap_mac_addr_get,
+ .mac_set = NULL,
.link_status = sock_mmap_link_status,
.capability = sock_mmap_capability,
.pktin_ts_res = NULL,
@@ -391,6 +391,7 @@ const pktio_if_ops_t tap_pktio_ops = {
.promisc_mode_set = tap_promisc_mode_set,
.promisc_mode_get = tap_promisc_mode_get,
.mac_get = tap_mac_addr_get,
+ .mac_set = NULL,
.capability = tap_capability,
.pktin_ts_res = NULL,
.pktin_ts_from_ns = NULL,