Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=fcbee6410d5c4112593e7082fb8d96dfdc6c1c25
Commit:     fcbee6410d5c4112593e7082fb8d96dfdc6c1c25
Parent:     e8b6d40a007774bde5110c110290f8090c7e48ad
Author:     Atsushi Nemoto <[EMAIL PROTECTED]>
AuthorDate: Fri May 11 01:02:34 2007 +0900
Committer:  Ralf Baechle <[EMAIL PROTECTED]>
CommitDate: Fri May 11 14:28:33 2007 +0100

    [MIPS] Run checksyscalls for N32 and O32 ABI
    
    On 64-bit MIPS, only N64 ABI is checked by default.  This patch adds
    some rules for other ABIs.  This results in these warnings at the
    moment:
    
      CALL-N32 /home/git/linux-mips/scripts/checksyscalls.sh
    <stdin>:148:2: warning: #warning syscall time not implemented
    <stdin>:424:2: warning: #warning syscall select not implemented
    <stdin>:440:2: warning: #warning syscall uselib not implemented
    <stdin>:856:2: warning: #warning syscall vfork not implemented
    <stdin>:868:2: warning: #warning syscall truncate64 not implemented
    <stdin>:872:2: warning: #warning syscall ftruncate64 not implemented
    <stdin>:876:2: warning: #warning syscall stat64 not implemented
    <stdin>:880:2: warning: #warning syscall lstat64 not implemented
    <stdin>:884:2: warning: #warning syscall fstat64 not implemented
    <stdin>:980:2: warning: #warning syscall getdents64 not implemented
    <stdin>:1176:2: warning: #warning syscall fadvise64_64 not implemented
    <stdin>:1284:2: warning: #warning syscall fstatat64 not implemented
    <stdin>:1364:2: warning: #warning syscall utimensat not implemented
      CALL-O32 /home/git/linux-mips/scripts/checksyscalls.sh
    <stdin>:424:2: warning: #warning syscall select not implemented
    <stdin>:856:2: warning: #warning syscall vfork not implemented
    <stdin>:1176:2: warning: #warning syscall fadvise64_64 not implemented
    <stdin>:1364:2: warning: #warning syscall utimensat not implemented
      CALL    /home/git/linux-mips/scripts/checksyscalls.sh
    <stdin>:148:2: warning: #warning syscall time not implemented
    <stdin>:424:2: warning: #warning syscall select not implemented
    <stdin>:440:2: warning: #warning syscall uselib not implemented
    <stdin>:856:2: warning: #warning syscall vfork not implemented
    <stdin>:980:2: warning: #warning syscall getdents64 not implemented
    <stdin>:1364:2: warning: #warning syscall utimensat not implemented
    
    Signed-off-by: Atsushi Nemoto <[EMAIL PROTECTED]>
    Signed-off-by: Ralf Baechle <[EMAIL PROTECTED]>
---
 arch/mips/Makefile |   22 ++++++++++++++++++++++
 1 files changed, 22 insertions(+), 0 deletions(-)

diff --git a/arch/mips/Makefile b/arch/mips/Makefile
index a68d462..f450066 100644
--- a/arch/mips/Makefile
+++ b/arch/mips/Makefile
@@ -709,3 +709,25 @@ archclean:
 CLEAN_FILES += vmlinux.32 \
               vmlinux.64 \
               vmlinux.ecoff
+
+quiet_cmd_syscalls_n32 = CALL-N32 $<
+      cmd_syscalls_n32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=n32
+
+quiet_cmd_syscalls_o32 = CALL-O32 $<
+      cmd_syscalls_o32 = $(CONFIG_SHELL) $< $(CC) $(c_flags) -mabi=32
+
+PHONY += missing-syscalls-n32 missing-syscalls-o32
+
+missing-syscalls-n32: scripts/checksyscalls.sh FORCE
+       $(call cmd,syscalls_n32)
+
+missing-syscalls-o32: scripts/checksyscalls.sh FORCE
+       $(call cmd,syscalls_o32)
+
+archprepare:
+ifdef CONFIG_MIPS32_N32
+       $(Q)$(MAKE) $(build)=arch/mips missing-syscalls-n32
+endif
+ifdef CONFIG_MIPS32_O32
+       $(Q)$(MAKE) $(build)=arch/mips missing-syscalls-o32
+endif
-
To unsubscribe from this list: send the line "unsubscribe git-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