Commit 55199df6 authored by Florian Fainelli's avatar Florian Fainelli Committed by David S. Miller

net: dsa: Allow switch drivers to indicate number of TX queues

Let switch drivers indicate how many TX queues they support. Some
switches, such as Broadcom Starfighter 2 are designed with 8 egress
queues. Future changes will allow us to leverage the queue mapping and
direct the transmission towards a particular queue.
Signed-off-by: default avatarFlorian Fainelli <f.fainelli@gmail.com>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f1c2eddf
...@@ -243,6 +243,9 @@ struct dsa_switch { ...@@ -243,6 +243,9 @@ struct dsa_switch {
/* devlink used to represent this switch device */ /* devlink used to represent this switch device */
struct devlink *devlink; struct devlink *devlink;
/* Number of switch port queues */
unsigned int num_tx_queues;
/* Dynamically allocated ports, keep last */ /* Dynamically allocated ports, keep last */
size_t num_ports; size_t num_ports;
struct dsa_port ports[]; struct dsa_port ports[];
......
...@@ -1259,8 +1259,12 @@ int dsa_slave_create(struct dsa_port *port, const char *name) ...@@ -1259,8 +1259,12 @@ int dsa_slave_create(struct dsa_port *port, const char *name)
cpu_dp = ds->dst->cpu_dp; cpu_dp = ds->dst->cpu_dp;
master = cpu_dp->netdev; master = cpu_dp->netdev;
slave_dev = alloc_netdev(sizeof(struct dsa_slave_priv), name, if (!ds->num_tx_queues)
NET_NAME_UNKNOWN, ether_setup); ds->num_tx_queues = 1;
slave_dev = alloc_netdev_mqs(sizeof(struct dsa_slave_priv), name,
NET_NAME_UNKNOWN, ether_setup,
ds->num_tx_queues, 1);
if (slave_dev == NULL) if (slave_dev == NULL)
return -ENOMEM; return -ENOMEM;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment