From nobody Fri Apr 3 04:33:30 2026 Received: from out-177.mta0.migadu.com (out-177.mta0.migadu.com [91.218.175.177]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 62C4537EFE7 for ; Tue, 24 Mar 2026 22:40:49 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.177 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392050; cv=none; b=fJVkJCDSnwpHtMHTraqsGS/hwyKBITSfQRvPvrF1XQhEXkR6TsonR3/88cFnL9ImjBT7I8QtcMp1hsQZlvnajpa0+Lx76CGOMyRcjWtxKHMJeB+6srdAxVle/gkDk8pzp8ZiAIWHkaLv17Q1eQM71jHiVMx5pHLmD7OjWbqeX8E= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392050; c=relaxed/simple; bh=Y5BcBGtNUQLVYQs3QRDux4aVEbLP0dNAyrhRkmk5nfU=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=fToZGEJCOoYj9rok1arigQFKWnVwKy5xcxWWUzp6YUq/l3ImoQwQMfPqQbtenN4WGrXwi/hvGENA9/kmQqPJC0lXXOzXCHr00XSyb+FumImlAon/gpMo0XVYT6mSM/PFbd+iQdNY3md83t4e9+B3g56JYP8RU3kvqtBCmf4PCO0= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=r-ricci.it; spf=pass smtp.mailfrom=r-ricci.it; dkim=pass (2048-bit key) header.d=r-ricci.it header.i=@r-ricci.it header.b=hZ1K+n94; arc=none smtp.client-ip=91.218.175.177 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=r-ricci.it Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=r-ricci.it Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=r-ricci.it header.i=@r-ricci.it header.b="hZ1K+n94" X-Report-Abuse: Please report any abuse attempt to abuse@migadu.com and include these headers. DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=r-ricci.it; s=key1; t=1774392047; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=v+yK+9OINSKQwlx/h5ZhN8aAxMviN5G+FIJiHwexRSI=; b=hZ1K+n94AZGmvprr0sVQ6IlfaOacJjbYtcx9FzX1GM+0ZxbjVonDCk/mJyBCYCbq2LRZ81 QGEo64C+SK3z3EDMZaRcuCC3l15lWhWTqwl56ReYHWUKlBQ6dd7Z9E3auHf3C9nbuskx2n Cr2vN+Lux4qO0Wl+0LFTxgknogYvF4iCdAVsqhw0MBaM1E5Z5hsexzv9+m7IofOeHr57In TfVh+gNNQBqFv2xcPB/nDcscvhVGBYu8f6yX+nMlpJ4oE3/VM9G+vuPdPe51DzXNSK39Jn 5JULchJRihd6ssQ4o6HZj05WSaap6t166LAp2xKOddPqBOlZqyL526OlzHia1A== From: Roberto Ricci To: Thomas Renninger , Shuah Khan , "John B. Wyatt IV" , John Kacur , linux-pm@vger.kernel.org, linux-kernel@vger.kernel.org Cc: Roberto Ricci Subject: [PATCH v5 1/4] cpupower-idle-info.1: fix short option names Date: Tue, 24 Mar 2026 23:39:01 +0100 Message-ID: <20260324223921.14317-2-io@r-ricci.it> In-Reply-To: <20260324223921.14317-1-io@r-ricci.it> References: <20260324223921.14317-1-io@r-ricci.it> Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable X-Migadu-Flow: FLOW_OUT Content-Type: text/plain; charset="utf-8" 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'}, Signed-off-by: Roberto Ricci --- tools/power/cpupower/man/cpupower-idle-info.1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/power/cpupower/man/cpupower-idle-info.1 b/tools/power/cp= upower/man/cpupower-idle-info.1 index 20b6345c53ad..b2f92aba5f5b 100644 --- a/tools/power/cpupower/man/cpupower-idle-info.1 +++ b/tools/power/cpupower/man/cpupower-idle-info.1 @@ -11,10 +11,10 @@ A tool which prints out per cpu idle information helpfu= l to developers and inter .SH "OPTIONS" .LP .TP -\fB\-f\fR \fB\-\-silent\fR +\fB\-s\fR \fB\-\-silent\fR Only print a summary of all available C-states in the system. .TP -\fB\-e\fR \fB\-\-proc\fR +\fB\-o\fR \fB\-\-proc\fR deprecated. Prints out idle information in old /proc/acpi/processor/*/power format. Th= is interface has been removed from the kernel for quite some time, do not let --=20 2.53.0