From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-0.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS autolearn=no autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 3ACA9C2BA83 for ; Fri, 14 Feb 2020 11:18:59 +0000 (UTC) Received: from kanga.kvack.org (kanga.kvack.org [205.233.56.17]) by mail.kernel.org (Postfix) with ESMTP id F02132187F for ; Fri, 14 Feb 2020 11:18:58 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (2048-bit key) header.d=infradead.org header.i=@infradead.org header.b="iP+UUlgl" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org F02132187F Authentication-Results: mail.kernel.org; dmarc=none (p=none dis=none) header.from=infradead.org Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=owner-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix) id 8CD3F6B0618; Fri, 14 Feb 2020 06:18:58 -0500 (EST) Received: by kanga.kvack.org (Postfix, from userid 40) id 87D946B0619; Fri, 14 Feb 2020 06:18:58 -0500 (EST) X-Delivered-To: int-list-linux-mm@kvack.org Received: by kanga.kvack.org (Postfix, from userid 63042) id 76BE86B061A; Fri, 14 Feb 2020 06:18:58 -0500 (EST) X-Delivered-To: linux-mm@kvack.org Received: from forelay.hostedemail.com (smtprelay0147.hostedemail.com [216.40.44.147]) by kanga.kvack.org (Postfix) with ESMTP id 5BF5D6B0618 for ; Fri, 14 Feb 2020 06:18:58 -0500 (EST) Received: from smtpin11.hostedemail.com (10.5.19.251.rfc1918.com [10.5.19.251]) by forelay04.hostedemail.com (Postfix) with ESMTP id E36A82219 for ; Fri, 14 Feb 2020 11:18:57 +0000 (UTC) X-FDA: 76488485514.11.front07_13f1706334e22 X-HE-Tag: front07_13f1706334e22 X-Filterd-Recvd-Size: 2136 Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) by imf26.hostedemail.com (Postfix) with ESMTP for ; Fri, 14 Feb 2020 11:18:56 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=bombadil.20170209; h=In-Reply-To:Content-Type:MIME-Version :References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=Fj0XUaKdsz3nkZOfWpiTS6DxcvqzEMe2gTYSGiJrL0c=; b=iP+UUlglIeduPadO6zCgDXg6i0 7J7+y+bfcuIKiJa9LpRZsOsOuRhThUVwdDpeDQgFll00Fmc8wNOHTrHAxk59Rp0Wk1Q17bm3DoElZ J9dO175FWzyy4EV+LLKeOQNSbxvme4KUJNthqLag8onq1mSYL642tM6yC8Q18wkK03bu5HxjfsfTD NrSK/I3cj9BFZjZ3Eub5NNRV042oJ+5bwTH+0OtzP/Q44KZ5EcPNlL2biuK4tBn6cUXsFXzOaB6vY 6/hu7xqrmNY3QbTodTYO+q07PFi1vwtbcdFAMyaiC/Tfv+jCNb/qVYduliv59hLkPTbpNtxLMZcYs rTTlCjqg==; Received: from willy by bombadil.infradead.org with local (Exim 4.92.3 #3 (Red Hat Linux)) id 1j2Yzl-0007Jc-0R; Fri, 14 Feb 2020 11:18:53 +0000 Date: Fri, 14 Feb 2020 03:18:52 -0800 From: Matthew Wilcox To: Andrew Morton Cc: linux-mm@kvack.org Subject: Re: [PATCH] include: Remove highmem.h from pagemap.h Message-ID: <20200214111852.GZ7778@bombadil.infradead.org> References: <20200213195643.31587-1-willy@infradead.org> <20200213214110.b672811dc324c0f8a61225f8@linux-foundation.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200213214110.b672811dc324c0f8a61225f8@linux-foundation.org> X-Bogosity: Ham, tests=bogofilter, spamicity=0.000000, version=1.2.4 Sender: owner-linux-mm@kvack.org Precedence: bulk X-Loop: owner-majordomo@kvack.org List-ID: On Thu, Feb 13, 2020 at 09:41:10PM -0800, Andrew Morton wrote: > On Thu, 13 Feb 2020 11:56:43 -0800 Matthew Wilcox wrote: > > > pagemap.h doesn't need highmem.h itself. Only two dozen users were > > relying on pagemap to pull in highmem (usually for kmap), so fix them > > all up and we can remove this header file dependency. > > Three compilation errors in an x86_64 allnoconfig build. This one will > need a lot more testing, please. Weird; I did an allyesconfig build without error. Will try.