All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable
@ 2021-11-30 15:34 Tang Yizhou
  2021-12-01  8:31 ` Alex Shi
  2021-12-02  9:53 ` teng sterling
  0 siblings, 2 replies; 6+ messages in thread
From: Tang Yizhou @ 2021-11-30 15:34 UTC (permalink / raw)
  To: siyanteng, alexs; +Cc: linux-doc, corbet, Tang Yizhou

Signed-off-by: Tang Yizhou <tangyizhou@huawei.com>
---
 .../translations/zh_CN/cpu-freq/core.rst      | 20 +++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/Documentation/translations/zh_CN/cpu-freq/core.rst b/Documentation/translations/zh_CN/cpu-freq/core.rst
index 0c6fd447ced6..bf83cad70b68 100644
--- a/Documentation/translations/zh_CN/cpu-freq/core.rst
+++ b/Documentation/translations/zh_CN/cpu-freq/core.rst
@@ -29,10 +29,10 @@ CPUFreq核心和CPUFreq通知器的通用说明
 ======================
 
 cpufreq核心代码位于drivers/cpufreq/cpufreq.c中。这些cpufreq代码为CPUFreq架构的驱
-动程序(那些操作硬件切换频率的代码)以及 "通知器 "提供了一个标准化的接口。
-这些是设备驱动程序或需要了解策略变化的其它内核部分(如 ACPI 热量管理)或所有频率更改(除
-计时代码外),甚至需要强制确定速度限制的通知器(如 ARM 架构上的 LCD 驱动程序)。
-此外, 内核 "常数" loops_per_jiffy会根据频率变化而更新。
+动程序(那些执行硬件频率切换的代码)以及 "通知器" 提供了一个标准化的接口。
+包括设备驱动程序;需要了解策略变化(如 ACPI 热量管理),或所有频率变化(如计时代码),
+甚至需要强制限制为指定频率(如 ARM 架构上的 LCD 驱动程序)的其它内核组件。
+此外,内核 "常数" loops_per_jiffy 会根据频率变化而更新。
 
 cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,以确保 cpufreq 驱
 动程序被正确地注册到核心中,并且驱动程序在 cpufreq_put_cpu 被调用之前不会被卸载。这也保证
@@ -41,7 +41,7 @@ cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,
 2. CPUFreq 通知器
 ====================
 
-CPUFreq通知器符合标准的内核通知器接口。
+CPUFreq通知器遵循标准的内核通知器接口。
 关于通知器的细节请参阅 linux/include/linux/notifier.h。
 
 这里有两个不同的CPUfreq通知器 - 策略通知器和转换通知器。
@@ -69,20 +69,20 @@ CPUFreq通知器符合标准的内核通知器接口。
 
 第三个参数是一个包含如下值的结构体cpufreq_freqs:
 
-=====	====================
-cpu	受影响cpu的编号
+======	===============================
+policy	指向struct cpufreq_policy的指针
 old	旧频率
 new	新频率
 flags	cpufreq驱动的标志
-=====	====================
+======	===============================
 
 3. 含有Operating Performance Point (OPP)的CPUFreq表的生成
 ==================================================================
 关于OPP的细节请参阅 Documentation/power/opp.rst
 
 dev_pm_opp_init_cpufreq_table -
-	这个功能提供了一个随时可用的转换程序,用来将OPP层关于可用频率的内部信息翻译成一种容易提供给
-	cpufreq的格式。
+	这个函数提供了一个随时可用的转换例程,用来将OPP层关于可用频率的内部信息翻译成一种
+	cpufreq易于理解格式。
 
 	.. Warning::
 
-- 
2.17.1


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

* Re: [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable
  2021-11-30 15:34 [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable Tang Yizhou
@ 2021-12-01  8:31 ` Alex Shi
  2021-12-01 13:33   ` Tang Yizhou
  2021-12-02  9:53 ` teng sterling
  1 sibling, 1 reply; 6+ messages in thread
From: Alex Shi @ 2021-12-01  8:31 UTC (permalink / raw)
  To: Tang Yizhou; +Cc: Yanteng Si, Alex Shi, Linux Doc Mailing List, Jonathan Corbet

On Tue, Nov 30, 2021 at 11:06 PM Tang Yizhou <tangyizhou@huawei.com> wrote:
>
> Signed-off-by: Tang Yizhou <tangyizhou@huawei.com>
> ---
>  .../translations/zh_CN/cpu-freq/core.rst      | 20 +++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/Documentation/translations/zh_CN/cpu-freq/core.rst b/Documentation/translations/zh_CN/cpu-freq/core.rst
> index 0c6fd447ced6..bf83cad70b68 100644
> --- a/Documentation/translations/zh_CN/cpu-freq/core.rst
> +++ b/Documentation/translations/zh_CN/cpu-freq/core.rst
> @@ -29,10 +29,10 @@ CPUFreq核心和CPUFreq通知器的通用说明
>  ======================
>
>  cpufreq核心代码位于drivers/cpufreq/cpufreq.c中。这些cpufreq代码为CPUFreq架构的驱
> -动程序(那些操作硬件切换频率的代码)以及 "通知器 "提供了一个标准化的接口。
> -这些是设备驱动程序或需要了解策略变化的其它内核部分(如 ACPI 热量管理)或所有频率更改(除
> -计时代码外),甚至需要强制确定速度限制的通知器(如 ARM 架构上的 LCD 驱动程序)。
> -此外, 内核 "常数" loops_per_jiffy会根据频率变化而更新。
> +动程序(那些执行硬件频率切换的代码)以及 "通知器" 提供了一个标准化的接口。
> +包括设备驱动程序;需要了解策略变化(如 ACPI 热量管理),或所有频率变化(如计时代码),
> +甚至需要强制限制为指定频率(如 ARM 架构上的 LCD 驱动程序)的其它内核组件。
> +此外,内核 "常数" loops_per_jiffy 会根据频率变化而更新。
>
>  cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,以确保 cpufreq 驱
>  动程序被正确地注册到核心中,并且驱动程序在 cpufreq_put_cpu 被调用之前不会被卸载。这也保证
> @@ -41,7 +41,7 @@ cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,
>  2. CPUFreq 通知器
>  ====================
>
> -CPUFreq通知器符合标准的内核通知器接口。
> +CPUFreq通知器遵循标准的内核通知器接口。
>  关于通知器的细节请参阅 linux/include/linux/notifier.h。
>
>  这里有两个不同的CPUfreq通知器 - 策略通知器和转换通知器。
> @@ -69,20 +69,20 @@ CPUFreq通知器符合标准的内核通知器接口。
>
>  第三个参数是一个包含如下值的结构体cpufreq_freqs:
>
> -=====  ====================
> -cpu    受影响cpu的编号
> +====== ===============================

LGTM,
Reviewed-by: Alex Shi <alexs@kernel.org>

BTW, please make sure the '=' count is right. -- I didn't count them. :)

> +policy 指向struct cpufreq_policy的指针
>  old    旧频率
>  new    新频率
>  flags  cpufreq驱动的标志
> -=====  ====================
> +====== ===============================
>
>  3. 含有Operating Performance Point (OPP)的CPUFreq表的生成
>  ==================================================================
>  关于OPP的细节请参阅 Documentation/power/opp.rst
>
>  dev_pm_opp_init_cpufreq_table -
> -       这个功能提供了一个随时可用的转换程序,用来将OPP层关于可用频率的内部信息翻译成一种容易提供给
> -       cpufreq的格式。
> +       这个函数提供了一个随时可用的转换例程,用来将OPP层关于可用频率的内部信息翻译成一种
> +       cpufreq易于理解格式。
>
>         .. Warning::
>
> --
> 2.17.1
>

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

* Re: [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable
  2021-12-01  8:31 ` Alex Shi
@ 2021-12-01 13:33   ` Tang Yizhou
  0 siblings, 0 replies; 6+ messages in thread
From: Tang Yizhou @ 2021-12-01 13:33 UTC (permalink / raw)
  To: Alex Shi
  Cc: Yanteng Si, Alex Shi, Linux Doc Mailing List, Jonathan Corbet,
	zhengbin13



On 2021/12/1 16:31, Alex Shi wrote:
> On Tue, Nov 30, 2021 at 11:06 PM Tang Yizhou <tangyizhou@huawei.com> wrote:
>>
>> Signed-off-by: Tang Yizhou <tangyizhou@huawei.com>
>> ---
>>  .../translations/zh_CN/cpu-freq/core.rst      | 20 +++++++++----------
>>  1 file changed, 10 insertions(+), 10 deletions(-)
>>
>> diff --git a/Documentation/translations/zh_CN/cpu-freq/core.rst b/Documentation/translations/zh_CN/cpu-freq/core.rst
>> index 0c6fd447ced6..bf83cad70b68 100644
>> --- a/Documentation/translations/zh_CN/cpu-freq/core.rst
>> +++ b/Documentation/translations/zh_CN/cpu-freq/core.rst
>> @@ -29,10 +29,10 @@ CPUFreq核心和CPUFreq通知器的通用说明
>>  ======================
>>
>>  cpufreq核心代码位于drivers/cpufreq/cpufreq.c中。这些cpufreq代码为CPUFreq架构的驱
>> -动程序(那些操作硬件切换频率的代码)以及 "通知器 "提供了一个标准化的接口。
>> -这些是设备驱动程序或需要了解策略变化的其它内核部分(如 ACPI 热量管理)或所有频率更改(除
>> -计时代码外),甚至需要强制确定速度限制的通知器(如 ARM 架构上的 LCD 驱动程序)。
>> -此外, 内核 "常数" loops_per_jiffy会根据频率变化而更新。
>> +动程序(那些执行硬件频率切换的代码)以及 "通知器" 提供了一个标准化的接口。
>> +包括设备驱动程序;需要了解策略变化(如 ACPI 热量管理),或所有频率变化(如计时代码),
>> +甚至需要强制限制为指定频率(如 ARM 架构上的 LCD 驱动程序)的其它内核组件。
>> +此外,内核 "常数" loops_per_jiffy 会根据频率变化而更新。
>>
>>  cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,以确保 cpufreq 驱
>>  动程序被正确地注册到核心中,并且驱动程序在 cpufreq_put_cpu 被调用之前不会被卸载。这也保证
>> @@ -41,7 +41,7 @@ cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,
>>  2. CPUFreq 通知器
>>  ====================
>>
>> -CPUFreq通知器符合标准的内核通知器接口。
>> +CPUFreq通知器遵循标准的内核通知器接口。
>>  关于通知器的细节请参阅 linux/include/linux/notifier.h。
>>
>>  这里有两个不同的CPUfreq通知器 - 策略通知器和转换通知器。
>> @@ -69,20 +69,20 @@ CPUFreq通知器符合标准的内核通知器接口。
>>
>>  第三个参数是一个包含如下值的结构体cpufreq_freqs:
>>
>> -=====  ====================
>> -cpu    受影响cpu的编号
>> +====== ===============================
> 
> LGTM,
> Reviewed-by: Alex Shi <alexs@kernel.org>
> 
> BTW, please make sure the '=' count is right. -- I didn't count them. :)

I have checked the HTML page. There is no problem. Thanks.

> 
>> +policy 指向struct cpufreq_policy的指针
>>  old    旧频率
>>  new    新频率
>>  flags  cpufreq驱动的标志
>> -=====  ====================
>> +====== ===============================
>>
>>  3. 含有Operating Performance Point (OPP)的CPUFreq表的生成
>>  ==================================================================
>>  关于OPP的细节请参阅 Documentation/power/opp.rst
>>
>>  dev_pm_opp_init_cpufreq_table -
>> -       这个功能提供了一个随时可用的转换程序,用来将OPP层关于可用频率的内部信息翻译成一种容易提供给
>> -       cpufreq的格式。
>> +       这个函数提供了一个随时可用的转换例程,用来将OPP层关于可用频率的内部信息翻译成一种
>> +       cpufreq易于理解格式。
>>
>>         .. Warning::
>>
>> --
>> 2.17.1
>>

Tang

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

* Re: [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable
  2021-11-30 15:34 [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable Tang Yizhou
  2021-12-01  8:31 ` Alex Shi
@ 2021-12-02  9:53 ` teng sterling
  2021-12-02 12:26   ` Tang Yizhou
  1 sibling, 1 reply; 6+ messages in thread
From: teng sterling @ 2021-12-02  9:53 UTC (permalink / raw)
  To: Tang Yizhou; +Cc: Yanteng Si, Alex Shi, Linux Doc Mailing List, Jonathan Corbet

Tang Yizhou <tangyizhou@huawei.com> 于2021年12月1日周三 下午9:51写道:
>
> Signed-off-by: Tang Yizhou <tangyizhou@huawei.com>
> ---
>  .../translations/zh_CN/cpu-freq/core.rst      | 20 +++++++++----------
>  1 file changed, 10 insertions(+), 10 deletions(-)
>
> diff --git a/Documentation/translations/zh_CN/cpu-freq/core.rst b/Documentation/translations/zh_CN/cpu-freq/core.rst
> index 0c6fd447ced6..bf83cad70b68 100644
> --- a/Documentation/translations/zh_CN/cpu-freq/core.rst
> +++ b/Documentation/translations/zh_CN/cpu-freq/core.rst
> @@ -29,10 +29,10 @@ CPUFreq核心和CPUFreq通知器的通用说明
>  ======================
>
>  cpufreq核心代码位于drivers/cpufreq/cpufreq.c中。这些cpufreq代码为CPUFreq架构的驱
> -动程序(那些操作硬件切换频率的代码)以及 "通知器 "提供了一个标准化的接口。
> -这些是设备驱动程序或需要了解策略变化的其它内核部分(如 ACPI 热量管理)或所有频率更改(除
> -计时代码外),甚至需要强制确定速度限制的通知器(如 ARM 架构上的 LCD 驱动程序)。
> -此外, 内核 "常数" loops_per_jiffy会根据频率变化而更新。
> +动程序(那些执行硬件频率切换的代码)以及 "通知器" 提供了一个标准化的接口。
> +包括设备驱动程序;需要了解策略变化(如 ACPI 热量管理),或所有频率变化(如计时代码),
> +甚至需要强制限制为指定频率(如 ARM 架构上的 LCD 驱动程序)的其它内核组件。
> +此外,内核 "常数" loops_per_jiffy 会根据频率变化而更新。
>
>  cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,以确保 cpufreq 驱
>  动程序被正确地注册到核心中,并且驱动程序在 cpufreq_put_cpu 被调用之前不会被卸载。这也保证
> @@ -41,7 +41,7 @@ cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,
>  2. CPUFreq 通知器
>  ====================
>
> -CPUFreq通知器符合标准的内核通知器接口。
> +CPUFreq通知器遵循标准的内核通知器接口。
>  关于通知器的细节请参阅 linux/include/linux/notifier.h。
>
>  这里有两个不同的CPUfreq通知器 - 策略通知器和转换通知器。
> @@ -69,20 +69,20 @@ CPUFreq通知器符合标准的内核通知器接口。
>
>  第三个参数是一个包含如下值的结构体cpufreq_freqs:
>
> -=====  ====================
> -cpu    受影响cpu的编号
> +====== ===============================
> +policy 指向struct cpufreq_policy的指针
>  old    旧频率
>  new    新频率
>  flags  cpufreq驱动的标志
> -=====  ====================
> +====== ===============================
>
>  3. 含有Operating Performance Point (OPP)的CPUFreq表的生成
>  ==================================================================
>  关于OPP的细节请参阅 Documentation/power/opp.rst
>
>  dev_pm_opp_init_cpufreq_table -
> -       这个功能提供了一个随时可用的转换程序,用来将OPP层关于可用频率的内部信息翻译成一种容易提供给
> -       cpufreq的格式。
> +       这个函数提供了一个随时可用的转换例程,用来将OPP层关于可用频率的内部信息翻译成一种
> +       cpufreq易于理解格式。
cpufreq易于理解的格式?

Others part looks fine to me.
Acked-by: Yanteng Si <siyanteng@loongson.cn>
>
>         .. Warning::
>
> --
> 2.17.1
>

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

* Re: [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable
  2021-12-02  9:53 ` teng sterling
@ 2021-12-02 12:26   ` Tang Yizhou
  2021-12-03  2:29     ` teng sterling
  0 siblings, 1 reply; 6+ messages in thread
From: Tang Yizhou @ 2021-12-02 12:26 UTC (permalink / raw)
  To: teng sterling
  Cc: Yanteng Si, Alex Shi, Linux Doc Mailing List, Jonathan Corbet,
	zhengbin13, tangyeechou

On 2021/12/2 17:53, teng sterling wrote:
> Tang Yizhou <tangyizhou@huawei.com> 于2021年12月1日周三 下午9:51写道:
>>
>> Signed-off-by: Tang Yizhou <tangyizhou@huawei.com>
>> ---
>>  .../translations/zh_CN/cpu-freq/core.rst      | 20 +++++++++----------
>>  1 file changed, 10 insertions(+), 10 deletions(-)
>>
>> diff --git a/Documentation/translations/zh_CN/cpu-freq/core.rst b/Documentation/translations/zh_CN/cpu-freq/core.rst
>> index 0c6fd447ced6..bf83cad70b68 100644
>> --- a/Documentation/translations/zh_CN/cpu-freq/core.rst
>> +++ b/Documentation/translations/zh_CN/cpu-freq/core.rst
>> @@ -29,10 +29,10 @@ CPUFreq核心和CPUFreq通知器的通用说明
>>  ======================
>>
>>  cpufreq核心代码位于drivers/cpufreq/cpufreq.c中。这些cpufreq代码为CPUFreq架构的驱
>> -动程序(那些操作硬件切换频率的代码)以及 "通知器 "提供了一个标准化的接口。
>> -这些是设备驱动程序或需要了解策略变化的其它内核部分(如 ACPI 热量管理)或所有频率更改(除
>> -计时代码外),甚至需要强制确定速度限制的通知器(如 ARM 架构上的 LCD 驱动程序)。
>> -此外, 内核 "常数" loops_per_jiffy会根据频率变化而更新。
>> +动程序(那些执行硬件频率切换的代码)以及 "通知器" 提供了一个标准化的接口。
>> +包括设备驱动程序;需要了解策略变化(如 ACPI 热量管理),或所有频率变化(如计时代码),
>> +甚至需要强制限制为指定频率(如 ARM 架构上的 LCD 驱动程序)的其它内核组件。
>> +此外,内核 "常数" loops_per_jiffy 会根据频率变化而更新。
>>
>>  cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,以确保 cpufreq 驱
>>  动程序被正确地注册到核心中,并且驱动程序在 cpufreq_put_cpu 被调用之前不会被卸载。这也保证
>> @@ -41,7 +41,7 @@ cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,
>>  2. CPUFreq 通知器
>>  ====================
>>
>> -CPUFreq通知器符合标准的内核通知器接口。
>> +CPUFreq通知器遵循标准的内核通知器接口。
>>  关于通知器的细节请参阅 linux/include/linux/notifier.h。
>>
>>  这里有两个不同的CPUfreq通知器 - 策略通知器和转换通知器。
>> @@ -69,20 +69,20 @@ CPUFreq通知器符合标准的内核通知器接口。
>>
>>  第三个参数是一个包含如下值的结构体cpufreq_freqs:
>>
>> -=====  ====================
>> -cpu    受影响cpu的编号
>> +====== ===============================
>> +policy 指向struct cpufreq_policy的指针
>>  old    旧频率
>>  new    新频率
>>  flags  cpufreq驱动的标志
>> -=====  ====================
>> +====== ===============================
>>
>>  3. 含有Operating Performance Point (OPP)的CPUFreq表的生成
>>  ==================================================================
>>  关于OPP的细节请参阅 Documentation/power/opp.rst
>>
>>  dev_pm_opp_init_cpufreq_table -
>> -       这个功能提供了一个随时可用的转换程序,用来将OPP层关于可用频率的内部信息翻译成一种容易提供给
>> -       cpufreq的格式。
>> +       这个函数提供了一个随时可用的转换例程,用来将OPP层关于可用频率的内部信息翻译成一种
>> +       cpufreq易于理解格式。
> cpufreq易于理解的格式?

改成“易于处理的格式”吧

> 
> Others part looks fine to me.
> Acked-by: Yanteng Si <siyanteng@loongson.cn>
>>
>>         .. Warning::
>>
>> --
>> 2.17.1
>>

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

* Re: [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable
  2021-12-02 12:26   ` Tang Yizhou
@ 2021-12-03  2:29     ` teng sterling
  0 siblings, 0 replies; 6+ messages in thread
From: teng sterling @ 2021-12-03  2:29 UTC (permalink / raw)
  To: Tang Yizhou
  Cc: Yanteng Si, Alex Shi, Linux Doc Mailing List, Jonathan Corbet,
	zhengbin13, tangyeechou

Tang Yizhou <tangyizhou@huawei.com> 于2021年12月2日周四 20:26写道:
>
> On 2021/12/2 17:53, teng sterling wrote:
> > Tang Yizhou <tangyizhou@huawei.com> 于2021年12月1日周三 下午9:51写道:
> >>
> >> Signed-off-by: Tang Yizhou <tangyizhou@huawei.com>
> >> ---
> >>  .../translations/zh_CN/cpu-freq/core.rst      | 20 +++++++++----------
> >>  1 file changed, 10 insertions(+), 10 deletions(-)
> >>
> >> diff --git a/Documentation/translations/zh_CN/cpu-freq/core.rst b/Documentation/translations/zh_CN/cpu-freq/core.rst
> >> index 0c6fd447ced6..bf83cad70b68 100644
> >> --- a/Documentation/translations/zh_CN/cpu-freq/core.rst
> >> +++ b/Documentation/translations/zh_CN/cpu-freq/core.rst
> >> @@ -29,10 +29,10 @@ CPUFreq核心和CPUFreq通知器的通用说明
> >>  ======================
> >>
> >>  cpufreq核心代码位于drivers/cpufreq/cpufreq.c中。这些cpufreq代码为CPUFreq架构的驱
> >> -动程序(那些操作硬件切换频率的代码)以及 "通知器 "提供了一个标准化的接口。
> >> -这些是设备驱动程序或需要了解策略变化的其它内核部分(如 ACPI 热量管理)或所有频率更改(除
> >> -计时代码外),甚至需要强制确定速度限制的通知器(如 ARM 架构上的 LCD 驱动程序)。
> >> -此外, 内核 "常数" loops_per_jiffy会根据频率变化而更新。
> >> +动程序(那些执行硬件频率切换的代码)以及 "通知器" 提供了一个标准化的接口。
> >> +包括设备驱动程序;需要了解策略变化(如 ACPI 热量管理),或所有频率变化(如计时代码),
> >> +甚至需要强制限制为指定频率(如 ARM 架构上的 LCD 驱动程序)的其它内核组件。
> >> +此外,内核 "常数" loops_per_jiffy 会根据频率变化而更新。
> >>
> >>  cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,以确保 cpufreq 驱
> >>  动程序被正确地注册到核心中,并且驱动程序在 cpufreq_put_cpu 被调用之前不会被卸载。这也保证
> >> @@ -41,7 +41,7 @@ cpufreq策略的引用计数由 cpufreq_cpu_get 和 cpufreq_cpu_put 来完成,
> >>  2. CPUFreq 通知器
> >>  ====================
> >>
> >> -CPUFreq通知器符合标准的内核通知器接口。
> >> +CPUFreq通知器遵循标准的内核通知器接口。
> >>  关于通知器的细节请参阅 linux/include/linux/notifier.h。
> >>
> >>  这里有两个不同的CPUfreq通知器 - 策略通知器和转换通知器。
> >> @@ -69,20 +69,20 @@ CPUFreq通知器符合标准的内核通知器接口。
> >>
> >>  第三个参数是一个包含如下值的结构体cpufreq_freqs:
> >>
> >> -=====  ====================
> >> -cpu    受影响cpu的编号
> >> +====== ===============================
> >> +policy 指向struct cpufreq_policy的指针
> >>  old    旧频率
> >>  new    新频率
> >>  flags  cpufreq驱动的标志
> >> -=====  ====================
> >> +====== ===============================
> >>
> >>  3. 含有Operating Performance Point (OPP)的CPUFreq表的生成
> >>  ==================================================================
> >>  关于OPP的细节请参阅 Documentation/power/opp.rst
> >>
> >>  dev_pm_opp_init_cpufreq_table -
> >> -       这个功能提供了一个随时可用的转换程序,用来将OPP层关于可用频率的内部信息翻译成一种容易提供给
> >> -       cpufreq的格式。
> >> +       这个函数提供了一个随时可用的转换例程,用来将OPP层关于可用频率的内部信息翻译成一种
> >> +       cpufreq易于理解格式。
> > cpufreq易于理解的格式?
>
> 改成“易于处理的格式”吧
Great!

Thanks,
Yanteng
>
> >
> > Others part looks fine to me.
> > Acked-by: Yanteng Si <siyanteng@loongson.cn>
> >>
> >>         .. Warning::
> >>
> >> --
> >> 2.17.1
> >>

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

end of thread, other threads:[~2021-12-03  2:29 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-11-30 15:34 [PATCH] doc/zh-CN: Update cpu-freq/core.rst to make it more readable Tang Yizhou
2021-12-01  8:31 ` Alex Shi
2021-12-01 13:33   ` Tang Yizhou
2021-12-02  9:53 ` teng sterling
2021-12-02 12:26   ` Tang Yizhou
2021-12-03  2:29     ` teng sterling

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.