Skip to content

Commit

Permalink
nfp: provide linking on port structures
Browse files Browse the repository at this point in the history
Add link to nfp_ports to make it possible to iterate over all ports.
This will come in handy when some ports may be representors.

Signed-off-by: Jakub Kicinski <jakub.kicinski@netronome.com>
Reviewed-by: Simon Horman <simon.horman@netronome.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
  • Loading branch information
Jakub Kicinski authored and David S. Miller committed May 22, 2017
1 parent 6d4f8cb commit 3eb3b74
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 9 deletions.
1 change: 1 addition & 0 deletions drivers/net/ethernet/netronome/nfp/nfp_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -341,6 +341,7 @@ static int nfp_pci_probe(struct pci_dev *pdev,
goto err_rel_regions;
}
INIT_LIST_HEAD(&pf->vnics);
INIT_LIST_HEAD(&pf->ports);
pci_set_drvdata(pdev, pf);
pf->pdev = pdev;

Expand Down
2 changes: 2 additions & 0 deletions drivers/net/ethernet/netronome/nfp/nfp_main.h
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ struct nfp_eth_table;
* @max_data_vnics: Number of data vNICs app firmware supports
* @num_vnics: Number of vNICs spawned
* @vnics: Linked list of vNIC structures (struct nfp_net)
* @ports: Linked list of port structures (struct nfp_port)
* @port_refresh_work: Work entry for taking netdevs out
* @lock: Protects all fields which may change after probe
*/
Expand Down Expand Up @@ -99,6 +100,7 @@ struct nfp_pf {
unsigned int num_vnics;

struct list_head vnics;
struct list_head ports;
struct work_struct port_refresh_work;
struct mutex lock;
};
Expand Down
15 changes: 6 additions & 9 deletions drivers/net/ethernet/netronome/nfp/nfp_net_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -548,6 +548,7 @@ static void nfp_net_refresh_vnics(struct work_struct *work)
port_refresh_work);
struct nfp_eth_table *eth_table;
struct nfp_net *nn, *next;
struct nfp_port *port;

mutex_lock(&pf->lock);

Expand All @@ -557,9 +558,8 @@ static void nfp_net_refresh_vnics(struct work_struct *work)

/* Update state of all ports */
rtnl_lock();
list_for_each_entry(nn, &pf->vnics, vnic_list)
if (nn->port)
clear_bit(NFP_PORT_CHANGED, &nn->port->flags);
list_for_each_entry(port, &pf->ports, port_list)
clear_bit(NFP_PORT_CHANGED, &port->flags);

eth_table = nfp_eth_read_ports(pf->cpp);
if (!eth_table) {
Expand All @@ -568,12 +568,9 @@ static void nfp_net_refresh_vnics(struct work_struct *work)
goto out;
}

list_for_each_entry(nn, &pf->vnics, vnic_list) {
if (!__nfp_port_get_eth_port(nn->port))
continue;

nfp_net_eth_port_update(pf->cpp, nn->port, eth_table);
}
list_for_each_entry(port, &pf->ports, port_list)
if (__nfp_port_get_eth_port(port))
nfp_net_eth_port_update(pf->cpp, port, eth_table);
rtnl_unlock();

kfree(eth_table);
Expand Down
5 changes: 5 additions & 0 deletions drivers/net/ethernet/netronome/nfp/nfp_port.c
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,15 @@ nfp_port_alloc(struct nfp_app *app, enum nfp_port_type type,
port->type = type;
port->app = app;

list_add_tail(&port->port_list, &app->pf->ports);

return port;
}

void nfp_port_free(struct nfp_port *port)
{
if (!port)
return;
list_del(&port->port_list);
kfree(port);
}
3 changes: 3 additions & 0 deletions drivers/net/ethernet/netronome/nfp/nfp_port.h
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ enum nfp_port_flags {
* @app: backpointer to the app structure
* @eth_id: for %NFP_PORT_PHYS_PORT port ID in NFP enumeration scheme
* @eth_port: for %NFP_PORT_PHYS_PORT translated ETH Table port entry
* @port_list: entry on pf's list of ports
*/
struct nfp_port {
struct net_device *netdev;
Expand All @@ -79,6 +80,8 @@ struct nfp_port {

unsigned int eth_id;
struct nfp_eth_table_port *eth_port;

struct list_head port_list;
};

struct nfp_port *nfp_port_from_netdev(struct net_device *netdev);
Expand Down

0 comments on commit 3eb3b74

Please sign in to comment.