Skip to content

Commit

Permalink
sh: syscall 300 should be __NR_fstatat64.
Browse files Browse the repository at this point in the history
syscall number 300 fails while testing with latest LTP
(ltp-full-20061121.tgz) on sh.

sys_fstatat64 is called on syscall 300 (see arch/sh/kernel/syscalls.S),
and __ARCH_WANT_STAT64 is defined in include/asm-sh/unistd.h, so
following patch seems correct.

Signed-off-by: SUGIOKA Toshinobu <sugioka@itonet.co.jp>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
  • Loading branch information
SUGIOKA Toshinobu authored and Paul Mundt committed Feb 13, 2007
1 parent 5c67cd0 commit 106dac1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/asm-sh/unistd.h
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@
#define __NR_mknodat 297
#define __NR_fchownat 298
#define __NR_futimesat 299
#define __NR_newfstatat 300
#define __NR_fstatat64 300
#define __NR_unlinkat 301
#define __NR_renameat 302
#define __NR_linkat 303
Expand Down

0 comments on commit 106dac1

Please sign in to comment.