]> git.baikalelectronics.ru Git - kernel.git/commit
genirq/affinity: Fix node generation from cpumask
authorGuilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
Wed, 14 Dec 2016 18:01:12 +0000 (16:01 -0200)
committerThomas Gleixner <tglx@linutronix.de>
Thu, 15 Dec 2016 11:32:35 +0000 (12:32 +0100)
commit859d7df78523b29e38356e0203e1bfac3199437d
treed2847bdbe5c6ffab1dae47b7a117b411aae26f63
parentb552cac27983c4aeecf6497a1123d3f43b2a162d
genirq/affinity: Fix node generation from cpumask

Commit 0b5bdd901c4d ("genirq/affinity: Provide smarter irq spreading
infrastructure") introduced a better IRQ spreading mechanism, taking
account of the available NUMA nodes in the machine.

Problem is that the algorithm of retrieving the nodemask iterates
"linearly" based on the number of online nodes - some architectures
present non-linear node distribution among the nodemask, like PowerPC.
If this is the case, the algorithm lead to a wrong node count number
and therefore to a bad/incomplete IRQ affinity distribution.

For example, this problem were found in a machine with 128 CPUs and two
nodes, namely nodes 0 and 8 (instead of 0 and 1, if it was linearly
distributed). This led to a wrong affinity distribution which then led to
a bad mq allocation for nvme driver.

Finally, we take the opportunity to fix a comment regarding the affinity
distribution when we have _more_ nodes than vectors.

Fixes: 0b5bdd901c4d ("genirq/affinity: Provide smarter irq spreading infrastructure")
Reported-by: Gabriel Krisman Bertazi <gabriel@krisman.be>
Signed-off-by: Guilherme G. Piccoli <gpiccoli@linux.vnet.ibm.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Gabriel Krisman Bertazi <gabriel@krisman.be>
Reviewed-by: Gavin Shan <gwshan@linux.vnet.ibm.com>
Cc: linux-pci@vger.kernel.org
Cc: linuxppc-dev@lists.ozlabs.org
Cc: hch@lst.de
Link: http://lkml.kernel.org/r/1481738472-2671-1-git-send-email-gpiccoli@linux.vnet.ibm.com
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/affinity.c