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=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 DEA45C5519C for ; Sun, 26 Apr 2020 05:54:43 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id C88D12173E for ; Sun, 26 Apr 2020 05:54:43 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726118AbgDZFyV (ORCPT ); Sun, 26 Apr 2020 01:54:21 -0400 Received: from mga05.intel.com ([192.55.52.43]:34948 "EHLO mga05.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725468AbgDZFyV (ORCPT ); Sun, 26 Apr 2020 01:54:21 -0400 IronPort-SDR: mhbP6M0vOROTf19G/v4XotjAsT4ouLrU2kIiSnOHMqit70Y+/7WaUpLvABrkzh/MUw5yK8jjAK 2dcdVo/YkC0w== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga105.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:21 -0700 IronPort-SDR: /cZ3umTa8B8PLh9tjA9EP3+bxl80qczghY2Si7yQnbojuyuxqol2zAYPUansPdHYwpezKRfg9s EcpTlSW8XTMQ== X-IronPort-AV: E=Sophos;i="5.73,319,1583222400"; d="scan'208";a="281313737" Received: from iweiny-desk2.sc.intel.com (HELO localhost) ([10.3.52.147]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:20 -0700 From: ira.weiny@intel.com To: linux-kernel@vger.kernel.org, Andrew Morton Cc: Ira Weiny , Thomas Bogendoerfer , "James E.J. Bottomley" , Helge Deller , Benjamin Herrenschmidt , Paul Mackerras , "David S. Miller" , Thomas Gleixner , Ingo Molnar , Borislav Petkov , x86@kernel.org, "H. Peter Anvin" , Dave Hansen , Andy Lutomirski , Peter Zijlstra , Chris Zankel , Max Filippov , Dan Williams , linux-snps-arc@lists.infradead.org, linux-arm-kernel@lists.infradead.org, linux-csky@vger.kernel.org, linux-mips@vger.kernel.org, linux-parisc@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, sparclinux@vger.kernel.org, linux-xtensa@linux-xtensa.org Subject: [PATCH 0/5] Remove duplicated kmap code Date: Sat, 25 Apr 2020 22:54:01 -0700 Message-Id: <20200426055406.134198-1-ira.weiny@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-parisc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-parisc@vger.kernel.org From: Ira Weiny The kmap infrastructure has been copied almost verbatim to every architecture. This series consolidates obvious duplicated code. (k[un]map_atmoic has some additional duplication between some of the architectures but the differences were such to not warrant further changes.) 0day built successfully to cover all the architectures I can't readily build. Ira Weiny (5): arch/kmap: Remove BUG_ON() arch/kmap: Remove redundant arch specific kmaps arch/kunmap: Remove duplicate kunmap implementations arch/kmap_atomic: Consolidate duplicate code arch/kunmap_atomic: Consolidate duplicate code arch/arc/include/asm/highmem.h | 11 ------- arch/arc/mm/highmem.c | 20 ++----------- arch/arm/include/asm/highmem.h | 3 -- arch/arm/mm/highmem.c | 28 ++---------------- arch/csky/include/asm/highmem.h | 3 +- arch/csky/mm/highmem.c | 28 ++++-------------- arch/microblaze/include/asm/highmem.h | 17 ----------- arch/microblaze/mm/highmem.c | 10 ++----- arch/mips/include/asm/highmem.h | 3 +- arch/mips/mm/highmem.c | 25 +++------------- arch/nds32/include/asm/highmem.h | 3 -- arch/nds32/mm/highmem.c | 31 ++------------------ arch/parisc/include/asm/cacheflush.h | 2 -- arch/powerpc/include/asm/highmem.h | 17 ----------- arch/powerpc/mm/highmem.c | 9 ++---- arch/sparc/include/asm/highmem.h | 17 ----------- arch/sparc/mm/highmem.c | 9 ++---- arch/x86/include/asm/highmem.h | 4 --- arch/x86/mm/highmem_32.c | 30 ++------------------ arch/xtensa/include/asm/highmem.h | 14 +-------- arch/xtensa/mm/highmem.c | 10 ++----- include/linux/highmem.h | 41 +++++++++++++++++++++++++-- 22 files changed, 75 insertions(+), 260 deletions(-) -- 2.25.1 From mboxrd@z Thu Jan 1 00:00:00 1970 From: ira.weiny@intel.com Date: Sun, 26 Apr 2020 05:54:01 +0000 Subject: [PATCH 0/5] Remove duplicated kmap code Message-Id: <20200426055406.134198-1-ira.weiny@intel.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: linux-kernel@vger.kernel.org, Andrew Morton Cc: Peter Zijlstra , Benjamin Herrenschmidt , Dave Hansen , "James E.J. Bottomley" , Max Filippov , Paul Mackerras , "H. Peter Anvin" , sparclinux@vger.kernel.org, Ira Weiny , Thomas Gleixner , Helge Deller , x86@kernel.org, linux-csky@vger.kernel.org, Ingo Molnar , linux-snps-arc@lists.infradead.org, linux-xtensa@linux-xtensa.org, Borislav Petkov , Andy Lutomirski , Dan Williams , linux-arm-kernel@lists.infradead.org, Chris Zankel , Thomas Bogendoerfer , linux-parisc@vger.kernel.org, linux-mips@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, "David S. Miller" From: Ira Weiny The kmap infrastructure has been copied almost verbatim to every architecture. This series consolidates obvious duplicated code. (k[un]map_atmoic has some additional duplication between some of the architectures but the differences were such to not warrant further changes.) 0day built successfully to cover all the architectures I can't readily build. Ira Weiny (5): arch/kmap: Remove BUG_ON() arch/kmap: Remove redundant arch specific kmaps arch/kunmap: Remove duplicate kunmap implementations arch/kmap_atomic: Consolidate duplicate code arch/kunmap_atomic: Consolidate duplicate code arch/arc/include/asm/highmem.h | 11 ------- arch/arc/mm/highmem.c | 20 ++----------- arch/arm/include/asm/highmem.h | 3 -- arch/arm/mm/highmem.c | 28 ++---------------- arch/csky/include/asm/highmem.h | 3 +- arch/csky/mm/highmem.c | 28 ++++-------------- arch/microblaze/include/asm/highmem.h | 17 ----------- arch/microblaze/mm/highmem.c | 10 ++----- arch/mips/include/asm/highmem.h | 3 +- arch/mips/mm/highmem.c | 25 +++------------- arch/nds32/include/asm/highmem.h | 3 -- arch/nds32/mm/highmem.c | 31 ++------------------ arch/parisc/include/asm/cacheflush.h | 2 -- arch/powerpc/include/asm/highmem.h | 17 ----------- arch/powerpc/mm/highmem.c | 9 ++---- arch/sparc/include/asm/highmem.h | 17 ----------- arch/sparc/mm/highmem.c | 9 ++---- arch/x86/include/asm/highmem.h | 4 --- arch/x86/mm/highmem_32.c | 30 ++------------------ arch/xtensa/include/asm/highmem.h | 14 +-------- arch/xtensa/mm/highmem.c | 10 ++----- include/linux/highmem.h | 41 +++++++++++++++++++++++++-- 22 files changed, 75 insertions(+), 260 deletions(-) -- 2.25.1 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=-3.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 44206C2BA1A for ; Sun, 26 Apr 2020 05:56:29 +0000 (UTC) Received: from lists.ozlabs.org (lists.ozlabs.org [203.11.71.2]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A7DDF206BF for ; Sun, 26 Apr 2020 05:56:28 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org A7DDF206BF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Received: from lists.ozlabs.org (lists.ozlabs.org [IPv6:2401:3900:2:1::3]) by lists.ozlabs.org (Postfix) with ESMTP id 498xx570GTzDqft for ; Sun, 26 Apr 2020 15:56:25 +1000 (AEST) Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=intel.com (client-ip=134.134.136.20; helo=mga02.intel.com; envelope-from=ira.weiny@intel.com; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=pass (p=none dis=none) header.from=intel.com Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 498xtz6772zDqKS for ; Sun, 26 Apr 2020 15:54:25 +1000 (AEST) IronPort-SDR: 1bz+4W5XjQJEQJoKZcWMaN9LVQe04LJjjwKOYvU0JJla/pNmkuJF51rql1QoRJUy2RUqbWqYdr CJgQGl32B8RQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:21 -0700 IronPort-SDR: /cZ3umTa8B8PLh9tjA9EP3+bxl80qczghY2Si7yQnbojuyuxqol2zAYPUansPdHYwpezKRfg9s EcpTlSW8XTMQ== X-IronPort-AV: E=Sophos;i="5.73,319,1583222400"; d="scan'208";a="281313737" Received: from iweiny-desk2.sc.intel.com (HELO localhost) ([10.3.52.147]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:20 -0700 From: ira.weiny@intel.com To: linux-kernel@vger.kernel.org, Andrew Morton Subject: [PATCH 0/5] Remove duplicated kmap code Date: Sat, 25 Apr 2020 22:54:01 -0700 Message-Id: <20200426055406.134198-1-ira.weiny@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: linuxppc-dev@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on PowerPC Developers Mail List List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Zijlstra , Dave Hansen , "James E.J. Bottomley" , Max Filippov , Paul Mackerras , "H. Peter Anvin" , sparclinux@vger.kernel.org, Ira Weiny , Thomas Gleixner , Helge Deller , x86@kernel.org, linux-csky@vger.kernel.org, Ingo Molnar , linux-snps-arc@lists.infradead.org, linux-xtensa@linux-xtensa.org, Borislav Petkov , Andy Lutomirski , Dan Williams , linux-arm-kernel@lists.infradead.org, Chris Zankel , Thomas Bogendoerfer , linux-parisc@vger.kernel.org, linux-mips@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, "David S. Miller" Errors-To: linuxppc-dev-bounces+linuxppc-dev=archiver.kernel.org@lists.ozlabs.org Sender: "Linuxppc-dev" From: Ira Weiny The kmap infrastructure has been copied almost verbatim to every architecture. This series consolidates obvious duplicated code. (k[un]map_atmoic has some additional duplication between some of the architectures but the differences were such to not warrant further changes.) 0day built successfully to cover all the architectures I can't readily build. Ira Weiny (5): arch/kmap: Remove BUG_ON() arch/kmap: Remove redundant arch specific kmaps arch/kunmap: Remove duplicate kunmap implementations arch/kmap_atomic: Consolidate duplicate code arch/kunmap_atomic: Consolidate duplicate code arch/arc/include/asm/highmem.h | 11 ------- arch/arc/mm/highmem.c | 20 ++----------- arch/arm/include/asm/highmem.h | 3 -- arch/arm/mm/highmem.c | 28 ++---------------- arch/csky/include/asm/highmem.h | 3 +- arch/csky/mm/highmem.c | 28 ++++-------------- arch/microblaze/include/asm/highmem.h | 17 ----------- arch/microblaze/mm/highmem.c | 10 ++----- arch/mips/include/asm/highmem.h | 3 +- arch/mips/mm/highmem.c | 25 +++------------- arch/nds32/include/asm/highmem.h | 3 -- arch/nds32/mm/highmem.c | 31 ++------------------ arch/parisc/include/asm/cacheflush.h | 2 -- arch/powerpc/include/asm/highmem.h | 17 ----------- arch/powerpc/mm/highmem.c | 9 ++---- arch/sparc/include/asm/highmem.h | 17 ----------- arch/sparc/mm/highmem.c | 9 ++---- arch/x86/include/asm/highmem.h | 4 --- arch/x86/mm/highmem_32.c | 30 ++------------------ arch/xtensa/include/asm/highmem.h | 14 +-------- arch/xtensa/mm/highmem.c | 10 ++----- include/linux/highmem.h | 41 +++++++++++++++++++++++++-- 22 files changed, 75 insertions(+), 260 deletions(-) -- 2.25.1 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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT 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 05665C2BA1A for ; Sun, 26 Apr 2020 05:55:34 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 7CF07206BF for ; Sun, 26 Apr 2020 05:55:33 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="BODjUiex" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 7CF07206BF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-snps-arc-bounces+linux-snps-arc=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=r9M6P646IB4cUWyCPS4lIK6Ce5AdF/rM1KwS2ccWd4A=; b=BODjUiexm6kvCN pmi6siXwW+OvfJWV38LuaFkcfB9MwgcRFWbUQbtToCJX1QO6WQM7nHyvzZeJidUTpT+PfnY04Zq08 iTvJiEotXipUsqSNzB/SSwM8ft9Rgw+AfbwpBvPjCpjzVbRIYSuYn1PaTelR4movgsmwj2vymWIku +WMAq5VIGvRH4bxXTLdbG5f1iXpak9eUYjVxZIooVtjiBuOSea8xAPcrNMwCmjHHc/o7J8Gb7dAPm QDMcGwj58OF9FZ3PdKqEVYMwHXQojbcHoSU3FfDhOYtMiQqm7/CQ2NpJQqPIbK/udHhmGl4zkX79E pIFudTD7hwMoumCOZGTg==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jSaGI-00073I-IJ; Sun, 26 Apr 2020 05:55:30 +0000 Received: from mga09.intel.com ([134.134.136.24]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jSaFI-0003ra-0k; Sun, 26 Apr 2020 05:54:30 +0000 IronPort-SDR: wLzHAPwMFQfyRBghPP8C0WhGJRPcOohD5IkidTZVR9jntd4piSPmZ+M85/fQtnL+lSFqCXcjoF NQ1L2dBKjrLQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:21 -0700 IronPort-SDR: /cZ3umTa8B8PLh9tjA9EP3+bxl80qczghY2Si7yQnbojuyuxqol2zAYPUansPdHYwpezKRfg9s EcpTlSW8XTMQ== X-IronPort-AV: E=Sophos;i="5.73,319,1583222400"; d="scan'208";a="281313737" Received: from iweiny-desk2.sc.intel.com (HELO localhost) ([10.3.52.147]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:20 -0700 From: ira.weiny@intel.com To: linux-kernel@vger.kernel.org, Andrew Morton Subject: [PATCH 0/5] Remove duplicated kmap code Date: Sat, 25 Apr 2020 22:54:01 -0700 Message-Id: <20200426055406.134198-1-ira.weiny@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200425_225428_104207_2F8CED01 X-CRM114-Status: UNSURE ( 8.82 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-snps-arc@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Linux on Synopsys ARC Processors List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Zijlstra , Benjamin Herrenschmidt , Dave Hansen , "James E.J. Bottomley" , Max Filippov , Paul Mackerras , "H. Peter Anvin" , sparclinux@vger.kernel.org, Ira Weiny , Thomas Gleixner , Helge Deller , x86@kernel.org, linux-csky@vger.kernel.org, Ingo Molnar , linux-snps-arc@lists.infradead.org, linux-xtensa@linux-xtensa.org, Borislav Petkov , Andy Lutomirski , Dan Williams , linux-arm-kernel@lists.infradead.org, Chris Zankel , Thomas Bogendoerfer , linux-parisc@vger.kernel.org, linux-mips@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, "David S. Miller" Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-snps-arc" Errors-To: linux-snps-arc-bounces+linux-snps-arc=archiver.kernel.org@lists.infradead.org From: Ira Weiny The kmap infrastructure has been copied almost verbatim to every architecture. This series consolidates obvious duplicated code. (k[un]map_atmoic has some additional duplication between some of the architectures but the differences were such to not warrant further changes.) 0day built successfully to cover all the architectures I can't readily build. Ira Weiny (5): arch/kmap: Remove BUG_ON() arch/kmap: Remove redundant arch specific kmaps arch/kunmap: Remove duplicate kunmap implementations arch/kmap_atomic: Consolidate duplicate code arch/kunmap_atomic: Consolidate duplicate code arch/arc/include/asm/highmem.h | 11 ------- arch/arc/mm/highmem.c | 20 ++----------- arch/arm/include/asm/highmem.h | 3 -- arch/arm/mm/highmem.c | 28 ++---------------- arch/csky/include/asm/highmem.h | 3 +- arch/csky/mm/highmem.c | 28 ++++-------------- arch/microblaze/include/asm/highmem.h | 17 ----------- arch/microblaze/mm/highmem.c | 10 ++----- arch/mips/include/asm/highmem.h | 3 +- arch/mips/mm/highmem.c | 25 +++------------- arch/nds32/include/asm/highmem.h | 3 -- arch/nds32/mm/highmem.c | 31 ++------------------ arch/parisc/include/asm/cacheflush.h | 2 -- arch/powerpc/include/asm/highmem.h | 17 ----------- arch/powerpc/mm/highmem.c | 9 ++---- arch/sparc/include/asm/highmem.h | 17 ----------- arch/sparc/mm/highmem.c | 9 ++---- arch/x86/include/asm/highmem.h | 4 --- arch/x86/mm/highmem_32.c | 30 ++------------------ arch/xtensa/include/asm/highmem.h | 14 +-------- arch/xtensa/mm/highmem.c | 10 ++----- include/linux/highmem.h | 41 +++++++++++++++++++++++++-- 22 files changed, 75 insertions(+), 260 deletions(-) -- 2.25.1 _______________________________________________ linux-snps-arc mailing list linux-snps-arc@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-snps-arc 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=-3.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE, SPF_PASS,USER_AGENT_GIT 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 E4222C2BA1A for ; Sun, 26 Apr 2020 05:55:21 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 90FB5206BF for ; Sun, 26 Apr 2020 05:55:21 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (2048-bit key) header.d=lists.infradead.org header.i=@lists.infradead.org header.b="CFpPE+Bc" DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 90FB5206BF Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20170209; h=Sender: Content-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:MIME-Version:Message-Id:Date:Subject:To :From:Reply-To:Content-ID:Content-Description:Resent-Date:Resent-From: Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:In-Reply-To:References: List-Owner; bh=GTO05aHuCwhn5BKdVU6FHW1GqJ9twGtxQADtzLZGf0o=; b=CFpPE+BcxXSYcE Hso+KZ7Iyy7LuMMEdaJeEIrTYVI5uK/C+f+BYxYmQq2+kKC9Y0V2MIYcqIr1GIFIfNRjI+qtEXOrD xSzvhxk4vnjeZ9jheeVyaPMVwt1Qa8vTlaomkWyg+zShiPaeCyWbPVPeT5XRRRk0wm2xmj2q+qW2W wXDze2EKv+BE/kA/VGdFdPORxZTh67biPeY9Spg62R5uNizdV8HaTACNrrKSOd3n1ZPHeh7qRlp/b VwNRGGV39AtetQR4vHoQuBnB3RCWSCQUS8mvPNifnSQSPyjQTzp9XQBG3Et/+ZmA4sQXcXMoQr/8J jTRryLaRZc+CbPu0jaCA==; Received: from localhost ([127.0.0.1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.92.3 #3 (Red Hat Linux)) id 1jSaG4-0005Hp-RJ; Sun, 26 Apr 2020 05:55:16 +0000 Received: from mga09.intel.com ([134.134.136.24]) by bombadil.infradead.org with esmtps (Exim 4.92.3 #3 (Red Hat Linux)) id 1jSaFI-0003ra-0k; Sun, 26 Apr 2020 05:54:30 +0000 IronPort-SDR: wLzHAPwMFQfyRBghPP8C0WhGJRPcOohD5IkidTZVR9jntd4piSPmZ+M85/fQtnL+lSFqCXcjoF NQ1L2dBKjrLQ== X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:21 -0700 IronPort-SDR: /cZ3umTa8B8PLh9tjA9EP3+bxl80qczghY2Si7yQnbojuyuxqol2zAYPUansPdHYwpezKRfg9s EcpTlSW8XTMQ== X-IronPort-AV: E=Sophos;i="5.73,319,1583222400"; d="scan'208";a="281313737" Received: from iweiny-desk2.sc.intel.com (HELO localhost) ([10.3.52.147]) by fmsmga004-auth.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 25 Apr 2020 22:54:20 -0700 From: ira.weiny@intel.com To: linux-kernel@vger.kernel.org, Andrew Morton Subject: [PATCH 0/5] Remove duplicated kmap code Date: Sat, 25 Apr 2020 22:54:01 -0700 Message-Id: <20200426055406.134198-1-ira.weiny@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20200425_225428_104207_2F8CED01 X-CRM114-Status: UNSURE ( 8.82 ) X-CRM114-Notice: Please train this message. X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Peter Zijlstra , Benjamin Herrenschmidt , Dave Hansen , "James E.J. Bottomley" , Max Filippov , Paul Mackerras , "H. Peter Anvin" , sparclinux@vger.kernel.org, Ira Weiny , Thomas Gleixner , Helge Deller , x86@kernel.org, linux-csky@vger.kernel.org, Ingo Molnar , linux-snps-arc@lists.infradead.org, linux-xtensa@linux-xtensa.org, Borislav Petkov , Andy Lutomirski , Dan Williams , linux-arm-kernel@lists.infradead.org, Chris Zankel , Thomas Bogendoerfer , linux-parisc@vger.kernel.org, linux-mips@vger.kernel.org, linuxppc-dev@lists.ozlabs.org, "David S. Miller" Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+infradead-linux-arm-kernel=archiver.kernel.org@lists.infradead.org From: Ira Weiny The kmap infrastructure has been copied almost verbatim to every architecture. This series consolidates obvious duplicated code. (k[un]map_atmoic has some additional duplication between some of the architectures but the differences were such to not warrant further changes.) 0day built successfully to cover all the architectures I can't readily build. Ira Weiny (5): arch/kmap: Remove BUG_ON() arch/kmap: Remove redundant arch specific kmaps arch/kunmap: Remove duplicate kunmap implementations arch/kmap_atomic: Consolidate duplicate code arch/kunmap_atomic: Consolidate duplicate code arch/arc/include/asm/highmem.h | 11 ------- arch/arc/mm/highmem.c | 20 ++----------- arch/arm/include/asm/highmem.h | 3 -- arch/arm/mm/highmem.c | 28 ++---------------- arch/csky/include/asm/highmem.h | 3 +- arch/csky/mm/highmem.c | 28 ++++-------------- arch/microblaze/include/asm/highmem.h | 17 ----------- arch/microblaze/mm/highmem.c | 10 ++----- arch/mips/include/asm/highmem.h | 3 +- arch/mips/mm/highmem.c | 25 +++------------- arch/nds32/include/asm/highmem.h | 3 -- arch/nds32/mm/highmem.c | 31 ++------------------ arch/parisc/include/asm/cacheflush.h | 2 -- arch/powerpc/include/asm/highmem.h | 17 ----------- arch/powerpc/mm/highmem.c | 9 ++---- arch/sparc/include/asm/highmem.h | 17 ----------- arch/sparc/mm/highmem.c | 9 ++---- arch/x86/include/asm/highmem.h | 4 --- arch/x86/mm/highmem_32.c | 30 ++------------------ arch/xtensa/include/asm/highmem.h | 14 +-------- arch/xtensa/mm/highmem.c | 10 ++----- include/linux/highmem.h | 41 +++++++++++++++++++++++++-- 22 files changed, 75 insertions(+), 260 deletions(-) -- 2.25.1 _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel