diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-04-25 20:41:27 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-04-25 20:41:27 +0100 |
commit | 928bd1b4709045355fad8bf858904884c0a1e87f (patch) | |
tree | 1875af1016e3057fd25fa7441877f8a0b97cffbe /arch/arm/vfp/vfpmodule.c | |
parent | c7fd84424f919740880d989cb0459c332da96013 (diff) | |
download | talos-obmc-linux-928bd1b4709045355fad8bf858904884c0a1e87f.tar.gz talos-obmc-linux-928bd1b4709045355fad8bf858904884c0a1e87f.zip |
[ARM] vfp: fix leak of VFP_NAN_FLAG into FPSCR
The VFP code can leak VFP_NAN_FLAG into the FPSCR. It doesn't correspond
to any real FPSCR bit (and overlaps one of the exception flags).
Bug report from Daniel Jacobowitz
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/vfp/vfpmodule.c')
-rw-r--r-- | arch/arm/vfp/vfpmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/vfp/vfpmodule.c b/arch/arm/vfp/vfpmodule.c index 22f3da4e0829..37ff8145b5b5 100644 --- a/arch/arm/vfp/vfpmodule.c +++ b/arch/arm/vfp/vfpmodule.c @@ -180,7 +180,7 @@ static u32 vfp_emulate_instruction(u32 inst, u32 fpscr, struct pt_regs *regs) * emulate it. */ } - return exceptions; + return exceptions & ~VFP_NAN_FLAG; } /* |