Message ID | 20201006085811.mtizrfff6k5r3me7@linutronix.de |
---|---|
State | New |
Headers | show |
Series | [ANNOUNCE] v5.9-rc8-rt12 | expand |
Hi Sebastian, On 06.10.20 10:58, Sebastian Andrzej Siewior wrote: > Dear RT folks! > > I'm pleased to announce the v5.9-rc8-rt12 patch set. Just as heads up. I just tried to build for arm64 but PREEMPT_RT is not available anymore. Looks like ARCH_SUPPORTS_RT is only available for !KVM. Thanks, Daniel
On 2020-10-06 16:37:21 [+0200], Daniel Wagner wrote: > Hi Sebastian, Hi Daniel, > On 06.10.20 10:58, Sebastian Andrzej Siewior wrote: > > Dear RT folks! > > > > I'm pleased to announce the v5.9-rc8-rt12 patch set. > > Just as heads up. I just tried to build for arm64 but PREEMPT_RT > is not available anymore. Looks like ARCH_SUPPORTS_RT is only > available for !KVM. It has been announced in v5.9-rc2-rt1 https://lore.kernel.org/linux-rt-users/20200824154605.v66t2rsxobt3r5jg@linutronix.de/ and you replied to that mail. That mail contains information why and what needs to be done to remove that restriction. > Thanks, > Daniel Sebastian
Hi Sebastian, On 06.10.20 18:13, Sebastian Andrzej Siewior wrote: >> Just as heads up. I just tried to build for arm64 but PREEMPT_RT >> is not available anymore. Looks like ARCH_SUPPORTS_RT is only >> available for !KVM. > > It has been announced in v5.9-rc2-rt1 > https://lore.kernel.org/linux-rt-users/20200824154605.v66t2rsxobt3r5jg@linutronix.de/ > > and you replied to that mail. That mail contains information why and > what needs to be done to remove that restriction. D'oh, you have clearly a better memory than me. I forgot about it completely. Sorry for the noise. Thanks, Daniel
diff --git a/arch/powerpc/kexec/crash.c b/arch/powerpc/kexec/crash.c index c9a889880214e..d488311efab1f 100644 --- a/arch/powerpc/kexec/crash.c +++ b/arch/powerpc/kexec/crash.c @@ -311,9 +311,6 @@ void default_machine_crash_shutdown(struct pt_regs *regs) unsigned int i; int (*old_handler)(struct pt_regs *regs); - /* Avoid hardlocking with irresponsive CPU holding logbuf_lock */ - printk_nmi_enter(); - /* * This function is only called after the system * has panicked or is otherwise in a critical state. diff --git a/kernel/printk/printk.c b/kernel/printk/printk.c index 8b74ff17b2eef..ee7008c436ca1 100644 --- a/kernel/printk/printk.c +++ b/kernel/printk/printk.c @@ -1981,12 +1981,6 @@ asmlinkage int vprintk(const char *fmt, va_list args) } EXPORT_SYMBOL(vprintk); -int vprintk_default(const char *fmt, va_list args) -{ - return vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args); -} -EXPORT_SYMBOL_GPL(vprintk_default); - /** * printk - print a kernel message * @fmt: format string @@ -2784,7 +2778,7 @@ static int __init init_printk_kthread(void) } late_initcall(init_printk_kthread); -static int vprintk_deferred(const char *fmt, va_list args) +__printf(1, 0) static int vprintk_deferred(const char *fmt, va_list args) { return vprintk_emit(0, LOGLEVEL_DEFAULT, NULL, 0, fmt, args); } diff --git a/localversion-rt b/localversion-rt index 05c35cb580779..6e44e540b927b 100644 --- a/localversion-rt +++ b/localversion-rt @@ -1 +1 @@ --rt11 +-rt12