From nobody Fri Apr 3 03:01:28 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 From nobody Fri Apr 3 03:01:28 2026 Received: from out-182.mta0.migadu.com (out-182.mta0.migadu.com [91.218.175.182]) (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 A9B7A370D5F for ; Tue, 24 Mar 2026 22:40:52 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.182 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392056; cv=none; b=g+Lpr7bpFtfNb3/zWlrUxVWYgRZvAObttaJdkAGVWp4RaqqR2lZr/DaSju+q0TFPfGP4H52q/dEW72aLPyuS82+OFfD1gGxrLvu+G9X6wtWe7a7tEH3zkWUfvx8zV+VWhN+IQMk9JJokCmKUrxqfvefljJ2SpwnhwPRufWg2cuY= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392056; c=relaxed/simple; bh=a2mqwOFJ2nF2nsLyaAKHrVZJrRNEwH5GrtyyVfV8EEI=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=kbmCZJZB5x6ppZuPUvi9wti528vWawcp+UpEb3Afo4237Z44YN3ll6PcMAR4PUUvONI8tqzCh2Ep5fX7Q02upYBoZRcAZuEzl/9aK24nX8Sw1o1os/nA3pfKPmKC3/Zds3fU+xUtCBq8gr+8NAIpen/T69HUw07oTVhWZeUcN68= 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=X3/0EGel; arc=none smtp.client-ip=91.218.175.182 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="X3/0EGel" 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=1774392051; 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=BrBIR+Ywcksbmd2rSJersbN+vcoXft4ANLyGK0uIq9Q=; b=X3/0EGel7iJ3PU9JXFdJK88VVKAlEtqxo6uFtc8BBU+tzSlHHmNoXf54nMAmEk48j88wtR zuKnyHK5Rjk0YKwGjUATTRA7TJA865g4bcRf3jllR4wEQZSPeKKuTwI9fKAhbKRodyYTla XRPkGa5rs+oin82ZZhbJtaTIJUCcJLmVcR5x/LsiCfTgsOOWCY5jcgjkDZRZc2mtSRucu0 5TfwjT8+tt8X3qjm0tR+8LbpIri7YPe8yLv0+NWL3BzRYWEJcOwtK1mlG90idnbhLVXc7T pDtHDlb5MA+gGV/6SgSD4mUC/PywZ9KafboWDO3SfXfRF8IEMo+Kz/sAScpJYw== 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 2/4] cpupower-frequency-info.1: use the proper name of the --perf option Date: Tue, 24 Mar 2026 23:39:02 +0100 Message-ID: <20260324223921.14317-3-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-frequency-info(1) man page describes a '--perf' option. Even though this form is accepted by the program, its proper name is '--performance'. cpufreq-info.c: {"performance", no_argument, NULL, 'c'}, Signed-off-by: Roberto Ricci --- tools/power/cpupower/man/cpupower-frequency-info.1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/power/cpupower/man/cpupower-frequency-info.1 b/tools/pow= er/cpupower/man/cpupower-frequency-info.1 index 47fdd7218748..1173d4f31e69 100644 --- a/tools/power/cpupower/man/cpupower-frequency-info.1 +++ b/tools/power/cpupower/man/cpupower-frequency-info.1 @@ -53,7 +53,7 @@ human\-readable output for the \-f, \-w, \-s and \-y para= meters. \fB\-n\fR \fB\-\-no-rounding\fR Output frequencies and latencies without rounding off values. .TP =20 -\fB\-c\fR \fB\-\-perf\fR +\fB\-c\fR \fB\-\-performance\fR Get performances and frequencies capabilities of CPPC, by reading it from = hardware (only available on the hardware with CPPC). .TP .SH "REMARKS" --=20 2.53.0 From nobody Fri Apr 3 03:01:28 2026 Received: from out-171.mta0.migadu.com (out-171.mta0.migadu.com [91.218.175.171]) (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 0FB1737F8A9 for ; Tue, 24 Mar 2026 22:40:54 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.171 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392057; cv=none; b=ifHqWzUYC8SbkQsPyZf427WHa9Ib6hHfMNkcvYOjTIENRgbzD9scqmtKonuTju0xzlZDtiNoxr/AbCzDRPXIOwlQW7qFn5b3Lc3X0go1rGFG2Rc59tPzHxStjfV1bzTZgL23FX7FWfNK9UnP8n2t/UqpIKbWQLUf9nirXOGBcis= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392057; c=relaxed/simple; bh=2UFRZFYy9T7eGDsgUZwk9KPZ3EHFBhaPmr0uoLRCdoY=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=WxJriSYUHZ/XDbxRcSqE6Jjt42vDXBV+l+5PBU4a0sQcDEprq4edRImzcSOts2I3p/Ezksr72PaSi/6xlFtjdUFL6WfhyfWRP5EsvuRZUITXcespEFJBPf6lSpY+1EOtjKF9KBMev99SFHZGdvX1YenvGo3X04qkGdX2EW4bJo8= 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=wDRuYp0A; arc=none smtp.client-ip=91.218.175.171 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="wDRuYp0A" 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=1774392053; 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=QVu83NgSB5chJ/xrN7IzHb2wcuwckFdNqtyOmrtAXns=; b=wDRuYp0A30DQ+M1XwpdphuUpV8/c/ke02dJtbh4AB6HtAZMdfVfwcvoxn5WW1n9Tfwz/Oe Sm90ZZb/aCyrZ8Rt+GJEWIeQnmoT0fqa2D3pINLRohvACPr0bRmoQOINv/TDe3dIn85j1N 89Ga+6dvfuaXwgDOGPns8Rc+9bPuc5JjLTrnSJAvro8dEl13xXkG/Wh2JpjFe5cbYeYhm1 PJQPKiJM9UgmmbNSBnh3RvS4MnZ68Z98gwY0Yd97f7T63PHW14cbe3JhO67ayetS0dF6KY GsVAgaF3HIY48Oh5PAP/NuBaO8eTD6iey0mZthUR1Sx+pspnQ0nc+iHUUV2ouA== 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 3/4] cpupower-frequency-info.1: document --boost and --epp options Date: Tue, 24 Mar 2026 23:39:03 +0100 Message-ID: <20260324223921.14317-4-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" `cpupower frequency-info` supports the '--boost' option since the program was first added with commit 7fe2f6399a84 ("cpupowerutils - cpufrequtils extended with quite some features"), but the man page lacks it. '--epp' has been added with commit 5f567afc283f ("cpupower: Add support for showing energy performance preference") but it has never been added to the man page. cpufreq-info.c: {"boost", no_argument, NULL, 'b'}, ... {"epp", no_argument, NULL, 'z'}, Signed-off-by: Roberto Ricci --- tools/power/cpupower/man/cpupower-frequency-info.1 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tools/power/cpupower/man/cpupower-frequency-info.1 b/tools/pow= er/cpupower/man/cpupower-frequency-info.1 index 1173d4f31e69..b0d69c9adcbd 100644 --- a/tools/power/cpupower/man/cpupower-frequency-info.1 +++ b/tools/power/cpupower/man/cpupower-frequency-info.1 @@ -32,6 +32,12 @@ Gets the currently used cpufreq policy. \fB\-g\fR \fB\-\-governors\fR Determines available cpufreq governors. .TP =20 +\fB\-b\fR \fB\-\-boost\fR +Gets the current boost state support. +.TP +\fB\-z\fR \fB\-\-epp\fR +Gets the current EPP (energy performance preference). +.TP \fB\-r\fR \fB\-\-related\-cpus\fR Determines which CPUs run at the same hardware frequency. .TP =20 --=20 2.53.0 From nobody Fri Apr 3 03:01:28 2026 Received: from out-185.mta0.migadu.com (out-185.mta0.migadu.com [91.218.175.185]) (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 C1E4B38F635 for ; Tue, 24 Mar 2026 22:40:56 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=91.218.175.185 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392058; cv=none; b=oi+G1PCfX1qkpzbgeIVEZd5APhNtTJIdPzRl+5B/EWSu4GI1It4f1lGMWDYlJ/jhXXB6aEl6w1RI+GzDvKPwUraizLpaiLu9AiVEOuRbxdrzJSYADahFZqdGHuYnyQbf453VQGjwYYNIvnhK4qPe/3b3qyBrhdoU3VmyjJDB2yg= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1774392058; c=relaxed/simple; bh=J5ORqVEz6qi+oGhAaSzznlsIVkHuhlRydngEq/1lRXk=; h=From:To:Cc:Subject:Date:Message-ID:In-Reply-To:References: MIME-Version; b=KEDFvl3J6pBcUdLco5yDTQoHFparswU6sAzIcyBwbhLVf56CKpGACjvxrNSHYcs5r6ZJn+vARN7SRAQ+dyGFd4lv1uOYVP67QrWz4H4QVr4cBCKkU/GqVeVPYbTDVbD2/RaYCM7HEiHkNztOj4K2mUU3eveT8ni7lxrITxfmhH4= 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=wosDFaDU; arc=none smtp.client-ip=91.218.175.185 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="wosDFaDU" 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=1774392055; 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=rqZ4NeFJRpajZkE7Bc+q+gZkqwO0uprgjWoij5NvlcI=; b=wosDFaDU1aXcM1t8BV+d3O+V2SMFae3EIWv/GOoISb0R/WquMp9i2+1PKtds2mek5sVj3J gzPiZ5hh2A1JiD+vUIWVj1UGDkvAEZuVb21kqISqane2hdZvRKRSmOuNR18Fq1UMDRplEM Xws0Q6d6cpJYxiedhZV3wjCOu/mvTb9jMD2U3hNUPI+F8oOxCFrIE/VCoM0kBfA1VbrSIy bMRGQSVj+Nhwmq9sq9UoX9OIP/HzT3fu8mrSfLdpEWtgWLVw2Ca7i+sVe+BmutmbVqYvTQ c9wgkb04AIrDTlOBkGUGpK79j2VNcRpQA2T1fV6ifjST0li2LLk12Ht7gf/MHA== 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 4/4] cpupower-info.1: describe the --perf-bias option Date: Tue, 24 Mar 2026 23:39:04 +0100 Message-ID: <20260324223921.14317-5-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-info(1) man page only mentions the short form of the '--perf-bias' option in the synopsys, but the long form is not documented and its effect is not explained. cpupower-info.c: {"perf-bias", optional_argument, NULL, 'b'}, Signed-off-by: Roberto Ricci --- tools/power/cpupower/man/cpupower-info.1 | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/tools/power/cpupower/man/cpupower-info.1 b/tools/power/cpupowe= r/man/cpupower-info.1 index 340bcd0be7de..1f42d8c388a0 100644 --- a/tools/power/cpupower/man/cpupower-info.1 +++ b/tools/power/cpupower/man/cpupower-info.1 @@ -3,7 +3,7 @@ cpupower\-info \- Shows processor power related kernel or hardware configu= rations .SH SYNOPSIS .ft B -.B cpupower info [ \-b ] +.B cpupower info [\fIoptions\fP] =20 .SH DESCRIPTION \fBcpupower info \fP shows kernel configurations or processor hardware @@ -13,6 +13,13 @@ Some options are platform wide, some affect single cores= . By default values of core zero are displayed only. cpupower --cpu all cpuinfo will show the settings of all cores, see cpupower(1) how to choose specific cores. =20 +.SH "OPTIONS" +.LP +.TP +\fB\-b\fR \fB\-\-perf-bias\fR +Gets the current performance bias value. +.TP + .SH "SEE ALSO" Options are described in detail in: =20 --=20 2.53.0