ChangeSet 1.2026, 2005/03/08 09:24:08-08:00, [EMAIL PROTECTED]

        [PATCH] ppc64: revert 
implement-a-vdso-and-use-it-for-signal-trampoline-gas-workaround
        
        We don't actually need this.
        
        The reason why the ppc64 build exploded was that I had CC="gcc -m64", 
and even
        though the build system turns that into "gcc -m64 -m32", that is,
        surprisingly, equivalent to "gcc -m64".
        
        Cc: Benjamin Herrenschmidt <[EMAIL PROTECTED]>
        Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
        Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>



 datapage.S     |    2 +-
 gettimeofday.S |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)


diff -Nru a/arch/ppc64/kernel/vdso32/datapage.S 
b/arch/ppc64/kernel/vdso32/datapage.S
--- a/arch/ppc64/kernel/vdso32/datapage.S       2005-03-08 11:11:05 -08:00
+++ b/arch/ppc64/kernel/vdso32/datapage.S       2005-03-08 11:11:05 -08:00
@@ -56,7 +56,7 @@
   .cfi_register lr,r12
 
        mr      r4,r3
-       bl      __get_datapage
+       bl      [EMAIL PROTECTED]
        mtlr    r12
        addi    r3,r3,CFG_SYSCALL_MAP32
        cmpli   cr0,r4,0
diff -Nru a/arch/ppc64/kernel/vdso32/gettimeofday.S 
b/arch/ppc64/kernel/vdso32/gettimeofday.S
--- a/arch/ppc64/kernel/vdso32/gettimeofday.S   2005-03-08 11:11:05 -08:00
+++ b/arch/ppc64/kernel/vdso32/gettimeofday.S   2005-03-08 11:11:05 -08:00
@@ -30,9 +30,9 @@
 
        mr      r10,r3                  /* r10 saves tv */
        mr      r11,r4                  /* r11 saves tz */
-       bl      __get_datapage          /* get data page */
+       bl      [EMAIL PROTECTED]       /* get data page */
        mr      r9, r3                  /* datapage ptr in r9 */
-       bl      __do_get_xsec           /* get xsec from tb & kernel */
+       bl      [EMAIL PROTECTED]       /* get xsec from tb & kernel */
        bne-    2f                      /* out of line -> do syscall */
 
        /* seconds are xsec >> 20 */
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to