Skip to content

Commit

Permalink
x86: fix up system call numbering nit
Browse files Browse the repository at this point in the history
As pointed out by Jiri Slaby: when I resolved the the 32-bit x85 system
call entry tables for prlimit (due to the conflict with fanotify), I
forgot to add the numbering in comments that we do for every fifth entry.

Reported-by: Jiri Slaby <jslaby@suse.cz>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
  • Loading branch information
torvalds committed Aug 10, 2010
1 parent 20d7b24 commit 8cbd84f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion arch/x86/ia32/ia32entry.S
Expand Up @@ -844,5 +844,5 @@ ia32_sys_call_table:
.quad compat_sys_recvmmsg
.quad sys_fanotify_init
.quad sys32_fanotify_mark
.quad sys_prlimit64
.quad sys_prlimit64 /* 340 */
ia32_syscall_end:
2 changes: 1 addition & 1 deletion arch/x86/kernel/syscall_table_32.S
Expand Up @@ -339,4 +339,4 @@ ENTRY(sys_call_table)
.long sys_recvmmsg
.long sys_fanotify_init
.long sys_fanotify_mark
.long sys_prlimit64
.long sys_prlimit64 /* 340 */

0 comments on commit 8cbd84f

Please sign in to comment.