From patchwork Sat Nov 11 00:59:42 2023 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Luis Claudio R. Goncalves" X-Patchwork-Id: 744383 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 5E8D21851 for ; Sat, 11 Nov 2023 00:59:50 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=redhat.com header.i=@redhat.com header.b="YC6E2x8s" Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.129.124]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 2FBC64496 for ; Fri, 10 Nov 2023 16:59:49 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1699664388; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:mime-version:mime-version:content-type:content-type; bh=OZqX4L0C5rtW9Z94fro7EVGdbdgTVYlzFcMIjE/e3rI=; b=YC6E2x8s1L9yiUIDck9nnBvVRkFn/elsyWXFuEktdwKSGHjCKu/WR8MHUFq8YsJMvU73Bk Cbeos4YzBbGWb/qgVOr89eGivaIC1Y+wPvknB+no0axI9lej/gxQ2p1XVuWWpfq7Q+EhDK SBml1Du/B/HHWhQaEMaHR//X6V5UF4s= Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-479-UJyp377lPqCAI_K--E2cUg-1; Fri, 10 Nov 2023 19:59:45 -0500 X-MC-Unique: UJyp377lPqCAI_K--E2cUg-1 Received: from smtp.corp.redhat.com (int-mx02.intmail.prod.int.rdu2.redhat.com [10.11.54.2]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id 8D6F929ABA2C; Sat, 11 Nov 2023 00:59:44 +0000 (UTC) Received: from localhost (unknown [10.22.9.16]) by smtp.corp.redhat.com (Postfix) with ESMTP id D0B5E40C6EB9; Sat, 11 Nov 2023 00:59:43 +0000 (UTC) Date: Fri, 10 Nov 2023 21:59:42 -0300 From: "Luis Claudio R. Goncalves" To: LKML , linux-rt-users , stable-rt , Steven Rostedt , Thomas Gleixner , Carsten Emde , Sebastian Andrzej Siewior , Daniel Wagner , Tom Zanussi , Clark Williams , Mark Gross , Pavel Machek , Jeff Brady , Luis Goncalves Subject: [ANNOUNCE] 5.10.199-rt97 Message-ID: <169966380957.83297.12867433063716152688@localhost.localdomain> Precedence: bulk X-Mailing-List: linux-rt-users@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Disposition: inline X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.2 Hello RT-list! I'm pleased to announce the 5.10.199-rt97 stable release. This release is an update to the new stable 5.10.199 version and no RT-specific changes were made, with the exception of a fix to a build failure due to upstream changes affecting only the PREEMPT_RT code. You can get this release via the git tree at: git://git.kernel.org/pub/scm/linux/kernel/git/rt/linux-stable-rt.git branch: v5.10-rt Head SHA1: 7f300821d150a083008d6a73224acfc7e3283b04 Or to build 5.10.199-rt97 directly, the following patches should be applied: https://www.kernel.org/pub/linux/kernel/v5.x/linux-5.10.tar.xz https://www.kernel.org/pub/linux/kernel/v5.x/patch-5.10.199.xz https://www.kernel.org/pub/linux/kernel/projects/rt/5.10/older/patch-5.10.199-rt97.patch.xz Signing key fingerprint: 9354 0649 9972 8D31 D464 D140 F394 A423 F8E6 7C26 All keys used for the above files and repositories can be found on the following git repository: git://git.kernel.org/pub/scm/docs/kernel/pgpkeys.git Enjoy! Luis RT Changes since v5.10.197-rt96: --- Luis Claudio R. Goncalves (3): net: replace raw_write_seqcount_t_begin by do_raw_write_seqcount_begin diff --git a/include/net/sch_generic.h b/include/net/sch_generic.h index 72be68652bb84..eee11a1c93216 100644 --- a/include/net/sch_generic.h +++ b/include/net/sch_generic.h @@ -195,7 +195,7 @@ static inline bool qdisc_run_begin(struct Qdisc *qdisc) * Variant of write_seqcount_t_begin() telling lockdep that a * trylock was attempted. */ - raw_write_seqcount_t_begin(s); + do_raw_write_seqcount_begin(s); seqcount_acquire(&s->dep_map, 0, 1, _RET_IP_); return true; }