]> git.karo-electronics.de Git - karo-tx-linux.git/commit
nmi: fix clock comparator revalidation
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Thu, 25 Nov 2010 08:52:45 +0000 (09:52 +0100)
committerGreg Kroah-Hartman <gregkh@suse.de>
Thu, 9 Dec 2010 21:27:13 +0000 (13:27 -0800)
commit2418be1650bb2ffcf05085c796dcc37c087812d4
tree05170159a7a8cea6f47f4dc53c05c18ecc80ad9e
parentf342cb14f58813fe972a152b5034306a08c2de70
nmi: fix clock comparator revalidation

commit e8129c642155616d9e2160a75f103e127c8c3708 upstream.

On each machine check all registers are revalidated. The save area for
the clock comparator however only contains the upper most seven bytes
of the former contents, if valid.
Therefore the machine check handler uses a store clock instruction to
get the current time and writes that to the clock comparator register
which in turn will generate an immediate timer interrupt.
However within the lowcore the expected time of the next timer
interrupt is stored. If the interrupt happens before that time the
handler won't be called. In turn the clock comparator won't be
reprogrammed and therefore the interrupt condition stays pending which
causes an interrupt loop until the expected time is reached.

On NOHZ machines this can result in unresponsive machines since the
time of the next expected interrupted can be a couple of days in the
future.

To fix this just revalidate the clock comparator register with the
expected value.
In addition the special handling for udelay must be changed as well.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
arch/s390/kernel/nmi.c
arch/s390/lib/delay.c