From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id BA121138350 for ; Mon, 16 Mar 2020 12:23:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id F300DE0BCB; Mon, 16 Mar 2020 12:23:45 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D1E80E0BCB for ; Mon, 16 Mar 2020 12:23:45 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id A726934F1D2 for ; Mon, 16 Mar 2020 12:23:44 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 55C7910A for ; Mon, 16 Mar 2020 12:23:42 +0000 (UTC) From: "Mike Pagano" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Pagano" Message-ID: <1584361405.a66c75a90a0ff3fd27e2fe18daa09dce21c12202.mpagano@gentoo> Subject: [gentoo-commits] proj/linux-patches:4.19 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 1109_linux-4.19.110.patch X-VCS-Directories: / X-VCS-Committer: mpagano X-VCS-Committer-Name: Mike Pagano X-VCS-Revision: a66c75a90a0ff3fd27e2fe18daa09dce21c12202 X-VCS-Branch: 4.19 Date: Mon, 16 Mar 2020 12:23:42 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: c7985fab-c512-4af2-9a86-75bd59b33da9 X-Archives-Hash: 938a9aa1353692a1e18f5ca50dca3d7f commit: a66c75a90a0ff3fd27e2fe18daa09dce21c12202 Author: Mike Pagano gentoo org> AuthorDate: Mon Mar 16 12:23:25 2020 +0000 Commit: Mike Pagano gentoo org> CommitDate: Mon Mar 16 12:23:25 2020 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=a66c75a9 Linux patch 4.19.110 Signed-off-by: Mike Pagano gentoo.org> 0000_README | 4 ++++ 1109_linux-4.19.110.patch | 26 ++++++++++++++++++++++++++ 2 files changed, 30 insertions(+) diff --git a/0000_README b/0000_README index f28ed71..8e31d5f 100644 --- a/0000_README +++ b/0000_README @@ -475,6 +475,10 @@ Patch: 1108_linux-4.19.109.patch From: https://www.kernel.org Desc: Linux 4.19.109 +Patch: 1109_linux-4.19.110.patch +From: https://www.kernel.org +Desc: Linux 4.19.110 + 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/1109_linux-4.19.110.patch b/1109_linux-4.19.110.patch new file mode 100644 index 0000000..955b326 --- /dev/null +++ b/1109_linux-4.19.110.patch @@ -0,0 +1,26 @@ +diff --git a/Makefile b/Makefile +index 059c5e0aac15..ada958d1bc2b 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,7 +1,7 @@ + # SPDX-License-Identifier: GPL-2.0 + VERSION = 4 + PATCHLEVEL = 19 +-SUBLEVEL = 109 ++SUBLEVEL = 110 + EXTRAVERSION = + NAME = "People's Front" + +diff --git a/arch/x86/kvm/svm.c b/arch/x86/kvm/svm.c +index 3f0565e1a7a8..cc8f3b41a1b2 100644 +--- a/arch/x86/kvm/svm.c ++++ b/arch/x86/kvm/svm.c +@@ -1336,7 +1336,7 @@ static __init void svm_adjust_mmio_mask(void) + */ + mask = (mask_bit < 52) ? rsvd_bits(mask_bit, 51) | PT_PRESENT_MASK : 0; + +- kvm_mmu_set_mmio_spte_mask(mask, PT_WRITABLE_MASK | PT_USER_MASK); ++ kvm_mmu_set_mmio_spte_mask(mask, mask); + } + + static __init int svm_hardware_setup(void)