Re: [PATCH v6 15/21] net/ntnic: add link management skeleton

2024-07-11 Thread Ferruh Yigit
On 7/11/2024 1:07 PM, Serhii Iliushyk wrote: > @@ -383,6 +658,8 @@ nthw_pci_dev_init(struct rte_pci_device *pci_dev) > /* connect structs */ > internals->p_drv = p_drv; > eth_dev->data->dev_private = internals; > + eth_dev->data->mac_addrs = r

[PATCH v6 15/21] net/ntnic: add link management skeleton

2024-07-11 Thread Serhii Iliushyk
Add functionality to read and control the link-state of the ntnic. Note that must functions are not implemented yet. Adds the following eth_dev_ops: - dev_set_link_up - dev_set_link_down - link_update - mac_addr_add - mac_addr_set - set_mc_addr_list - promiscuous_enable Signed-off-by: Serhii Iliu