]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
arch/tile: Fix a couple of issues with the COMPAT code for TILE-Gx.
authorChris Metcalf <cmetcalf@tilera.com>
Fri, 13 Aug 2010 12:32:21 +0000 (08:32 -0400)
committerChris Metcalf <cmetcalf@tilera.com>
Fri, 13 Aug 2010 12:32:21 +0000 (08:32 -0400)
First, the siginfo preamble wasn't quite right; we need to indicate
that we are padding up to 4 ints of preamble for 64-bit code, and
then for compat mode we need to pad differently, using only 3 ints.

Second, the C ABI requires a save area of two registers, not two
pointers, since in compat mode we have 64-bit registers all of which
we need to save, even though we only have 32-bit VAs.

Signed-off-by: Chris Metcalf <cmetcalf@tilera.com>
arch/tile/include/arch/abi.h
arch/tile/include/asm/siginfo.h
arch/tile/kernel/compat_signal.c

index da8df5b9d914a7936d261f63d4aa6cde97ffc628..8affc76f771a57af311215ff595b63132798a32b 100644 (file)
@@ -59,9 +59,7 @@
  * The ABI requires callers to allocate a caller state save area of
  * this many bytes at the bottom of each stack frame.
  */
-#ifdef __tile__
-#define C_ABI_SAVE_AREA_SIZE (2 * __SIZEOF_POINTER__)
-#endif
+#define C_ABI_SAVE_AREA_SIZE (2 * (CHIP_WORD_SIZE() / 8))
 
 /**
  * The operand to an 'info' opcode directing the backtracer to not
index 0c12d1b9ddf2d30772aad1644e630282bab6e2da..56d661bb010bc77d36a4e18cdc60799ff9c52744 100644 (file)
 
 #define __ARCH_SI_TRAPNO
 
+#ifdef __LP64__
+# define __ARCH_SI_PREAMBLE_SIZE       (4 * sizeof(int))
+#endif
+
 #include <asm-generic/siginfo.h>
 
 /*
index d5efb215dd5f3ad9b7a8f03d8f8f7d8bfc97d97c..9c710db43f1329c8b850f4a058e295df171c314e 100644 (file)
@@ -56,13 +56,15 @@ struct compat_ucontext {
        sigset_t          uc_sigmask;   /* mask last for extensibility */
 };
 
+#define COMPAT_SI_PAD_SIZE     ((SI_MAX_SIZE - 3 * sizeof(int)) / sizeof(int))
+
 struct compat_siginfo {
        int si_signo;
        int si_errno;
        int si_code;
 
        union {
-               int _pad[SI_PAD_SIZE];
+               int _pad[COMPAT_SI_PAD_SIZE];
 
                /* kill() */
                struct {