Gentoo Archives: gentoo-commits

From: Alice Ferrazzi <alicef@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:4.4 commit in: /
Date: Fri, 24 Nov 2017 10:49:18
Message-Id: 1511520489.f7a9683a6643b4e053b8194e9a3c587fe9d09c90.alicef@gentoo
1 commit: f7a9683a6643b4e053b8194e9a3c587fe9d09c90
2 Author: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
3 AuthorDate: Fri Nov 24 10:48:09 2017 +0000
4 Commit: Alice Ferrazzi <alicef <AT> gentoo <DOT> org>
5 CommitDate: Fri Nov 24 10:48:09 2017 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=f7a9683a
7
8 linux kernel 4.4.102
9
10 0000_README | 4 ++++
11 1101_linux-4.4.102.patch | 43 +++++++++++++++++++++++++++++++++++++++++++
12 2 files changed, 47 insertions(+)
13
14 diff --git a/0000_README b/0000_README
15 index c2f7291..069312b 100644
16 --- a/0000_README
17 +++ b/0000_README
18 @@ -447,6 +447,10 @@ Patch: 1100_linux-4.4.101.patch
19 From: http://www.kernel.org
20 Desc: Linux 4.4.101
21
22 +Patch: 1101_linux-4.4.102.patch
23 +From: http://www.kernel.org
24 +Desc: Linux 4.4.102
25 +
26 Patch: 1500_XATTR_USER_PREFIX.patch
27 From: https://bugs.gentoo.org/show_bug.cgi?id=470644
28 Desc: Support for namespace user.pax.* on tmpfs.
29
30 diff --git a/1101_linux-4.4.102.patch b/1101_linux-4.4.102.patch
31 new file mode 100644
32 index 0000000..45e56d1
33 --- /dev/null
34 +++ b/1101_linux-4.4.102.patch
35 @@ -0,0 +1,43 @@
36 +diff --git a/Makefile b/Makefile
37 +index 0d7b050427ed..9e036fac9c04 100644
38 +--- a/Makefile
39 ++++ b/Makefile
40 +@@ -1,6 +1,6 @@
41 + VERSION = 4
42 + PATCHLEVEL = 4
43 +-SUBLEVEL = 101
44 ++SUBLEVEL = 102
45 + EXTRAVERSION =
46 + NAME = Blurry Fish Butt
47 +
48 +diff --git a/mm/debug-pagealloc.c b/mm/debug-pagealloc.c
49 +index fe1c61f7cf26..3b8f1b83610e 100644
50 +--- a/mm/debug-pagealloc.c
51 ++++ b/mm/debug-pagealloc.c
52 +@@ -34,7 +34,7 @@ static inline void set_page_poison(struct page *page)
53 + struct page_ext *page_ext;
54 +
55 + page_ext = lookup_page_ext(page);
56 +- if (page_ext)
57 ++ if (!page_ext)
58 + return;
59 + __set_bit(PAGE_EXT_DEBUG_POISON, &page_ext->flags);
60 + }
61 +@@ -44,7 +44,7 @@ static inline void clear_page_poison(struct page *page)
62 + struct page_ext *page_ext;
63 +
64 + page_ext = lookup_page_ext(page);
65 +- if (page_ext)
66 ++ if (!page_ext)
67 + return;
68 + __clear_bit(PAGE_EXT_DEBUG_POISON, &page_ext->flags);
69 + }
70 +@@ -54,7 +54,7 @@ static inline bool page_poison(struct page *page)
71 + struct page_ext *page_ext;
72 +
73 + page_ext = lookup_page_ext(page);
74 +- if (page_ext)
75 ++ if (!page_ext)
76 + return false;
77 + return test_bit(PAGE_EXT_DEBUG_POISON, &page_ext->flags);
78 + }