* [PATCH] x86: Fix typo in syscall table
@ 2012-03-21 21:50 Thierry Reding
2012-03-22 0:04 ` [tip:x86/urgent] x86-32: Fix typo for mq_getsetattr " tip-bot for Thierry Reding
2012-03-22 21:25 ` tip-bot for Thierry Reding
0 siblings, 2 replies; 3+ messages in thread
From: Thierry Reding @ 2012-03-21 21:50 UTC (permalink / raw)
To: linux-kernel; +Cc: Thomas Gleixner, Ingo Molnar, H. Peter Anvin, stable, x86
Syscall 282 was mistakenly named mq_getsetaddr instead of mq_getsetattr.
When building uClibc against the Linux kernel this would result in a
shared library that doesn't provide the mq_getattr() and mq_setattr()
functions.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: stable@vger.kernel.org
Cc: x86@kernel.org
---
arch/x86/syscalls/syscall_32.tbl | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/syscalls/syscall_32.tbl b/arch/x86/syscalls/syscall_32.tbl
index dfa4993..7a35a6e 100644
--- a/arch/x86/syscalls/syscall_32.tbl
+++ b/arch/x86/syscalls/syscall_32.tbl
@@ -288,7 +288,7 @@
279 i386 mq_timedsend sys_mq_timedsend compat_sys_mq_timedsend
280 i386 mq_timedreceive sys_mq_timedreceive compat_sys_mq_timedreceive
281 i386 mq_notify sys_mq_notify compat_sys_mq_notify
-282 i386 mq_getsetaddr sys_mq_getsetattr compat_sys_mq_getsetattr
+282 i386 mq_getsetattr sys_mq_getsetattr compat_sys_mq_getsetattr
283 i386 kexec_load sys_kexec_load compat_sys_kexec_load
284 i386 waitid sys_waitid compat_sys_waitid
# 285 sys_setaltroot
--
1.7.9.4
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:x86/urgent] x86-32: Fix typo for mq_getsetattr in syscall table
2012-03-21 21:50 [PATCH] x86: Fix typo in syscall table Thierry Reding
@ 2012-03-22 0:04 ` tip-bot for Thierry Reding
2012-03-22 21:25 ` tip-bot for Thierry Reding
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Thierry Reding @ 2012-03-22 0:04 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, tglx, thierry.reding
Commit-ID: be7d0457e2d4ae906e40141c931f88585c3e86b8
Gitweb: http://git.kernel.org/tip/be7d0457e2d4ae906e40141c931f88585c3e86b8
Author: Thierry Reding <thierry.reding@avionic-design.de>
AuthorDate: Wed, 21 Mar 2012 22:50:08 +0100
Committer: H. Peter Anvin <hpa@zytor.com>
CommitDate: Wed, 21 Mar 2012 16:51:33 -0700
x86-32: Fix typo for mq_getsetattr in syscall table
Syscall 282 was mistakenly named mq_getsetaddr instead of mq_getsetattr.
When building uClibc against the Linux kernel this would result in a
shared library that doesn't provide the mq_getattr() and mq_setattr()
functions.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Link: http://lkml.kernel.org/r/1332366608-2695-2-git-send-email-thierry.reding@avionic-design.de
Cc: <stable@vger.kernel.org> v3.3
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
---
arch/x86/syscalls/syscall_32.tbl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/syscalls/syscall_32.tbl b/arch/x86/syscalls/syscall_32.tbl
index ce98e28..e7e67cc 100644
--- a/arch/x86/syscalls/syscall_32.tbl
+++ b/arch/x86/syscalls/syscall_32.tbl
@@ -288,7 +288,7 @@
279 i386 mq_timedsend sys_mq_timedsend compat_sys_mq_timedsend
280 i386 mq_timedreceive sys_mq_timedreceive compat_sys_mq_timedreceive
281 i386 mq_notify sys_mq_notify compat_sys_mq_notify
-282 i386 mq_getsetaddr sys_mq_getsetattr compat_sys_mq_getsetattr
+282 i386 mq_getsetattr sys_mq_getsetattr compat_sys_mq_getsetattr
283 i386 kexec_load sys_kexec_load compat_sys_kexec_load
284 i386 waitid sys_waitid compat_sys_waitid
# 285 sys_setaltroot
^ permalink raw reply [flat|nested] 3+ messages in thread
* [tip:x86/urgent] x86-32: Fix typo for mq_getsetattr in syscall table
2012-03-21 21:50 [PATCH] x86: Fix typo in syscall table Thierry Reding
2012-03-22 0:04 ` [tip:x86/urgent] x86-32: Fix typo for mq_getsetattr " tip-bot for Thierry Reding
@ 2012-03-22 21:25 ` tip-bot for Thierry Reding
1 sibling, 0 replies; 3+ messages in thread
From: tip-bot for Thierry Reding @ 2012-03-22 21:25 UTC (permalink / raw)
To: linux-tip-commits; +Cc: linux-kernel, hpa, mingo, tglx, thierry.reding
Commit-ID: 13354dc412c36fe554f9904a92f1268c74af7e87
Gitweb: http://git.kernel.org/tip/13354dc412c36fe554f9904a92f1268c74af7e87
Author: Thierry Reding <thierry.reding@avionic-design.de>
AuthorDate: Wed, 21 Mar 2012 22:50:08 +0100
Committer: H. Peter Anvin <hpa@zytor.com>
CommitDate: Thu, 22 Mar 2012 12:42:41 -0700
x86-32: Fix typo for mq_getsetattr in syscall table
Syscall 282 was mistakenly named mq_getsetaddr instead of mq_getsetattr.
When building uClibc against the Linux kernel this would result in a
shared library that doesn't provide the mq_getattr() and mq_setattr()
functions.
Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de>
Link: http://lkml.kernel.org/r/1332366608-2695-2-git-send-email-thierry.reding@avionic-design.de
Cc: <stable@vger.kernel.org> v3.3
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
---
arch/x86/syscalls/syscall_32.tbl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/arch/x86/syscalls/syscall_32.tbl b/arch/x86/syscalls/syscall_32.tbl
index ce98e28..e7e67cc 100644
--- a/arch/x86/syscalls/syscall_32.tbl
+++ b/arch/x86/syscalls/syscall_32.tbl
@@ -288,7 +288,7 @@
279 i386 mq_timedsend sys_mq_timedsend compat_sys_mq_timedsend
280 i386 mq_timedreceive sys_mq_timedreceive compat_sys_mq_timedreceive
281 i386 mq_notify sys_mq_notify compat_sys_mq_notify
-282 i386 mq_getsetaddr sys_mq_getsetattr compat_sys_mq_getsetattr
+282 i386 mq_getsetattr sys_mq_getsetattr compat_sys_mq_getsetattr
283 i386 kexec_load sys_kexec_load compat_sys_kexec_load
284 i386 waitid sys_waitid compat_sys_waitid
# 285 sys_setaltroot
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2012-03-22 21:25 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-03-21 21:50 [PATCH] x86: Fix typo in syscall table Thierry Reding
2012-03-22 0:04 ` [tip:x86/urgent] x86-32: Fix typo for mq_getsetattr " tip-bot for Thierry Reding
2012-03-22 21:25 ` tip-bot for Thierry Reding
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
Powered by JetHome