sparc64: Zero pages on allocation for mondo and error queues.
authorLiam R. Howlett <Liam.Howlett@Oracle.com>
Wed, 24 May 2017 01:54:11 +0000 (21:54 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 5 Jul 2017 12:40:19 +0000 (14:40 +0200)
commit8886196a73204d167b7f8797eb6ebf61e76794d6
tree9223a78e2f9d0302e323414b130c090c28c08cf8
parent41172b772da4b9d875ed3fb90fe0e1a86742dc2a
sparc64: Zero pages on allocation for mondo and error queues.

[ Upstream commit 7a7dc961a28b965a0d0303c2e989df17b411708b ]

Error queues use a non-zero first word to detect if the queues are full.
Using pages that have not been zeroed may result in false positive
overflow events.  These queues are set up once during boot so zeroing
all mondo and error queue pages is safe.

Note that the false positive overflow does not always occur because the
page allocation for these queues is so early in the boot cycle that
higher number CPUs get fresh pages.  It is only when traps are serviced
with lower number CPUs who were given already used pages that this issue
is exposed.

Signed-off-by: Liam R. Howlett <Liam.Howlett@Oracle.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
arch/sparc/kernel/irq_64.c