commit:     70520f2e84709d680478de1fa3cc6b15e12476cb
Author:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
AuthorDate: Tue Nov  1 19:46:38 2022 +0000
Commit:     Mike Pagano <mpagano <AT> gentoo <DOT> org>
CommitDate: Tue Nov  1 19:46:38 2022 +0000
URL:        https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=70520f2e

Linux patch 5.4.222

Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>

 0000_README              |  4 ++++
 1221_linux-5.4.222.patch | 26 ++++++++++++++++++++++++++
 2 files changed, 30 insertions(+)

diff --git a/0000_README b/0000_README
index 2337036f..1951e80f 100644
--- a/0000_README
+++ b/0000_README
@@ -927,6 +927,10 @@ Patch:  1220_linux-5.4.221.patch
 From:   http://www.kernel.org
 Desc:   Linux 5.4.221
 
+Patch:  1221_linux-5.4.222.patch
+From:   http://www.kernel.org
+Desc:   Linux 5.4.222
+
 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/1221_linux-5.4.222.patch b/1221_linux-5.4.222.patch
new file mode 100644
index 00000000..4417c92b
--- /dev/null
+++ b/1221_linux-5.4.222.patch
@@ -0,0 +1,26 @@
+diff --git a/Makefile b/Makefile
+index 1f42636e9efaf..6eb672843b680 100644
+--- a/Makefile
++++ b/Makefile
+@@ -1,7 +1,7 @@
+ # SPDX-License-Identifier: GPL-2.0
+ VERSION = 5
+ PATCHLEVEL = 4
+-SUBLEVEL = 221
++SUBLEVEL = 222
+ EXTRAVERSION =
+ NAME = Kleptomaniac Octopus
+ 
+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);             \

Reply via email to