Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752335AbbBSIZX (ORCPT ); Thu, 19 Feb 2015 03:25:23 -0500 Received: from cantor2.suse.de ([195.135.220.15]:51737 "EHLO mx2.suse.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751375AbbBSIZW (ORCPT ); Thu, 19 Feb 2015 03:25:22 -0500 Message-ID: <54E59DEF.2020807@suse.cz> Date: Thu, 19 Feb 2015 09:25:19 +0100 From: Vlastimil Babka User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.4.0 MIME-Version: 1.0 To: Rik van Riel , Andrew Morton , Ebru Akagunduz CC: linux-mm@kvack.org, kirill@shutemov.name, mhocko@suse.cz, mgorman@suse.de, rientjes@google.com, sasha.levin@oracle.com, hughd@google.com, hannes@cmpxchg.org, linux-kernel@vger.kernel.org, aarcange@redhat.com Subject: Re: [PATCH v2] mm: incorporate zero pages into transparent huge pages References: <1423688635-4306-1-git-send-email-ebru.akagunduz@gmail.com> <20150218153119.0bcd0bf8b4e7d30d99f00a3b@linux-foundation.org> <54E5296C.5040806@redhat.com> In-Reply-To: <54E5296C.5040806@redhat.com> Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1872 Lines: 44 On 02/19/2015 01:08 AM, Rik van Riel wrote: > On 02/18/2015 06:31 PM, Andrew Morton wrote: >> On Wed, 11 Feb 2015 23:03:55 +0200 Ebru Akagunduz >> wrote: > >>> This patch improves THP collapse rates, by allowing zero pages. >>> >>> Currently THP can collapse 4kB pages into a THP when there are up >>> to khugepaged_max_ptes_none pte_none ptes in a 2MB range. This >>> patch counts pte none and mapped zero pages with the same >>> variable. > >> So if I'm understanding this correctly, with the default value of >> khugepaged_max_ptes_none (HPAGE_PMD_NR-1), if an application >> creates a 2MB area which contains 511 mappings of the zero page and >> one real page, the kernel will proceed to turn that area into a >> real, physical huge page. So it consumes 2MB of memory which would >> not have previously been allocated? > > This is equivalent to an application doing a write fault > to a 2MB area that was previously untouched, going into > do_huge_pmd_anonymous_page() and receiving a 2MB page. > >> If so, this might be rather undesirable behaviour in some >> situations (and ditto the current behaviour for pte_none ptes)? > >> This can be tuned by adjusting khugepaged_max_ptes_none, > > The example of directly going into do_huge_pmd_anonymous_page() > is not influenced by the tunable. > > It may indeed be undesirable in some situations, but I am > not sure how to detect those... Well, yeah. We seem to lack a setting to restrict page fault THP allocations to e.g. madvise, while still letting khugepaged to collapse them later, taking khugepaged_max_ptes_none into account. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/