Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753949AbbDHUTd (ORCPT ); Wed, 8 Apr 2015 16:19:33 -0400 Received: from mail-ob0-f182.google.com ([209.85.214.182]:34188 "EHLO mail-ob0-f182.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753000AbbDHUTa (ORCPT ); Wed, 8 Apr 2015 16:19:30 -0400 Date: Wed, 8 Apr 2015 15:19:26 -0500 From: Shawn Bohrer To: Davidlohr Bueso Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org Subject: Re: HugePages_Rsvd leak Message-ID: <20150408201926.GB29546@sbohrermbp13-local.rgmadvisors.com> References: <20150408161539.GA29546@sbohrermbp13-local.rgmadvisors.com> <1428521343.11099.4.camel@stgolabs.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1428521343.11099.4.camel@stgolabs.net> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 3635 Lines: 111 On Wed, Apr 08, 2015 at 12:29:03PM -0700, Davidlohr Bueso wrote: > On Wed, 2015-04-08 at 11:15 -0500, Shawn Bohrer wrote: > > AnonHugePages: 241664 kB > > HugePages_Total: 512 > > HugePages_Free: 512 > > HugePages_Rsvd: 384 > > HugePages_Surp: 0 > > Hugepagesize: 2048 kB > > > > So here I have 384 pages reserved and I can't find anything that is > > using them. > > The output clearly shows all available hugepages are free, Why are you > assuming that reserved implies allocated/in use? This is not true, > please read one of the millions of docs out there -- you can start with: > https://www.kernel.org/doc/Documentation/vm/hugetlbpage.txt As that fine document states: HugePages_Rsvd is short for "reserved," and is the number of huge pages for which a commitment to allocate from the pool has been made, but no allocation has yet been made. Reserved huge pages guarantee that an application will be able to allocate a huge page from the pool of huge pages at fault time. Thus in my example above while I have 512 pages free 384 are reserved and therefore if a new application comes along it can only reserve/use the remaining 128 pages. For example: [scratch]$ grep Huge /proc/meminfo AnonHugePages: 0 kB HugePages_Total: 1 HugePages_Free: 1 HugePages_Rsvd: 0 HugePages_Surp: 0 Hugepagesize: 2048 kB [scratch]$ cat map_hugetlb.c #include #include #include #include #define LENGTH (2UL*1024*1024) #define PROTECTION (PROT_READ | PROT_WRITE) #define ADDR (void *)(0x0UL) #define FLAGS (MAP_PRIVATE | MAP_ANONYMOUS | MAP_HUGETLB) int main(void) { void *addr; addr = mmap(ADDR, LENGTH, PROTECTION, FLAGS, 0, 0); if (addr == MAP_FAILED) { perror("mmap"); exit(1); } getchar(); munmap(addr, LENGTH); return 0; } [scratch]$ make map_hugetlb cc map_hugetlb.c -o map_hugetlb [scratch]$ ./map_hugetlb & [1] 7359 [1]+ Stopped ./map_hugetlb [scratch]$ grep Huge /proc/meminfo AnonHugePages: 0 kB HugePages_Total: 1 HugePages_Free: 1 HugePages_Rsvd: 1 HugePages_Surp: 0 Hugepagesize: 2048 kB [scratch]$ ./map_hugetlb mmap: Cannot allocate memory As you can see I still have 1 huge page free but that one huge page is reserved by PID 7358. If I then try to run a new map_hugetlb process the mmap fails because even though I have 1 page free it is reserved. Furthermore we can find that 7358 has that page in the following ways: [scratch]$ sudo grep "KernelPageSize:.*2048" /proc/*/smaps /proc/7359/smaps:KernelPageSize: 2048 kB [scratch]$ sudo grep "VmFlags:.*ht" /proc/*/smaps /proc/7359/smaps:VmFlags: rd wr mr mw me de ht sd [scratch]$ sudo grep -w huge /proc/*/numa_maps /proc/7359/numa_maps:7f3233000000 default file=/anon_hugepage\040(deleted) huge Which leads back to my original question. I have machines that have a non-zero HugePages_Rsvd count but I cannot find any processes that seem to have those pages reserved using the three methods shown above. Is there some other way to identify which process has those pages reserved? Or is there possibly a leak which is failing to decrement the reserve count? Thanks, Shawn -- 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/