Gentoo Archives: gentoo-commits

From: Mike Pagano <mpagano@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/linux-patches:4.14 commit in: /
Date: Sat, 18 Aug 2018 18:12:33
Message-Id: 1534615940.cb4c478d72b227b7a0dd768caa6cc72f14a72846.mpagano@gentoo
1 commit: cb4c478d72b227b7a0dd768caa6cc72f14a72846
2 Author: Mike Pagano <mpagano <AT> gentoo <DOT> org>
3 AuthorDate: Sat Aug 18 18:12:20 2018 +0000
4 Commit: Mike Pagano <mpagano <AT> gentoo <DOT> org>
5 CommitDate: Sat Aug 18 18:12:20 2018 +0000
6 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=cb4c478d
7
8 Linux patch 4.14.65
9
10 0000_README | 4 ++++
11 1064_linux-4.14.65.patch | 37 +++++++++++++++++++++++++++++++++++++
12 2 files changed, 41 insertions(+)
13
14 diff --git a/0000_README b/0000_README
15 index 614d36d..1cd1371 100644
16 --- a/0000_README
17 +++ b/0000_README
18 @@ -299,6 +299,10 @@ Patch: 1063_linux-4.14.64.patch
19 From: http://www.kernel.org
20 Desc: Linux 4.14.64
21
22 +Patch: 1064_linux-4.14.65.patch
23 +From: http://www.kernel.org
24 +Desc: Linux 4.14.65
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/1064_linux-4.14.65.patch b/1064_linux-4.14.65.patch
31 new file mode 100644
32 index 0000000..305f291
33 --- /dev/null
34 +++ b/1064_linux-4.14.65.patch
35 @@ -0,0 +1,37 @@
36 +diff --git a/Makefile b/Makefile
37 +index 025156791e90..7995690ff1aa 100644
38 +--- a/Makefile
39 ++++ b/Makefile
40 +@@ -1,7 +1,7 @@
41 + # SPDX-License-Identifier: GPL-2.0
42 + VERSION = 4
43 + PATCHLEVEL = 14
44 +-SUBLEVEL = 64
45 ++SUBLEVEL = 65
46 + EXTRAVERSION =
47 + NAME = Petit Gorille
48 +
49 +diff --git a/arch/x86/include/asm/pgtable-invert.h b/arch/x86/include/asm/pgtable-invert.h
50 +index 44b1203ece12..a0c1525f1b6f 100644
51 +--- a/arch/x86/include/asm/pgtable-invert.h
52 ++++ b/arch/x86/include/asm/pgtable-invert.h
53 +@@ -4,9 +4,18 @@
54 +
55 + #ifndef __ASSEMBLY__
56 +
57 ++/*
58 ++ * A clear pte value is special, and doesn't get inverted.
59 ++ *
60 ++ * Note that even users that only pass a pgprot_t (rather
61 ++ * than a full pte) won't trigger the special zero case,
62 ++ * because even PAGE_NONE has _PAGE_PROTNONE | _PAGE_ACCESSED
63 ++ * set. So the all zero case really is limited to just the
64 ++ * cleared page table entry case.
65 ++ */
66 + static inline bool __pte_needs_invert(u64 val)
67 + {
68 +- return !(val & _PAGE_PRESENT);
69 ++ return val && !(val & _PAGE_PRESENT);
70 + }
71 +
72 + /* Get a mask to xor with the page table entry to get the correct pfn. */