commit: 3b94aa7caf5c24407c43d7d510eae189a18f1bf8 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org> AuthorDate: Tue Nov 1 19:48:10 2022 +0000 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> 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 <mpagano <AT> 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); \
