linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: Roman Gushchin <guro@fb.com>
To: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>
Cc: "linux-mm@kvack.org" <linux-mm@kvack.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH RFC] proc/meminfo: add KernelMisc counter
Date: Thu, 16 May 2019 17:59:16 +0000	[thread overview]
Message-ID: <20190516175912.GA32262@tower.DHCP.thefacebook.com> (raw)
In-Reply-To: <155792098821.1536.17069603544573830315.stgit@buzz>

On Wed, May 15, 2019 at 02:49:48PM +0300, Konstantin Khlebnikov wrote:
> Some kernel memory allocations are not accounted anywhere.
> This adds easy-read counter for them by subtracting all tracked kinds.
> 
> Signed-off-by: Konstantin Khlebnikov <khlebnikov@yandex-team.ru>

We have something similar in userspace, and it was very useful several times.
In our case, it was mostly vmallocs and percpu stuff (which are now shown
in meminfo), but for sure there are other memory users who are not.

I don't particularly like the proposed name, but have no better ideas.
It's really a gray area, everything we know, it's that the memory is occupied
by something.

> ---
>  Documentation/filesystems/proc.txt |    2 ++
>  fs/proc/meminfo.c                  |   41 +++++++++++++++++++++++++-----------
>  2 files changed, 30 insertions(+), 13 deletions(-)
> 
> diff --git a/Documentation/filesystems/proc.txt b/Documentation/filesystems/proc.txt
> index 66cad5c86171..f11ce167124c 100644
> --- a/Documentation/filesystems/proc.txt
> +++ b/Documentation/filesystems/proc.txt
> @@ -891,6 +891,7 @@ VmallocTotal:   112216 kB
>  VmallocUsed:       428 kB
>  VmallocChunk:   111088 kB
>  Percpu:          62080 kB
> +KernelMisc:     212856 kB
>  HardwareCorrupted:   0 kB
>  AnonHugePages:   49152 kB
>  ShmemHugePages:      0 kB
> @@ -988,6 +989,7 @@ VmallocTotal: total size of vmalloc memory area
>  VmallocChunk: largest contiguous block of vmalloc area which is free
>        Percpu: Memory allocated to the percpu allocator used to back percpu
>                allocations. This stat excludes the cost of metadata.
> +  KernelMisc: All other kinds of kernel memory allocaitons
                                                       ^^^
						       typo
>  
>  ..............................................................................
>  
> diff --git a/fs/proc/meminfo.c b/fs/proc/meminfo.c
> index 568d90e17c17..7bc14716fc5d 100644
> --- a/fs/proc/meminfo.c
> +++ b/fs/proc/meminfo.c
> @@ -38,15 +38,21 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
>  	long cached;
>  	long available;
>  	unsigned long pages[NR_LRU_LISTS];
> -	unsigned long sreclaimable, sunreclaim;
> +	unsigned long sreclaimable, sunreclaim, misc_reclaimable;
> +	unsigned long kernel_stack_kb, page_tables, percpu_pages;
> +	unsigned long anon_pages, file_pages, swap_cached;
> +	long kernel_misc;
>  	int lru;
>  
>  	si_meminfo(&i);
>  	si_swapinfo(&i);
>  	committed = percpu_counter_read_positive(&vm_committed_as);
>  
> -	cached = global_node_page_state(NR_FILE_PAGES) -
> -			total_swapcache_pages() - i.bufferram;
> +	anon_pages = global_node_page_state(NR_ANON_MAPPED);
> +	file_pages = global_node_page_state(NR_FILE_PAGES);
> +	swap_cached = total_swapcache_pages();
> +
> +	cached = file_pages - swap_cached - i.bufferram;
>  	if (cached < 0)
>  		cached = 0;
>  
> @@ -56,13 +62,25 @@ static int meminfo_proc_show(struct seq_file *m, void *v)
>  	available = si_mem_available();
>  	sreclaimable = global_node_page_state(NR_SLAB_RECLAIMABLE);
>  	sunreclaim = global_node_page_state(NR_SLAB_UNRECLAIMABLE);
> +	misc_reclaimable = global_node_page_state(NR_KERNEL_MISC_RECLAIMABLE);
> +	kernel_stack_kb = global_zone_page_state(NR_KERNEL_STACK_KB);
> +	page_tables = global_zone_page_state(NR_PAGETABLE);
> +	percpu_pages = pcpu_nr_pages();
> +
> +	/* all other kinds of kernel memory allocations */
> +	kernel_misc = i.totalram - i.freeram - anon_pages - file_pages
> +		      - sreclaimable - sunreclaim - misc_reclaimable
> +		      - (kernel_stack_kb >> (PAGE_SHIFT - 10))
> +		      - page_tables - percpu_pages;
> +	if (kernel_misc < 0)
> +		kernel_misc = 0;

Hm, why? Is there any realistic scenario (not caused by the kernel doing
the memory accounting wrong) when it's negative?

Maybe it's better to show it as it is, if it's negative? Because
it might be a good indication that something's wrong with some of
the counters.

Thanks!


  reply	other threads:[~2019-05-16 17:59 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-05-15 11:49 Konstantin Khlebnikov
2019-05-16 17:59 ` Roman Gushchin [this message]
2019-05-17 11:42   ` Konstantin Khlebnikov

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190516175912.GA32262@tower.DHCP.thefacebook.com \
    --to=guro@fb.com \
    --cc=khlebnikov@yandex-team.ru \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox