DPDK patches and discussions
 help / color / mirror / Atom feed
* [PATCH] power: fix a typo in the PM QoS guide
@ 2024-11-11 12:52 Huisong Li
  2024-11-11 13:11 ` Thomas Monjalon
                   ` (2 more replies)
  0 siblings, 3 replies; 7+ messages in thread
From: Huisong Li @ 2024-11-11 12:52 UTC (permalink / raw)
  To: dev
  Cc: thomas, ferruh.yigit, david.hunt, sivaprasad.tummala,
	konstantin.ananyev, fengchengwen, liuyonglong, lihuisong

The typo in the guide is hard to understand. Necessary to fix it.

Fixes: dd6fd75bf662 ("power: introduce PM QoS API on CPU wide")

Signed-off-by: Huisong Li <lihuisong@huawei.com>
---
 doc/guides/prog_guide/power_man.rst | 2 +-
 lib/power/rte_power_qos.h           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/guides/prog_guide/power_man.rst b/doc/guides/prog_guide/power_man.rst
index 22e6e4fe1d..024670a9b4 100644
--- a/doc/guides/prog_guide/power_man.rst
+++ b/doc/guides/prog_guide/power_man.rst
@@ -118,7 +118,7 @@ based on this CPU resume latency in their idle task.
 
 The deeper the idle state, the lower the power consumption,
 but the longer the resume time.
-Some services are latency sensitive and very except the low resume time,
+Some services are latency sensitive and request the low resume time,
 like interrupt packet receiving mode.
 
 Applications can set and get the CPU resume latency with
diff --git a/lib/power/rte_power_qos.h b/lib/power/rte_power_qos.h
index 7a8dab9272..a6d3677409 100644
--- a/lib/power/rte_power_qos.h
+++ b/lib/power/rte_power_qos.h
@@ -24,7 +24,7 @@ extern "C" {
  * https://www.kernel.org/doc/html/latest/admin-guide/abi-testing.html?highlight=pm_qos_resume_latency_us#abi-sys-devices-power-pm-qos-resume-latency-us
  *
  * The deeper the idle state, the lower the power consumption, but the
- * longer the resume time. Some service are delay sensitive and very except the
+ * longer the resume time. Some service are delay sensitive and request the
  * low resume time, like interrupt packet receiving mode.
  *
  * In these case, per-CPU PM QoS API can be used to control this CPU's idle
-- 
2.22.0


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

* Re: [PATCH] power: fix a typo in the PM QoS guide
  2024-11-11 12:52 [PATCH] power: fix a typo in the PM QoS guide Huisong Li
@ 2024-11-11 13:11 ` Thomas Monjalon
  2024-11-12  0:24   ` lihuisong (C)
  2024-11-12  8:35 ` [PATCH v2] " Huisong Li
  2024-11-13  0:59 ` [PATCH v3] " Huisong Li
  2 siblings, 1 reply; 7+ messages in thread
From: Thomas Monjalon @ 2024-11-11 13:11 UTC (permalink / raw)
  To: Huisong Li
  Cc: dev, ferruh.yigit, david.hunt, sivaprasad.tummala,
	konstantin.ananyev, fengchengwen, liuyonglong, lihuisong

11/11/2024 13:52, Huisong Li:
> -Some services are latency sensitive and very except the low resume time,
> +Some services are latency sensitive and request the low resume time,

I suppose it should be "request a low resume time".




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

* Re: [PATCH] power: fix a typo in the PM QoS guide
  2024-11-11 13:11 ` Thomas Monjalon
@ 2024-11-12  0:24   ` lihuisong (C)
  0 siblings, 0 replies; 7+ messages in thread
From: lihuisong (C) @ 2024-11-12  0:24 UTC (permalink / raw)
  To: Thomas Monjalon
  Cc: dev, ferruh.yigit, david.hunt, sivaprasad.tummala,
	konstantin.ananyev, fengchengwen, liuyonglong


在 2024/11/11 21:11, Thomas Monjalon 写道:
> 11/11/2024 13:52, Huisong Li:
>> -Some services are latency sensitive and very except the low resume time,
>> +Some services are latency sensitive and request the low resume time,
> I suppose it should be "request a low resume time".
Ack, thanks
>
>
>
> .

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

* [PATCH v2] power: fix a typo in the PM QoS guide
  2024-11-11 12:52 [PATCH] power: fix a typo in the PM QoS guide Huisong Li
  2024-11-11 13:11 ` Thomas Monjalon
@ 2024-11-12  8:35 ` Huisong Li
  2024-11-12 12:55   ` Thomas Monjalon
  2024-11-13  0:59 ` [PATCH v3] " Huisong Li
  2 siblings, 1 reply; 7+ messages in thread
From: Huisong Li @ 2024-11-12  8:35 UTC (permalink / raw)
  To: dev
  Cc: thomas, ferruh.yigit, david.hunt, sivaprasad.tummala,
	konstantin.ananyev, fengchengwen, liuyonglong, lihuisong

The typo in the guide is hard to understand. Necessary to fix it.

Fixes: dd6fd75bf662 ("power: introduce PM QoS API on CPU wide")

Signed-off-by: Huisong Li <lihuisong@huawei.com>
---
 doc/guides/prog_guide/power_man.rst | 2 +-
 lib/power/rte_power_qos.h           | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/doc/guides/prog_guide/power_man.rst b/doc/guides/prog_guide/power_man.rst
index 22e6e4fe1d..74039e5786 100644
--- a/doc/guides/prog_guide/power_man.rst
+++ b/doc/guides/prog_guide/power_man.rst
@@ -118,7 +118,7 @@ based on this CPU resume latency in their idle task.
 
 The deeper the idle state, the lower the power consumption,
 but the longer the resume time.
-Some services are latency sensitive and very except the low resume time,
+Some services are latency sensitive and request a low resume time,
 like interrupt packet receiving mode.
 
 Applications can set and get the CPU resume latency with
diff --git a/lib/power/rte_power_qos.h b/lib/power/rte_power_qos.h
index 7a8dab9272..ce0c6eda15 100644
--- a/lib/power/rte_power_qos.h
+++ b/lib/power/rte_power_qos.h
@@ -24,7 +24,7 @@ extern "C" {
  * https://www.kernel.org/doc/html/latest/admin-guide/abi-testing.html?highlight=pm_qos_resume_latency_us#abi-sys-devices-power-pm-qos-resume-latency-us
  *
  * The deeper the idle state, the lower the power consumption, but the
- * longer the resume time. Some service are delay sensitive and very except the
+ * longer the resume time. Some service are delay sensitive and request a
  * low resume time, like interrupt packet receiving mode.
  *
  * In these case, per-CPU PM QoS API can be used to control this CPU's idle
-- 
2.22.0


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

* Re: [PATCH v2] power: fix a typo in the PM QoS guide
  2024-11-12  8:35 ` [PATCH v2] " Huisong Li
@ 2024-11-12 12:55   ` Thomas Monjalon
  2024-11-13  1:03     ` lihuisong (C)
  0 siblings, 1 reply; 7+ messages in thread
From: Thomas Monjalon @ 2024-11-12 12:55 UTC (permalink / raw)
  To: Huisong Li
  Cc: dev, ferruh.yigit, david.hunt, sivaprasad.tummala,
	konstantin.ananyev, fengchengwen, liuyonglong

12/11/2024 09:35, Huisong Li:
> The typo in the guide is hard to understand. Necessary to fix it.
> 
> Fixes: dd6fd75bf662 ("power: introduce PM QoS API on CPU wide")
> 
> Signed-off-by: Huisong Li <lihuisong@huawei.com>
> ---
> --- a/doc/guides/prog_guide/power_man.rst
> +++ b/doc/guides/prog_guide/power_man.rst
> -Some services are latency sensitive and very except the low resume time,
> +Some services are latency sensitive and request a low resume time,
>  like interrupt packet receiving mode.
[...]
> --- a/lib/power/rte_power_qos.h
> +++ b/lib/power/rte_power_qos.h
>   * The deeper the idle state, the lower the power consumption, but the
> - * longer the resume time. Some service are delay sensitive and very except the
> + * longer the resume time. Some service are delay sensitive and request a
>   * low resume time, like interrupt packet receiving mode.

Why not the same as above? "Some services are latency sensitive"





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

* [PATCH v3] power: fix a typo in the PM QoS guide
  2024-11-11 12:52 [PATCH] power: fix a typo in the PM QoS guide Huisong Li
  2024-11-11 13:11 ` Thomas Monjalon
  2024-11-12  8:35 ` [PATCH v2] " Huisong Li
@ 2024-11-13  0:59 ` Huisong Li
  2 siblings, 0 replies; 7+ messages in thread
From: Huisong Li @ 2024-11-13  0:59 UTC (permalink / raw)
  To: dev
  Cc: thomas, ferruh.yigit, david.hunt, sivaprasad.tummala,
	konstantin.ananyev, fengchengwen, liuyonglong, lihuisong

The typo in the guide is hard to understand. Necessary to fix it.

Fixes: dd6fd75bf662 ("power: introduce PM QoS API on CPU wide")

Signed-off-by: Huisong Li <lihuisong@huawei.com>
---
 doc/guides/prog_guide/power_man.rst | 2 +-
 lib/power/rte_power_qos.h           | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/doc/guides/prog_guide/power_man.rst b/doc/guides/prog_guide/power_man.rst
index 22e6e4fe1d..74039e5786 100644
--- a/doc/guides/prog_guide/power_man.rst
+++ b/doc/guides/prog_guide/power_man.rst
@@ -118,7 +118,7 @@ based on this CPU resume latency in their idle task.
 
 The deeper the idle state, the lower the power consumption,
 but the longer the resume time.
-Some services are latency sensitive and very except the low resume time,
+Some services are latency sensitive and request a low resume time,
 like interrupt packet receiving mode.
 
 Applications can set and get the CPU resume latency with
diff --git a/lib/power/rte_power_qos.h b/lib/power/rte_power_qos.h
index 7a8dab9272..05a3f51ae2 100644
--- a/lib/power/rte_power_qos.h
+++ b/lib/power/rte_power_qos.h
@@ -24,8 +24,8 @@ extern "C" {
  * https://www.kernel.org/doc/html/latest/admin-guide/abi-testing.html?highlight=pm_qos_resume_latency_us#abi-sys-devices-power-pm-qos-resume-latency-us
  *
  * The deeper the idle state, the lower the power consumption, but the
- * longer the resume time. Some service are delay sensitive and very except the
- * low resume time, like interrupt packet receiving mode.
+ * longer the resume time. Some services are latency sensitive and request
+ * a low resume time, like interrupt packet receiving mode.
  *
  * In these case, per-CPU PM QoS API can be used to control this CPU's idle
  * state selection and limit just enter the shallowest idle state to low the
-- 
2.22.0


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

* Re: [PATCH v2] power: fix a typo in the PM QoS guide
  2024-11-12 12:55   ` Thomas Monjalon
@ 2024-11-13  1:03     ` lihuisong (C)
  0 siblings, 0 replies; 7+ messages in thread
From: lihuisong (C) @ 2024-11-13  1:03 UTC (permalink / raw)
  To: Thomas Monjalon
  Cc: dev, ferruh.yigit, david.hunt, sivaprasad.tummala,
	konstantin.ananyev, fengchengwen, liuyonglong


在 2024/11/12 20:55, Thomas Monjalon 写道:
> 12/11/2024 09:35, Huisong Li:
>> The typo in the guide is hard to understand. Necessary to fix it.
>>
>> Fixes: dd6fd75bf662 ("power: introduce PM QoS API on CPU wide")
>>
>> Signed-off-by: Huisong Li <lihuisong@huawei.com>
>> ---
>> --- a/doc/guides/prog_guide/power_man.rst
>> +++ b/doc/guides/prog_guide/power_man.rst
>> -Some services are latency sensitive and very except the low resume time,
>> +Some services are latency sensitive and request a low resume time,
>>   like interrupt packet receiving mode.
> [...]
>> --- a/lib/power/rte_power_qos.h
>> +++ b/lib/power/rte_power_qos.h
>>    * The deeper the idle state, the lower the power consumption, but the
>> - * longer the resume time. Some service are delay sensitive and very except the
>> + * longer the resume time. Some service are delay sensitive and request a
>>    * low resume time, like interrupt packet receiving mode.
> Why not the same as above? "Some services are latency sensitive"
will fix it in next version.
>
>
>
>
> .

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

end of thread, other threads:[~2024-11-13  1:10 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2024-11-11 12:52 [PATCH] power: fix a typo in the PM QoS guide Huisong Li
2024-11-11 13:11 ` Thomas Monjalon
2024-11-12  0:24   ` lihuisong (C)
2024-11-12  8:35 ` [PATCH v2] " Huisong Li
2024-11-12 12:55   ` Thomas Monjalon
2024-11-13  1:03     ` lihuisong (C)
2024-11-13  0:59 ` [PATCH v3] " Huisong Li

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).