Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752382AbeAQJQF (ORCPT + 1 other); Wed, 17 Jan 2018 04:16:05 -0500 Received: from mx2.suse.de ([195.135.220.15]:33938 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750861AbeAQJQD (ORCPT ); Wed, 17 Jan 2018 04:16:03 -0500 Subject: Re: [RFC] mm: why vfree() do not free page table memory? To: Xishi Qiu , Michal Hocko , Mel Gorman Cc: LKML , Linux MM , "Wujiangtao (A)" References: <5A4603AB.8060809@huawei.com> From: Vlastimil Babka Message-ID: <0ffd113e-84da-bd49-2b63-3d27d2702580@suse.cz> Date: Wed, 17 Jan 2018 10:16:01 +0100 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: <5A4603AB.8060809@huawei.com> Content-Type: text/plain; charset=utf-8 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 Return-Path: On 12/29/2017 09:58 AM, Xishi Qiu wrote: > When calling vfree(), it calls unmap_vmap_area() to clear page table, > but do not free the memory of page table, why? just for performance? I guess it's expected that the free virtual range and associated page tables it might be reused later. > If a driver use vmalloc() and vfree() frequently, we will lost much > page table memory, maybe oom later. If it's reused, then not really. Did you notice an actual issue, or is this just theoretical concern. > Thanks, > Xishi Qiu >