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=-5.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_PASS,USER_AGENT_MUTT 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 1C81DC43381 for ; Tue, 19 Feb 2019 12:47:37 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id DDC6B2146E for ; Tue, 19 Feb 2019 12:47:36 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728534AbfBSMrf (ORCPT ); Tue, 19 Feb 2019 07:47:35 -0500 Received: from foss.arm.com ([217.140.101.70]:44852 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728160AbfBSMrd (ORCPT ); Tue, 19 Feb 2019 07:47:33 -0500 Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.72.51.249]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 1488AEBD; Tue, 19 Feb 2019 04:47:33 -0800 (PST) Received: from fuggles.cambridge.arm.com (usa-sjc-imap-foss1.foss.arm.com [10.72.51.249]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 2434B3F720; Tue, 19 Feb 2019 04:47:31 -0800 (PST) Date: Tue, 19 Feb 2019 12:47:28 +0000 From: Will Deacon To: Peter Zijlstra Cc: aneesh.kumar@linux.vnet.ibm.com, akpm@linux-foundation.org, npiggin@gmail.com, linux-arch@vger.kernel.org, linux-mm@kvack.org, linux-kernel@vger.kernel.org, linux@armlinux.org.uk, heiko.carstens@de.ibm.com, riel@surriel.com, Tony Luck Subject: Re: [PATCH v6 09/18] ia64/tlb: Conver to generic mmu_gather Message-ID: <20190219124728.GC8501@fuggles.cambridge.arm.com> References: <20190219103148.192029670@infradead.org> <20190219103233.383087152@infradead.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190219103233.383087152@infradead.org> User-Agent: Mutt/1.11.1+86 (6f28e57d73f2) () Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 19, 2019 at 11:31:57AM +0100, Peter Zijlstra wrote: > Generic mmu_gather provides everything ia64 needs (range tracking). > > Cc: Will Deacon > Cc: "Aneesh Kumar K.V" > Cc: Andrew Morton > Cc: Nick Piggin > Cc: Tony Luck > Signed-off-by: Peter Zijlstra (Intel) > --- > arch/ia64/include/asm/tlb.h | 256 --------------------------------------- > arch/ia64/include/asm/tlbflush.h | 25 +++ > arch/ia64/mm/tlb.c | 23 +++ > 3 files changed, 47 insertions(+), 257 deletions(-) Typo in subject (s/Conver/Convert) but other than that this looks sensible: Acked-by: Will Deacon Will