[PATCH] powerpc64/linux: Fix 64-bit process detection on embedded
Dmitry V. Levin
ldv at altlinux.org
Thu Feb 20 00:15:34 UTC 2014
On Tue, Feb 18, 2014 at 03:32:43PM -0600, James Yang wrote:
> * syscall.c: Fix 64-bit process detection on embedded powerpc
>
> Signed-off-by: James Yang <james.yang at freescale.com>
> ---
> syscall.c | 5 +++--
> 1 files changed, 3 insertions(+), 2 deletions(-)
>
> diff --git a/syscall.c b/syscall.c
> index 3477dcd..8d47e7e 100644
> --- a/syscall.c
> +++ b/syscall.c
> @@ -1222,8 +1222,9 @@ get_scno(struct tcb *tcp)
> int currpers;
>
> /* Check for 64/32 bit mode. */
> - /* SF is bit 0 of MSR */
> - if ((ppc_regs.msr >> 63) & 1)
> + /* SF is bit 0 of MSR (a 64-bit register in Server) */
> + /* CM is bit 0 of MSR (a 32-bit register in Embedded) */
> + if (((ppc_regs.msr >> 63) & 1) || ((ppc_regs.msr >> 31) & 1))
> currpers = 0;
> else
> currpers = 1;
In case of 64-bit MSR, that would be a test for 32th bit.
I'm not quite familiar with ppc64, is there any risk for a false positive
in this case?
--
ldv
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 198 bytes
Desc: not available
URL: <http://lists.strace.io/pipermail/strace-devel/attachments/20140220/65268df4/attachment.bin>
More information about the Strace-devel
mailing list