diff options
author | Sunil Goutham <sgoutham@cavium.com> | 2016-02-16 16:29:49 +0530 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2016-02-17 22:24:57 -0500 |
commit | 6a9bab79bb79bd9b2eda16f0aba1b4c43f677be9 (patch) | |
tree | b97be2b729d332a3909d6829884ec3bae70df92e | |
parent | 1eea84b74cd28773c37bf1bda69915f7b9a67efc (diff) |
net: thunderx: Fix for multiqset not configured upon interface toggle
When a interface is assigned morethan 8 queues and the logical interface
is toggled i.e down & up, additional queues or qsets are not initialized
as secondary qset count is being set to zero while tearing down.
Signed-off-by: Sunil Goutham <sgoutham@cavium.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
-rw-r--r-- | drivers/net/ethernet/cavium/thunder/nicvf_main.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/net/ethernet/cavium/thunder/nicvf_main.c b/drivers/net/ethernet/cavium/thunder/nicvf_main.c index c24cb2a86a42..f8012c4847d9 100644 --- a/drivers/net/ethernet/cavium/thunder/nicvf_main.c +++ b/drivers/net/ethernet/cavium/thunder/nicvf_main.c @@ -1125,7 +1125,6 @@ int nicvf_stop(struct net_device *netdev) /* Clear multiqset info */ nic->pnicvf = nic; - nic->sqs_count = 0; return 0; } |