s390: avoid extable collisions
authorHeiko Carstens <heiko.carstens@de.ibm.com>
Fri, 10 Jun 2016 07:57:05 +0000 (09:57 +0200)
committerMartin Schwidefsky <schwidefsky@de.ibm.com>
Mon, 13 Jun 2016 13:58:26 +0000 (15:58 +0200)
commit6c22c98637602f89beb40c43cfb3d764b71a54c6
treecaf9cf9f9487ac2e0e5bc9ffccd417f532bf98c9
parentee64baf4ea3b7affb7e325bb3d188515ec4bb66e
s390: avoid extable collisions

We have some inline assemblies where the extable entry points to a
label at the end of an inline assembly which is not followed by an
instruction.

On the other hand we have also inline assemblies where the extable
entry points to the first instruction of an inline assembly.

If a first type inline asm (extable point to empty label at the end)
would be directly followed by a second type inline asm (extable points
to first instruction) then we would have two different extable entries
that point to the same instruction but would have a different target
address.

This can lead to quite random behaviour, depending on sorting order.

I verified that we currently do not have such collisions within the
kernel. However to avoid such subtle bugs add a couple of nop
instructions to those inline assemblies which contain an extable that
points to an empty label.

Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
arch/s390/hypfs/hypfs_diag.c
arch/s390/hypfs/hypfs_vm.c
arch/s390/include/asm/diag.h
arch/s390/kernel/ipl.c
arch/s390/mm/fault.c