All of lore.kernel.org
 help / color / mirror / Atom feed
* Update the maximum depth of C-state from 6 to 9
@ 2016-07-04  1:55 baolex.ni
  2016-07-10 22:37 ` Jonathan Corbet
  0 siblings, 1 reply; 3+ messages in thread
From: baolex.ni @ 2016-07-04  1:55 UTC (permalink / raw)
  To: corbet, linux-doc; +Cc: linux-kernel

Currently, CPUIDLE_STATE_MAX has been defined as 10 in the cpuidle head file,
and max_cstate = CPUIDLE_STATE_MAX – 1, so 9 is the right maximum depth of C-state.
This change is reflected in one place of the kernel-param file,
but not in the other place where I suggest changing.

Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
Signed-off-by: Baole Ni <baolex.ni@intel.com>
---
 Documentation/kernel-parameters.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 82b42c9..a863737 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -1661,7 +1661,7 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
 
 	intel_idle.max_cstate=	[KNL,HW,ACPI,X86]
 			0	disables intel_idle and fall back on acpi_idle.
-			1 to 6	specify maximum depth of C-state.
+			1 to 9	specify maximum depth of C-state.
 
 	intel_pstate=  [X86]
 		       disable
-- 
2.8.3

^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: Update the maximum depth of C-state from 6 to 9
  2016-07-04  1:55 Update the maximum depth of C-state from 6 to 9 baolex.ni
@ 2016-07-10 22:37 ` Jonathan Corbet
  2016-07-11  1:57   ` baolex.ni
  0 siblings, 1 reply; 3+ messages in thread
From: Jonathan Corbet @ 2016-07-10 22:37 UTC (permalink / raw)
  To: baolex.ni; +Cc: linux-doc, linux-kernel

On Mon, 4 Jul 2016 09:55:10 +0800
"baolex.ni" <baolex.ni@intel.com> wrote:

> Currently, CPUIDLE_STATE_MAX has been defined as 10 in the cpuidle head file,
> and max_cstate = CPUIDLE_STATE_MAX – 1, so 9 is the right maximum depth of C-state.
> This change is reflected in one place of the kernel-param file,
> but not in the other place where I suggest changing.
> 
> Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
> Signed-off-by: Baole Ni <baolex.ni@intel.com>

So why are there two signoffs on a single-line patch?  Which one of you
is the actual author?

Thanks,

jon

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: Update the maximum depth of C-state from 6 to 9
  2016-07-10 22:37 ` Jonathan Corbet
@ 2016-07-11  1:57   ` baolex.ni
  0 siblings, 0 replies; 3+ messages in thread
From: baolex.ni @ 2016-07-11  1:57 UTC (permalink / raw)
  To: Jonathan Corbet; +Cc: linux-doc, linux-kernel, chuansheng.liu

[-- Attachment #1: Type: text/plain, Size: 939 bytes --]

Hi Jon,

This patch is an old one, we have corrected some minor issues on the newer one.
Please only review the newest version from my last mail with this subject
"[PATCH] ACPI: Update the maximum depth of C-state from 6 to 9".
And I also attached it to this mail.

Thanks,
Baole

On 7/11/2016 6:37 AM, Jonathan Corbet wrote:
> On Mon, 4 Jul 2016 09:55:10 +0800
> "baolex.ni" <baolex.ni@intel.com> wrote:
> 
>> Currently, CPUIDLE_STATE_MAX has been defined as 10 in the cpuidle head file,
>> and max_cstate = CPUIDLE_STATE_MAX – 1, so 9 is the right maximum depth of C-state.
>> This change is reflected in one place of the kernel-param file,
>> but not in the other place where I suggest changing.
>>
>> Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
>> Signed-off-by: Baole Ni <baolex.ni@intel.com>
> 
> So why are there two signoffs on a single-line patch?  Which one of you
> is the actual author?
> 
> Thanks,
> 
> jon
> 

[-- Attachment #2: 0001-Update-the-maximum-depth-of-C-state-from-6-to-9.patch --]
[-- Type: text/plain, Size: 1330 bytes --]

From cf5f8aa6885874f6490b11507d3c0c86fa0a11f4 Mon Sep 17 00:00:00 2001
From: Chuansheng Liu <chuansheng.liu@intel.com>
Date: Mon, 4 Jul 2016 08:52:51 +0800
Subject: [PATCH] Update the maximum depth of C-state from 6 to 9
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

Currently, CPUIDLE_STATE_MAX has been defined as 10 in the cpuidle head file,
and max_cstate = CPUIDLE_STATE_MAX – 1, so 9 is the right maximum depth of C-state.
This change is reflected in one place of the kernel-param file,
but not in the other place where I suggest changing.

Signed-off-by: Chuansheng Liu <chuansheng.liu@intel.com>
Signed-off-by: Baole Ni <baolex.ni@intel.com>
---
 Documentation/kernel-parameters.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Documentation/kernel-parameters.txt b/Documentation/kernel-parameters.txt
index 82b42c9..a863737 100644
--- a/Documentation/kernel-parameters.txt
+++ b/Documentation/kernel-parameters.txt
@@ -1661,7 +1661,7 @@ bytes respectively. Such letter suffixes can also be entirely omitted.
 
 	intel_idle.max_cstate=	[KNL,HW,ACPI,X86]
 			0	disables intel_idle and fall back on acpi_idle.
-			1 to 6	specify maximum depth of C-state.
+			1 to 9	specify maximum depth of C-state.
 
 	intel_pstate=  [X86]
 		       disable
-- 
2.8.3


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-07-11  1:57 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-07-04  1:55 Update the maximum depth of C-state from 6 to 9 baolex.ni
2016-07-10 22:37 ` Jonathan Corbet
2016-07-11  1:57   ` baolex.ni

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.