From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754204AbeDMKRK (ORCPT ); Fri, 13 Apr 2018 06:17:10 -0400 Received: from smtp.codeaurora.org ([198.145.29.96]:35864 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753112AbeDMKRI (ORCPT ); Fri, 13 Apr 2018 06:17:08 -0400 DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org A03EF6076C Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=codeaurora.org Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=cpandya@codeaurora.org Subject: Re: [PATCH] mm: vmalloc: Remove double execution of vunmap_page_range To: Anshuman Khandual , vbabka@suse.cz, labbott@redhat.com, catalin.marinas@arm.com, hannes@cmpxchg.org, f.fainelli@gmail.com, xieyisheng1@huawei.com, ard.biesheuvel@linaro.org, richard.weiyang@gmail.com, byungchul.park@lge.com Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org References: <1523611019-17679-1-git-send-email-cpandya@codeaurora.org> From: Chintan Pandya Message-ID: <8da9f826-2a3d-e618-e512-4fc8d45c16f2@codeaurora.org> Date: Fri, 13 Apr 2018 15:47:02 +0530 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.7.0 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=windows-1252; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 4/13/2018 3:29 PM, Anshuman Khandual wrote: > On 04/13/2018 02:46 PM, Chintan Pandya wrote: >> Unmap legs do call vunmap_page_range() irrespective of >> debug_pagealloc_enabled() is enabled or not. So, remove >> redundant check and optional vunmap_page_range() routines. > > vunmap_page_range() tears down the page table entries and does > not really flush related TLB entries normally unless page alloc > debug is enabled where it wants to make sure no stale mapping is > still around for debug purpose. Deferring TLB flush improves > performance. This patch will force TLB flush during each page > table tear down and hence not desirable. > Deferred TLB invalidation will surely improve performance. But force flush can help in detecting invalid access right then and there. I chose later. May be I should have clean up the vmap tear down code as well where it actually does the TLB invalidation. Or make TLB invalidation in free_unmap_vmap_area() be dependent upon debug_pagealloc_enabled(). Chintan -- Qualcomm India Private Limited, on behalf of Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum, a Linux Foundation Collaborative Project