net: mvneta: use proper rxq_number in loop on rx queues

commit ca5902a654 upstream.

When adding the RX queue association with each CPU, a typo was made in
the mvneta_cleanup_rxqs() function. This patch fixes it.

[gregory.clement@free-electrons.com: add commit log and fixes tag]
Fixes: 2dcf75e279 ("net: mvneta: Associate RX queues with each CPU")
Signed-off-by: Yelena Krivosheev <yelena@marvell.com>
Tested-by: Dmitri Epshtein <dima@marvell.com>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
Yelena Krivosheev
2017-12-19 17:59:46 +01:00
committed by Greg Kroah-Hartman
parent 405f3d7946
commit a57f99f484

View File

@ -2926,7 +2926,7 @@ static void mvneta_cleanup_rxqs(struct mvneta_port *pp)
{ {
int queue; int queue;
for (queue = 0; queue < txq_number; queue++) for (queue = 0; queue < rxq_number; queue++)
mvneta_rxq_deinit(pp, &pp->rxqs[queue]); mvneta_rxq_deinit(pp, &pp->rxqs[queue]);
} }