From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 4CADF158020 for ; Tue, 1 Nov 2022 19:48:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 99724E094A; Tue, 1 Nov 2022 19:48:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 85321E094A for ; Tue, 1 Nov 2022 19:48:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A61BF340FD8 for ; Tue, 1 Nov 2022 19:48:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 427E355B for ; Tue, 1 Nov 2022 19:48:26 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1667332090.3b94aa7caf5c24407c43d7d510eae189a18f1bf8.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:4.19 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 1262_linux-4.19.263.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: 3b94aa7caf5c24407c43d7d510eae189a18f1bf8 X-VCS-Branch: 4.19 Date: Tue, 1 Nov 2022 19:48:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 6d1a16bb-d089-4720-99fc-d9dc6b441715 X-Archives-Hash: 71aa3aff87f383b51f7c9008e01ccf19 commit: 3b94aa7caf5c24407c43d7d510eae189a18f1bf8 Author: Mike Pagano gentoo org> AuthorDate: Tue Nov 1 19:48:10 2022 +0000 Commit: Mike Pagano gentoo org> CommitDate: Tue Nov 1 19:48:10 2022 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=3b94aa7c Linux patch 4.19.263 Signed-off-by: Mike Pagano gentoo.org> 0000_README | 4 ++++ 1262_linux-4.19.263.patch | 26 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/0000_README b/0000_README index 6baf37a1..b1528289 100644 --- a/0000_README +++ b/0000_README @@ -1091,6 +1091,10 @@ Patch: 1261_linux-4.19.262.patch From: https://www.kernel.org Desc: Linux 4.19.262 +Patch: 1262_linux-4.19.263.patch +From: https://www.kernel.org +Desc: Linux 4.19.263 + Patch: 1500_XATTR_USER_PREFIX.patch From: https://bugs.gentoo.org/show_bug.cgi?id=470644 Desc: Support for namespace user.pax.* on tmpfs. diff --git a/1262_linux-4.19.263.patch b/1262_linux-4.19.263.patch new file mode 100644 index 00000000..af6440db --- /dev/null +++ b/1262_linux-4.19.263.patch @@ -0,0 +1,26 @@ +diff --git a/Makefile b/Makefile +index 08c9d316e5c21..8a517dd456f4c 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 4 + PATCHLEVEL = 19 +-SUBLEVEL = 262 ++SUBLEVEL = 263 + EXTRAVERSION = + NAME = "People's Front" + +diff --git a/include/linux/once.h b/include/linux/once.h +index bb58e1c3aa034..3a6671d961b98 100644 +--- a/include/linux/once.h ++++ b/include/linux/once.h +@@ -64,7 +64,7 @@ void __do_once_slow_done(bool *done, struct static_key_true *once_key, + #define DO_ONCE_SLOW(func, ...) \ + ({ \ + bool ___ret = false; \ +- static bool __section(".data.once") ___done = false; \ ++ static bool __section(.data.once) ___done = false; \ + static DEFINE_STATIC_KEY_TRUE(___once_key); \ + if (static_branch_unlikely(&___once_key)) { \ + ___ret = __do_once_slow_start(&___done); \