mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-04 18:19:28 +09:00
net: mvpp2: fix interrupt mask/unmask skip condition
[ Upstream commit7867299cde] The condition should be skipped if CPU ID equal to nthreads. The patch doesn't fix any actual issue since nthreads = min_t(unsigned int, num_present_cpus(), MVPP2_MAX_THREADS). On all current Armada platforms, the number of CPU's is less than MVPP2_MAX_THREADS. Fixes:e531f76757("net: mvpp2: handle cases where more CPUs are available than s/w threads") Reported-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: Stefan Chulski <stefanc@marvell.com> Reviewed-by: Russell King <rmk+kernel@armlinux.org.uk> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
44c816c8b9
commit
8fe47a3394
@@ -1153,7 +1153,7 @@ static void mvpp2_interrupts_unmask(void *arg)
|
||||
u32 val;
|
||||
|
||||
/* If the thread isn't used, don't do anything */
|
||||
if (smp_processor_id() > port->priv->nthreads)
|
||||
if (smp_processor_id() >= port->priv->nthreads)
|
||||
return;
|
||||
|
||||
val = MVPP2_CAUSE_MISC_SUM_MASK |
|
||||
@@ -2287,7 +2287,7 @@ static void mvpp2_txq_sent_counter_clear(void *arg)
|
||||
int queue;
|
||||
|
||||
/* If the thread isn't used, don't do anything */
|
||||
if (smp_processor_id() > port->priv->nthreads)
|
||||
if (smp_processor_id() >= port->priv->nthreads)
|
||||
return;
|
||||
|
||||
for (queue = 0; queue < port->ntxqs; queue++) {
|
||||
|
||||
Reference in New Issue
Block a user