Re: [PATCH v2 1/4] cpupower-idle-info.1: fix short option names
From: Shuah Khan
Date: Wed Mar 11 2026 - 20:40:10 EST
On 3/11/26 17:32, Roberto Ricci wrote:
The cpupower-idle-info(1) man page describes '-f' as the short form of
the '--silent' option and '-e' as the short form of the '--proc' option.
But they are not correct:
$ cpupower idle-info -f
idle-info: invalid option -- 'f'
invalid or unknown argument
$ cpupower idle-info -e
idle-info: invalid option -- 'e'
invalid or unknown argument
The short form of '--silent' is actually '-s' and the short form of
'--proc' is actually 'o':
cpuidle-info.c:
{"silent", no_argument, NULL, 's'},
{"proc", no_argument, NULL, 'o'},
Fixes e7d85a934182d5bde1eea865169fbf2e0637a3ed ("cpupower: Add cpupower-idle-info manpage")
Signed-off-by: Roberto Ricci <io@xxxxxxxxxx>
It is odd that your patch v2s are showing up as responses.
Please send a proper patch so I can review - same comment
on the other 3 patches.
thanks,
-- Shuah