diff options
author | Heiko Carstens <heiko.carstens@de.ibm.com> | 2014-01-17 08:37:15 (GMT) |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-02-06 19:22:20 (GMT) |
commit | 121aef658bcfb1e8b273cabc8b55b274a1ac7a9c (patch) | |
tree | d90584d54cd9ca6a6afc7ae9692e51fc171c8376 /arch/s390/hypfs | |
parent | a25dda5b26eed2d9246f9dfb9e7459c935a28557 (diff) | |
download | linux-fsl-qoriq-121aef658bcfb1e8b273cabc8b55b274a1ac7a9c.tar.xz |
s390/bpf,jit: fix 32 bit divisions, use unsigned divide instructions
[ Upstream commit 3af57f78c38131b7a66e2b01e06fdacae01992a3 ]
The s390 bpf jit compiler emits the signed divide instructions "dr" and "d"
for unsigned divisions.
This can cause problems: the dividend will be zero extended to a 64 bit value
and the divisor is the 32 bit signed value as specified A or X accumulator,
even though A and X are supposed to be treated as unsigned values.
The divide instrunctions will generate an exception if the result cannot be
expressed with a 32 bit signed value.
This is the case if e.g. the dividend is 0xffffffff and the divisor either 1
or also 0xffffffff (signed: -1).
To avoid all these issues simply use unsigned divide instructions.
Signed-off-by: Heiko Carstens <heiko.carstens@de.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/s390/hypfs')
0 files changed, 0 insertions, 0 deletions