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 6F6F8139083 for ; Fri, 24 Nov 2017 10:49:18 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 928ABE0E87; Fri, 24 Nov 2017 10:49:17 +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 72537E0E87 for ; Fri, 24 Nov 2017 10:49:17 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 202E933BE68 for ; Fri, 24 Nov 2017 10:49:16 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id ABD1EA5D8 for ; Fri, 24 Nov 2017 10:49:14 +0000 (UTC) From: "Alice Ferrazzi" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Alice Ferrazzi" Message-ID: <1511520489.f7a9683a6643b4e053b8194e9a3c587fe9d09c90.alicef@gentoo> Subject: [gentoo-commits] proj/linux-patches:4.4 commit in: / X-VCS-Repository: proj/linux-patches X-VCS-Files: 0000_README 1101_linux-4.4.102.patch X-VCS-Directories: / X-VCS-Committer: alicef X-VCS-Committer-Name: Alice Ferrazzi X-VCS-Revision: f7a9683a6643b4e053b8194e9a3c587fe9d09c90 X-VCS-Branch: 4.4 Date: Fri, 24 Nov 2017 10:49:14 +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-Archives-Salt: 5f6add5e-86ee-41b9-92fa-a6c625b1cf7a X-Archives-Hash: b59eb42ea3d77bed9c1119426621115f commit: f7a9683a6643b4e053b8194e9a3c587fe9d09c90 Author: Alice Ferrazzi gentoo org> AuthorDate: Fri Nov 24 10:48:09 2017 +0000 Commit: Alice Ferrazzi gentoo org> CommitDate: Fri Nov 24 10:48:09 2017 +0000 URL: https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=f7a9683a linux kernel 4.4.102 0000_README | 4 ++++ 1101_linux-4.4.102.patch | 43 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+) diff --git a/0000_README b/0000_README index c2f7291..069312b 100644 --- a/0000_README +++ b/0000_README @@ -447,6 +447,10 @@ Patch: 1100_linux-4.4.101.patch From: http://www.kernel.org Desc: Linux 4.4.101 +Patch: 1101_linux-4.4.102.patch +From: http://www.kernel.org +Desc: Linux 4.4.102 + 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/1101_linux-4.4.102.patch b/1101_linux-4.4.102.patch new file mode 100644 index 0000000..45e56d1 --- /dev/null +++ b/1101_linux-4.4.102.patch @@ -0,0 +1,43 @@ +diff --git a/Makefile b/Makefile +index 0d7b050427ed..9e036fac9c04 100644 +--- a/Makefile ++++ b/Makefile +@@ -1,6 +1,6 @@ + VERSION = 4 + PATCHLEVEL = 4 +-SUBLEVEL = 101 ++SUBLEVEL = 102 + EXTRAVERSION = + NAME = Blurry Fish Butt + +diff --git a/mm/debug-pagealloc.c b/mm/debug-pagealloc.c +index fe1c61f7cf26..3b8f1b83610e 100644 +--- a/mm/debug-pagealloc.c ++++ b/mm/debug-pagealloc.c +@@ -34,7 +34,7 @@ static inline void set_page_poison(struct page *page) + struct page_ext *page_ext; + + page_ext = lookup_page_ext(page); +- if (page_ext) ++ if (!page_ext) + return; + __set_bit(PAGE_EXT_DEBUG_POISON, &page_ext->flags); + } +@@ -44,7 +44,7 @@ static inline void clear_page_poison(struct page *page) + struct page_ext *page_ext; + + page_ext = lookup_page_ext(page); +- if (page_ext) ++ if (!page_ext) + return; + __clear_bit(PAGE_EXT_DEBUG_POISON, &page_ext->flags); + } +@@ -54,7 +54,7 @@ static inline bool page_poison(struct page *page) + struct page_ext *page_ext; + + page_ext = lookup_page_ext(page); +- if (page_ext) ++ if (!page_ext) + return false; + return test_bit(PAGE_EXT_DEBUG_POISON, &page_ext->flags); + }