]> git.karo-electronics.de Git - karo-tx-linux.git/commit
genirq: generic chip: Use DIV_ROUND_UP to calculate numchips
authorAxel Lin <axel.lin@ingics.com>
Fri, 5 Jul 2013 09:13:12 +0000 (17:13 +0800)
committerThomas Gleixner <tglx@linutronix.de>
Fri, 5 Jul 2013 09:39:25 +0000 (11:39 +0200)
commit002fca5df168922103a2bb52748f9984e6de80b2
tree9742e650398d3f48d8cf2ebfe8868c14c778a44a
parent5b8aae489a07ac7d5a2cb897d6ca1fddb0c0043a
genirq: generic chip: Use DIV_ROUND_UP to calculate numchips

The number of interrupts in a domain may be not divisible by the
number of interrupts each chip handles. Integer division may truncate
the result, thus use DIV_ROUND_UP to count numchips.

Seems all users of irq_alloc_domain_generic_chips() in current code do
not have this issue. I just found the issue while reading the code.

Signed-off-by: Axel Lin <axel.lin@ingics.com>
Cc: Grant Likely <grant.likely@linaro.org>
Cc: Tony Lindgren <tony@atomide.com>
Cc: Arnd Bergmann <arnd@arndb.de>
Link: http://lkml.kernel.org/r/1373015592.18252.2.camel@phoenix
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
kernel/irq/generic-chip.c