lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <20251016201051.67097-1-sj@kernel.org>
Date: Thu, 16 Oct 2025 13:10:51 -0700
From: SeongJae Park <sj@...nel.org>
To: Ye Liu <ye.liu@...ux.dev>
Cc: SeongJae Park <sj@...nel.org>,
	Andrew Morton <akpm@...ux-foundation.org>,
	Ye Liu <liuye@...inos.cn>,
	linux-mm@...ck.org,
	linux-kernel@...r.kernel.org
Subject: Re: [PATCH] tools/mm/page_owner_sort: add help option support

On Thu, 16 Oct 2025 13:49:25 +0800 Ye Liu <ye.liu@...ux.dev> wrote:

> From: Ye Liu <liuye@...inos.cn>
> 
> Add -h/--help option to display usage information and improve code style.

Looks good to me, though I have a trivial comment below.

> 
> Signed-off-by: Ye Liu <liuye@...inos.cn>
> ---
>  tools/mm/page_owner_sort.c | 10 +++++++---
>  1 file changed, 7 insertions(+), 3 deletions(-)
> 
> diff --git a/tools/mm/page_owner_sort.c b/tools/mm/page_owner_sort.c
> index 880e36df0c11..202eafed66a9 100644
> --- a/tools/mm/page_owner_sort.c
> +++ b/tools/mm/page_owner_sort.c
> @@ -669,14 +669,15 @@ int main(int argc, char **argv)
>  		{ "pid", required_argument, NULL, 1 },
>  		{ "tgid", required_argument, NULL, 2 },
>  		{ "name", required_argument, NULL, 3 },
> -		{ "cull",  required_argument, NULL, 4 },
> -		{ "sort",  required_argument, NULL, 5 },
> +		{ "cull", required_argument, NULL, 4 },
> +		{ "sort", required_argument, NULL, 5 },

Seems unnecessary changes.

> +		{ "help", no_argument, NULL, 'h' },
>  		{ 0, 0, 0, 0},
>  	};
>  
>  	compare_flag = COMP_NO_FLAG;
>  
> -	while ((opt = getopt_long(argc, argv, "admnpstP", longopts, NULL)) != -1)
> +	while ((opt = getopt_long(argc, argv, "admnpstPh", longopts, NULL)) != -1)
>  		switch (opt) {
>  		case 'a':
>  			compare_flag |= COMP_ALLOC;
> @@ -702,6 +703,9 @@ int main(int argc, char **argv)
>  		case 'n':
>  			compare_flag |= COMP_COMM;
>  			break;
> +		case 'h':
> +			usage();
> +			exit(0);
>  		case 1:
>  			filter = filter | FILTER_PID;
>  			fc.pids = parse_nums_list(optarg, &fc.pids_size);
> -- 
> 2.43.0

If you remove the unnecessary changes, please feel free to add below:

Reviewed-by: SeongJae Park <sj@...nel.org>


Thanks,
SJ

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ