diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-10 15:35:10 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2010-08-10 15:35:10 -0700 |
commit | 8cbd84f2dd4e52a8771b191030c374ba3e56d291 (patch) | |
tree | d85201ef4c1f6e38e33b3526fcb37cc6c9d3e5c5 /arch/x86/ia32 | |
parent | 20d7b2415c55aece840048e1e01348daa8f646b0 (diff) | |
download | blackbird-op-linux-8cbd84f2dd4e52a8771b191030c374ba3e56d291.tar.gz blackbird-op-linux-8cbd84f2dd4e52a8771b191030c374ba3e56d291.zip |
x86: fix up system call numbering nit
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>
Diffstat (limited to 'arch/x86/ia32')
-rw-r--r-- | arch/x86/ia32/ia32entry.S | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/ia32/ia32entry.S b/arch/x86/ia32/ia32entry.S index 91dc4bb13032..b86feabed69b 100644 --- a/arch/x86/ia32/ia32entry.S +++ b/arch/x86/ia32/ia32entry.S @@ -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: |