The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Andrew Morton <akpm@linux-foundation.org>
To: Zhen Ni <zhen.ni@easystack.cn>
Cc: vbabka@kernel.org, surenb@google.com, mhocko@suse.com,
	jackmanb@google.com, hannes@cmpxchg.org, ziy@nvidia.com,
	linux-mm@kvack.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v5 1/3] mm/page_owner: add print_mode filter
Date: Fri, 8 May 2026 14:13:51 -0700	[thread overview]
Message-ID: <20260508141351.00cb6e81cf547ab2cff655c7@linux-foundation.org> (raw)
In-Reply-To: <20260507064643.179187-2-zhen.ni@easystack.cn>

On Thu,  7 May 2026 14:46:41 +0800 Zhen Ni <zhen.ni@easystack.cn> wrote:

> Add a print_mode filter to page_owner that allows users to choose between
> printing full stack traces or only stack handles, significantly reducing
> output size for debugging and analysis.
> 
> The filter provides a string-based interface under
> /sys/kernel/debug/page_owner_filter/:
> - Reading shows the current mode with [] brackets around active option
> - Writing accepts "full_stack" or "stack_handle" strings
> 
> The default full_stack mode maintains backward compatibility with existing
> usage, displaying complete stack traces for each page allocation.
> 
> The stack_handle mode dramatically reduces log size by showing only
> the handle number instead of the full stack trace. The mapping from
> handles to actual stack traces can be obtained via the
> show_stacks_handles interface.
> 
> Example usage:
>   # echo stack_handle > /sys/kernel/debug/page_owner_filter/print_mode
>   # cat /sys/kernel/debug/page_owner_filter/print_mode
>   full_stack [stack_handle]
>   # cat /sys/kernel/debug/page_owner
>   Page allocated via order 0, migratetype Unmovable, gfp_mask 0x1100ca,
>   pid 1, tgid 1 (systemd), ts 123456789 ns
>   PFN 0x1000 type Unmovable Block 1 type Unmovable
>   Flags 0x3fffe800000084(referenced|lru|active|private|node=0|zone=1)
>   handle: 17432583
>   ...

I like the example.  But what is the user to do with `handle'?  Perhaps
expand this example to cover looking up that stack in
/sys/kernel/debug/page_owner_stacks/show_stacks_handles?

> --- a/mm/page_owner.c
> +++ b/mm/page_owner.c
>
> ...
>
> +static ssize_t print_mode_write(struct file *file,
> +				 const char __user *buf,
> +				 size_t count, loff_t *ppos)
> +{
> +	char *kbuf;
> +	int mode;
> +	int ret = count;
> +
> +	/*
> +	 * Limit input size. Maximum valid input is "stack_handle" (12 chars)
> +	 * plus newline and null terminator. Use 32 bytes as a reasonable limit.
> +	 */
> +	if (count > 32)
> +		return -EINVAL;
> +
> +	kbuf = kmalloc(count + 1, GFP_KERNEL);

This is bikeshedding, but...

Why kmalloc this when we know it's <= 32 bytes?  A local array...

> +	if (!kbuf)
> +		return -ENOMEM;
> +
> +	if (strncpy_from_user(kbuf, buf, count) < 0) {
> +		ret = -EFAULT;
> +		goto out_free;
> +	}
> +	kbuf[count] = '\0';
> +
> +	mode = sysfs_match_string(page_owner_print_mode_strings, kbuf);
> +	if (mode < 0) {
> +		ret = -EINVAL;
> +		goto out_free;
> +	}
> +
> +	WRITE_ONCE(owner_filter.print_mode, mode);
> +
> +out_free:
> +	kfree(kbuf);
> +	return ret;
> +}

print_mode_write() seems a lot of work to get a simple string from
userspace!

> 
> ...
>

  reply	other threads:[~2026-05-08 21:13 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-05-07  6:46 [PATCH v5 0/3] mm/page_owner: add filter infrastructure for print_mode and NUMA filtering Zhen Ni
2026-05-07  6:46 ` [PATCH v5 1/3] mm/page_owner: add print_mode filter Zhen Ni
2026-05-08 21:13   ` Andrew Morton [this message]
2026-05-09  0:29   ` SeongJae Park
2026-05-09  6:54     ` zhen.ni
2026-05-07  6:46 ` [PATCH v5 2/3] mm/page_owner: add NUMA node filter with nodelist support Zhen Ni
2026-05-09  0:44   ` SeongJae Park
2026-05-09  7:27     ` zhen.ni
2026-05-09 15:35       ` SeongJae Park
2026-05-07  6:46 ` [PATCH v5 3/3] mm/page_owner: document page_owner filter features Zhen Ni
2026-05-09  0:51   ` SeongJae Park

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=20260508141351.00cb6e81cf547ab2cff655c7@linux-foundation.org \
    --to=akpm@linux-foundation.org \
    --cc=hannes@cmpxchg.org \
    --cc=jackmanb@google.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mhocko@suse.com \
    --cc=surenb@google.com \
    --cc=vbabka@kernel.org \
    --cc=zhen.ni@easystack.cn \
    --cc=ziy@nvidia.com \
    /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