* [PATCH] x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS
@ 2020-03-24 14:35 Brian Gerst
2020-03-25 10:46 ` [tip: x86/entry] " tip-bot2 for Brian Gerst
0 siblings, 1 reply; 2+ messages in thread
From: Brian Gerst @ 2020-03-24 14:35 UTC (permalink / raw)
To: linux-kernel, x86
Cc: Thomas Gleixner, Ingo Molnar, Borislav Petkov, H . Peter Anvin,
Andy Lutomirski, Dominik Brodowski, Brian Gerst
Add missing semicolon.
Fixes: a74d187c2df3 ("x86/entry: Refactor SYS_NI macros")
Reported-By: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Brian Gerst <brgerst@gmail.com>
---
arch/x86/include/asm/syscall_wrapper.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/syscall_wrapper.h b/arch/x86/include/asm/syscall_wrapper.h
index e10efa1454bc..a84333adeef2 100644
--- a/arch/x86/include/asm/syscall_wrapper.h
+++ b/arch/x86/include/asm/syscall_wrapper.h
@@ -86,7 +86,7 @@ extern long __ia32_sys_ni_syscall(const struct pt_regs *regs);
}
#define __SYS_NI(abi, name) \
- SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers)
+ SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers);
#ifdef CONFIG_X86_64
#define __X64_SYS_STUB0(name) \
--
2.25.1
^ permalink raw reply [flat|nested] 2+ messages in thread
* [tip: x86/entry] x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS
2020-03-24 14:35 [PATCH] x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS Brian Gerst
@ 2020-03-25 10:46 ` tip-bot2 for Brian Gerst
0 siblings, 0 replies; 2+ messages in thread
From: tip-bot2 for Brian Gerst @ 2020-03-25 10:46 UTC (permalink / raw)
To: linux-tip-commits; +Cc: Ingo Molnar, Brian Gerst, Thomas Gleixner, x86, LKML
The following commit has been merged into the x86/entry branch of tip:
Commit-ID: 290a4474d019c7e49c186100e157fff5e273ab3b
Gitweb: https://git.kernel.org/tip/290a4474d019c7e49c186100e157fff5e273ab3b
Author: Brian Gerst <brgerst@gmail.com>
AuthorDate: Tue, 24 Mar 2020 10:35:20 -04:00
Committer: Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Wed, 25 Mar 2020 10:06:20 +01:00
x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS
Add missing semicolon.
Fixes: a74d187c2df3 ("x86/entry: Refactor SYS_NI macros")
Reported-by: Ingo Molnar <mingo@kernel.org>
Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lkml.kernel.org/r/20200324143520.898733-1-brgerst@gmail.com
---
arch/x86/include/asm/syscall_wrapper.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/arch/x86/include/asm/syscall_wrapper.h b/arch/x86/include/asm/syscall_wrapper.h
index e10efa1..a84333a 100644
--- a/arch/x86/include/asm/syscall_wrapper.h
+++ b/arch/x86/include/asm/syscall_wrapper.h
@@ -86,7 +86,7 @@ extern long __ia32_sys_ni_syscall(const struct pt_regs *regs);
}
#define __SYS_NI(abi, name) \
- SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers)
+ SYSCALL_ALIAS(__##abi##_##name, sys_ni_posix_timers);
#ifdef CONFIG_X86_64
#define __X64_SYS_STUB0(name) \
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2020-03-25 10:46 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-03-24 14:35 [PATCH] x86/entry: Fix build error x86 with !CONFIG_POSIX_TIMERS Brian Gerst
2020-03-25 10:46 ` [tip: x86/entry] " tip-bot2 for Brian Gerst
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