From patchwork Thu Nov 30 16:42:06 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sebastian Andrzej Siewior X-Patchwork-Id: 748892 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="Z2qk16R5"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="oI/W4FTa" Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EA8C6D50; Thu, 30 Nov 2023 08:42:09 -0800 (PST) Date: Thu, 30 Nov 2023 17:42:06 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1701362527; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=S9xj0ZAADKx7hu7QbhqW7wDQCSHjf9qrcUMkO9n1IJI=; b=Z2qk16R5XhEOi87nU1gPUyUSwrCoMXB9G/DE3XTxfykFRS0/qBJr9D6cWrYRAdyYFTBVz7 HWYgKOnRpj+yzwtDfQUoCOBAdI1nBRIHNRXLjup5YHlT17by9aFT1RBLjTwZtg5f+YOTRz prQ7TiWQHZREWQISbQSlgLbgNcQWUlLkcJTZEFVWRYUWlimTJaBEIbRCgq5EiYGhN5TIvb 4Fzj6jFrYOJ/F2/pKaldFNpj3mMwN+jaAfbAePBgUAgYaC5YmgcZ3llj5z9El+GpolREvx HiXSrIrWTYM/qF4TINGHGZVkkhE+E3JvKbF5UWoSnwVJWW/+0cCUXtjye0I9Rw== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1701362527; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type; bh=S9xj0ZAADKx7hu7QbhqW7wDQCSHjf9qrcUMkO9n1IJI=; b=oI/W4FTas45tKWNnuWBVlFkS9IRdoBvVebb2alZO5ZeFsX2t39PI8Ivil+b8paxzpoPzM9 f+odN237NEkbd7Cg== From: Sebastian Andrzej Siewior To: Thomas Gleixner Cc: LKML , linux-rt-users@vger.kernel.org, Steven Rostedt Subject: [ANNOUNCE] v6.7-rc3-rt3 Message-ID: <20231130164206.veSGRRd_@linutronix.de> Precedence: bulk X-Mailing-List: linux-rt-users@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline Dear RT folks! I'm pleased to announce the v6.7-rc3-rt3 patch set. Changes since v6.7-rc3-rt2: - Since the printk rework in v6.6-rt13, the thread for the printing console fails to go idle if there is nothing to print. This has been resolved. Known issues Pierre Gondois reported crashes on ARM64 together with "rtla timerlat hist" as trigger. It is not yet understood. The report is at https://lore.kernel.org/70c08728-3d4f-47a6-8a3e-114e4877d120@arm.com The delta patch against v6.7-rc3-rt2 is appended below and can be found here: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.7/incr/patch-6.7-rc3-rt2-rt3.patch.xz You can get this release via the git tree at: https://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-rt-devel.git v6.7-rc3-rt3 The RT patch against v6.7-rc3 can be found here: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patch-6.7-rc3-rt3.patch.xz The split quilt queue is available at: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.7/older/patches-6.7-rc3-rt3.tar.xz Sebastian diff --git a/kernel/printk/nbcon.c b/kernel/printk/nbcon.c index a9be219673dbf..0bd5ee1b5b282 100644 --- a/kernel/printk/nbcon.c +++ b/kernel/printk/nbcon.c @@ -1032,13 +1032,6 @@ static bool nbcon_kthread_should_wakeup(struct console *con, struct nbcon_contex nbcon_state_read(con, &cur); - /* - * Some other CPU is using the console. Patiently poll - * to see if it becomes available. This is more efficient - * than having every release trigger an irq_work to wake - * the kthread. - */ - msleep(1); } while (cur.prio != NBCON_PRIO_NONE); /* Bring the sequence in @ctxt up to date */ diff --git a/localversion-rt b/localversion-rt index c3054d08a1129..1445cd65885cd 100644 --- a/localversion-rt +++ b/localversion-rt @@ -1 +1 @@ --rt2 +-rt3