Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755951Ab1CGTrE (ORCPT ); Mon, 7 Mar 2011 14:47:04 -0500 Received: from e9.ny.us.ibm.com ([32.97.182.139]:43955 "EHLO e9.ny.us.ibm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755927Ab1CGTrD (ORCPT ); Mon, 7 Mar 2011 14:47:03 -0500 Subject: Re: [PATCH] hugetlb: /proc/meminfo shows data for all sizes of hugepages From: Dave Hansen To: Petr Holasek Cc: linux-kernel@vger.kernel.org, emunson@mgebm.net, anton@redhat.com, Andi Kleen , Naoya Horiguchi , Mel Gorman , Andrew Morton , Wu Fengguang , linux-mm@kvack.org In-Reply-To: <1299503155-6210-1-git-send-email-pholasek@redhat.com> References: <1299503155-6210-1-git-send-email-pholasek@redhat.com> Content-Type: text/plain; charset="ISO-8859-1" Date: Mon, 07 Mar 2011 11:46:54 -0800 Message-ID: <1299527214.8493.13263.camel@nimitz> Mime-Version: 1.0 X-Mailer: Evolution 2.30.3 Content-Transfer-Encoding: 7bit X-Content-Scanned: Fidelis XPS MAILER Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1864 Lines: 52 On Mon, 2011-03-07 at 14:05 +0100, Petr Holasek wrote: > + for_each_hstate(h) > + seq_printf(m, > + "HugePages_Total: %5lu\n" > + "HugePages_Free: %5lu\n" > + "HugePages_Rsvd: %5lu\n" > + "HugePages_Surp: %5lu\n" > + "Hugepagesize: %8lu kB\n", > + h->nr_huge_pages, > + h->free_huge_pages, > + h->resv_huge_pages, > + h->surplus_huge_pages, > + 1UL << (huge_page_order(h) + PAGE_SHIFT - 10)); > } It sounds like now we'll get a meminfo that looks like: ... AnonHugePages: 491520 kB HugePages_Total: 5 HugePages_Free: 2 HugePages_Rsvd: 3 HugePages_Surp: 1 Hugepagesize: 2048 kB HugePages_Total: 2 HugePages_Free: 1 HugePages_Rsvd: 1 HugePages_Surp: 1 Hugepagesize: 1048576 kB DirectMap4k: 12160 kB DirectMap2M: 2082816 kB DirectMap1G: 2097152 kB At best, that's a bit confusing. There aren't any other entries in meminfo that occur more than once. Plus, this information is available in the sysfs interface. Why isn't that sufficient? Could we do something where we keep the default hpage_size looking like it does now, but append the size explicitly for the new entries? HugePages_Total(1G): 2 HugePages_Free(1G): 1 HugePages_Rsvd(1G): 1 HugePages_Surp(1G): 1 -- Dave -- 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/