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=-10.1 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham 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 9F7D9CA9ECF for ; Mon, 4 Nov 2019 06:57:12 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 71DED222CE for ; Mon, 4 Nov 2019 06:57:12 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572850632; bh=p11JZ/878S75pE68Mq2TwTFjvlVsPceSwhIak764zRU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=RCFkYiYPgYArzHOH8um4EG5blZu/2GUgwQ26yC7b8DW1YCx4yT5umPS/Nk4n7R/y+ ddygR/VeQy26u5nWTtzxpi3Uo8NXLR4EQVG5i5RiRURRPHiRaEPBKqjfXxoQ9uURCJ 4VvYeo6ppNQJz9Dy4a++yD/4x2TYRZRAI5l9GO84= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728293AbfKDG5L (ORCPT ); Mon, 4 Nov 2019 01:57:11 -0500 Received: from mail.kernel.org ([198.145.29.99]:60884 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728223AbfKDG5L (ORCPT ); Mon, 4 Nov 2019 01:57:11 -0500 Received: from aquarius.haifa.ibm.com (nesher1.haifa.il.ibm.com [195.110.40.7]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id 02946204EC; Mon, 4 Nov 2019 06:57:01 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1572850630; bh=p11JZ/878S75pE68Mq2TwTFjvlVsPceSwhIak764zRU=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=yl19luYIpVN9yj9aWbS/N6Ywf4o+a2WiEIojSiZt5QPDi0OogL/lKkGXX91IGry+P HsgsBx0sCXGHp8mGP0ZAUQGckCp0pMeJbL8h5vn55B4NbBenpEdNqsBHORE02ICICI MP1mY8J0w47Nek+EyGx1TYDCPiNYKt3GfIrpQcVU= From: Mike Rapoport To: linux-mm@kvack.org Cc: Andrew Morton , Anton Ivanov , Arnd Bergmann , "David S. Miller" , Geert Uytterhoeven , Greentime Hu , Greg Ungerer , Helge Deller , "James E.J. Bottomley" , Jeff Dike , "Kirill A. Shutemov" , Linus Torvalds , Mark Salter , Matt Turner , Michal Simek , Peter Rosin , Richard Weinberger , Rolf Eike Beer , Russell King , Sam Creasey , Vincent Chen , Vineet Gupta , Mike Rapoport , linux-alpha@vger.kernel.org, linux-arch@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-c6x-dev@linux-c6x.org, linux-kernel@vger.kernel.org, linux-m68k@lists.linux-m68k.org, linux-parisc@vger.kernel.org, linux-um@lists.infradead.org, sparclinux@vger.kernel.org, Mike Rapoport Subject: [PATCH v3 03/13] c6x: use pgtable-nopud instead of 4level-fixup Date: Mon, 4 Nov 2019 08:56:17 +0200 Message-Id: <1572850587-20314-4-git-send-email-rppt@kernel.org> X-Mailer: git-send-email 2.7.4 In-Reply-To: <1572850587-20314-1-git-send-email-rppt@kernel.org> References: <1572850587-20314-1-git-send-email-rppt@kernel.org> Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org From: Mike Rapoport c6x is a nommu architecture and does not require fixup for upper layers of the page tables because it is already handled by the generic nommu implementation. Replace usage of include/asm-generic/4level-fixup.h with include/asm-generic/pgtable-nopud.h Signed-off-by: Mike Rapoport --- arch/c6x/include/asm/pgtable.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/c6x/include/asm/pgtable.h b/arch/c6x/include/asm/pgtable.h index 0b6919c..197c473 100644 --- a/arch/c6x/include/asm/pgtable.h +++ b/arch/c6x/include/asm/pgtable.h @@ -8,7 +8,7 @@ #ifndef _ASM_C6X_PGTABLE_H #define _ASM_C6X_PGTABLE_H -#include +#include #include #include -- 2.7.4