Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:5.4 commit in: /
Date: Tue, 01 Nov 2022 19:47:16
Message-Id: 1667331998.70520f2e84709d680478de1fa3cc6b15e12476cb.mpagano@gentoo
1 commit: 70520f2e84709d680478de1fa3cc6b15e12476cb
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Tue Nov 1 19:46:38 2022 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Tue Nov 1 19:46:38 2022 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=70520f2e
7
8 Linux patch 5.4.222
9
10 Signed-off-by: Mike Pagano <mpagano <AT> gentoo.org>
11
12 0000_README | 4 ++++
13 1221_linux-5.4.222.patch | 26 ++++++++++++++++++++++++++
14 2 files changed, 30 insertions(+)
15
16 diff --git a/0000_README b/0000_README
17 index 2337036f..1951e80f 100644
18 --- a/0000_README
19 +++ b/0000_README
20 @@ -927,6 +927,10 @@ Patch: 1220_linux-5.4.221.patch
21 From: http://www.kernel.org
22 Desc: Linux 5.4.221
23
24 +Patch: 1221_linux-5.4.222.patch
25 +From: http://www.kernel.org
26 +Desc: Linux 5.4.222
27 +
28 Patch: 1500_XATTR_USER_PREFIX.patch
29 From: https://bugs.gentoo.org/show_bug.cgi?id=470644
30 Desc: Support for namespace user.pax.* on tmpfs.
31
32 diff --git a/1221_linux-5.4.222.patch b/1221_linux-5.4.222.patch
33 new file mode 100644
34 index 00000000..4417c92b
35 --- /dev/null
36 +++ b/1221_linux-5.4.222.patch
37 @@ -0,0 +1,26 @@
38 +diff --git a/Makefile b/Makefile
39 +index 1f42636e9efaf..6eb672843b680 100644
40 +--- a/Makefile
41 ++++ b/Makefile
42 +@@ -1,7 +1,7 @@
43 + # SPDX-License-Identifier: GPL-2.0
44 + VERSION = 5
45 + PATCHLEVEL = 4
46 +-SUBLEVEL = 221
47 ++SUBLEVEL = 222
48 + EXTRAVERSION =
49 + NAME = Kleptomaniac Octopus
50 +
51 +diff --git a/include/linux/once.h b/include/linux/once.h
52 +index bb58e1c3aa034..3a6671d961b98 100644
53 +--- a/include/linux/once.h
54 ++++ b/include/linux/once.h
55 +@@ -64,7 +64,7 @@ void __do_once_slow_done(bool *done, struct static_key_true *once_key,
56 + #define DO_ONCE_SLOW(func, ...) \
57 + ({ \
58 + bool ___ret = false; \
59 +- static bool __section(".data.once") ___done = false; \
60 ++ static bool __section(.data.once) ___done = false; \
61 + static DEFINE_STATIC_KEY_TRUE(___once_key); \
62 + if (static_branch_unlikely(&___once_key)) { \
63 + ___ret = __do_once_slow_start(&___done); \