From patchwork Fri Nov 3 15:04:16 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: 740895 Received: from lindbergh.monkeyblade.net (lindbergh.monkeyblade.net [23.128.96.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id C36931A585 for ; Fri, 3 Nov 2023 15:04:24 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="VEKbimh/"; dkim=permerror (0-bit key) header.d=linutronix.de header.i=@linutronix.de header.b="JoPZsWTA" Received: from galois.linutronix.de (Galois.linutronix.de [193.142.43.55]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 0F9A91B2; Fri, 3 Nov 2023 08:04:20 -0700 (PDT) Date: Fri, 3 Nov 2023 16:04:16 +0100 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020; t=1699023857; 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=zw3qdAaPAqZS90DNMKf7YEZVCL6zjF1E8Lua1o2VnB4=; b=VEKbimh/tSJMSsyHMfmFvBox5+ECnWsOWM9p/r7dTTImfhTu11KUE0ET3Ij9oit6B8Zrpn ydBabE/+QwbRpN8CWM1AH19/nxq6/VzF8YU8DSIYZUN5KLq0N2aUJft6b3eyR/nhU8ElA/ 5aF784S9ddvQ7xf3Ja4UWtWpRvV3/yo0GW4dIjkA8bsTlWXMPLPzPYHPI1+H7MNu8L1/9s 1DJLyJJGg7/FegppOIYVF2Go8cRptu1aN92xWLmM68X1QX9EhSkvYME2ztJ1jfZD9XkCf+ SjNIrcQ3Svb6szFXKEKkzFaYxcYQYgNRXoWDuafqQG+M5dUQZLigY4Ssums9aA== DKIM-Signature: v=1; a=ed25519-sha256; c=relaxed/relaxed; d=linutronix.de; s=2020e; t=1699023857; 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=zw3qdAaPAqZS90DNMKf7YEZVCL6zjF1E8Lua1o2VnB4=; b=JoPZsWTAQAJGoMBzJJgw7YwAiYbMIdR/C93IIpb9+4rYlPm7mKr+iBQEX1bD3xkSrZZMkn zMj1CnK2fQZ0o4BQ== From: Sebastian Andrzej Siewior To: Thomas Gleixner Cc: LKML , linux-rt-users@vger.kernel.org, Steven Rostedt Subject: [ANNOUNCE] v6.6-rt12 Message-ID: <20231103150416.n8dAWMix@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.6-rt12 patch set. Changes since v6.6-rt11: - Add an export back which was accidentally removed with PREEMPT_AUTO resulting in a compile failure of kcsan_test if compiled as a module. 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.6-rt11 is appended below and can be found here: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.6/incr/patch-6.6-rt11-rt12.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.6-rt12 The RT patch against v6.6 can be found here: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patch-6.6-rt12.patch.xz The split quilt queue is available at: https://cdn.kernel.org/pub/linux/kernel/projects/rt/6.6/older/patches-6.6-rt12.tar.xz Sebastian diff --git a/kernel/sched/core.c b/kernel/sched/core.c index 21b50e61d0014..0110026914efb 100644 --- a/kernel/sched/core.c +++ b/kernel/sched/core.c @@ -8930,6 +8930,7 @@ static void __init preempt_dynamic_init(void) WARN_ON_ONCE(preempt_dynamic_mode == preempt_dynamic_undefined); \ return preempt_dynamic_mode == preempt_dynamic_##mode; \ } \ + EXPORT_SYMBOL_GPL(preempt_model_##mode) PREEMPT_MODEL_ACCESSOR(none); PREEMPT_MODEL_ACCESSOR(voluntary); diff --git a/localversion-rt b/localversion-rt index 05c35cb580779..6e44e540b927b 100644 --- a/localversion-rt +++ b/localversion-rt @@ -1 +1 @@ --rt11 +-rt12