diff mbox series

[v2,1/2] PM: runtime: Add a general runtime get sync operation to deal with usage counter

Message ID 20201109150416.1877878-2-zhangqilong3@huawei.com
State Changes Requested
Delegated to: David Miller
Headers show
Series Fix usage counter leak by adding a general sync ops | expand

Checks

Context Check Description
jkicinski/cover_letter success Link
jkicinski/fixes_present success Link
jkicinski/patch_count success Link
jkicinski/tree_selection success Guessed tree name to be net-next
jkicinski/subject_prefix success Link
jkicinski/source_inline success Was 0 now: 0
jkicinski/verify_signedoff success Link
jkicinski/module_param success Was 0 now: 0
jkicinski/build_32bit success Errors and warnings before: 3092 this patch: 3092
jkicinski/kdoc success Errors and warnings before: 0 this patch: 0
jkicinski/verify_fixes success Link
jkicinski/checkpatch warning WARNING: line length of 81 exceeds 80 columns WARNING: line length of 82 exceeds 80 columns WARNING: line length of 84 exceeds 80 columns
jkicinski/build_allmodconfig_warn success Errors and warnings before: 3084 this patch: 3084
jkicinski/header_inline success Link
jkicinski/stable success Stable not CCed

Commit Message

Zhang Qilong Nov. 9, 2020, 3:04 p.m. UTC
In many case, we need to check return value of pm_runtime_get_sync, but
it brings a trouble to the usage counter processing. Many callers forget
to decrease the usage counter when it failed. It has been discussed a
lot[0][1]. So we add a function to deal with the usage counter for better
coding.

[0]https://lkml.org/lkml/2020/6/14/88
[1]https://patchwork.ozlabs.org/project/linux-tegra/patch/20200520095148.10995-1-dinghao.liu@zju.edu.cn/
Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
---
 include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

Comments

Rafael J. Wysocki Nov. 9, 2020, 3:20 p.m. UTC | #1
On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong <zhangqilong3@huawei.com> wrote:
>
> In many case, we need to check return value of pm_runtime_get_sync, but
> it brings a trouble to the usage counter processing. Many callers forget
> to decrease the usage counter when it failed. It has been discussed a
> lot[0][1]. So we add a function to deal with the usage counter for better
> coding.
>
> [0]https://lkml.org/lkml/2020/6/14/88
> [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/20200520095148.10995-1-dinghao.liu@zju.edu.cn/
> Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> ---
>  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
>  1 file changed, 30 insertions(+)
>
> diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h
> index 4b708f4e8eed..6549ce764400 100644
> --- a/include/linux/pm_runtime.h
> +++ b/include/linux/pm_runtime.h
> @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct device *dev)
>         return __pm_runtime_resume(dev, RPM_GET_PUT);
>  }
>
> +/**
> + * pm_runtime_general_get - Bump up usage counter of a device and resume it.
> + * @dev: Target device.
> + *
> + * Increase runtime PM usage counter of @dev first, and carry out runtime-resume
> + * of it synchronously. If __pm_runtime_resume return negative value(device is in
> + * error state), we to need decrease the usage counter before it return. If
> + * __pm_runtime_resume return positive value, it means the runtime of device has
> + * already been in active state, and we let the new wrapper return zero instead.
> + *
> + * The possible return values of this function is zero or negative value.
> + * zero:
> + *    - it means resume succeeed or runtime of device has already been active, the
> + *      runtime PM usage counter of @dev remains incremented.
> + * negative:
> + *    - it means failure and the runtime PM usage counter of @dev has been balanced.

The kerneldoc above is kind of noisy and it is hard to figure out what
the helper really does from it.

You could basically say something like "Resume @dev synchronously and
if that is successful, increment its runtime PM usage counter.  Return
0 if the runtime PM usage counter of @dev has been incremented or a
negative error code otherwise."

> + */
> +static inline int pm_runtime_general_get(struct device *dev)

What about pm_runtime_resume_and_get()?

> +{
> +       int ret = 0;

This extra initialization is not necessary.

You can initialize ret to the __pm_runtime_resume() return value right away.

> +
> +       ret = __pm_runtime_resume(dev, RPM_GET_PUT);
> +       if (ret < 0) {
> +               pm_runtime_put_noidle(dev);
> +               return ret;
> +       }
> +
> +       return 0;
> +}
> +
>  /**
>   * pm_runtime_put - Drop device usage counter and queue up "idle check" if 0.
>   * @dev: Target device.
> --
Ulf Hansson Nov. 9, 2020, 3:49 p.m. UTC | #2
On Mon, 9 Nov 2020 at 16:20, Rafael J. Wysocki <rafael@kernel.org> wrote:
>
> On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong <zhangqilong3@huawei.com> wrote:
> >
> > In many case, we need to check return value of pm_runtime_get_sync, but
> > it brings a trouble to the usage counter processing. Many callers forget
> > to decrease the usage counter when it failed. It has been discussed a
> > lot[0][1]. So we add a function to deal with the usage counter for better
> > coding.
> >
> > [0]https://lkml.org/lkml/2020/6/14/88
> > [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/20200520095148.10995-1-dinghao.liu@zju.edu.cn/
> > Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> > ---
> >  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
> >  1 file changed, 30 insertions(+)
> >
> > diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h
> > index 4b708f4e8eed..6549ce764400 100644
> > --- a/include/linux/pm_runtime.h
> > +++ b/include/linux/pm_runtime.h
> > @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct device *dev)
> >         return __pm_runtime_resume(dev, RPM_GET_PUT);
> >  }
> >
> > +/**
> > + * pm_runtime_general_get - Bump up usage counter of a device and resume it.
> > + * @dev: Target device.
> > + *
> > + * Increase runtime PM usage counter of @dev first, and carry out runtime-resume
> > + * of it synchronously. If __pm_runtime_resume return negative value(device is in
> > + * error state), we to need decrease the usage counter before it return. If
> > + * __pm_runtime_resume return positive value, it means the runtime of device has
> > + * already been in active state, and we let the new wrapper return zero instead.
> > + *
> > + * The possible return values of this function is zero or negative value.
> > + * zero:
> > + *    - it means resume succeeed or runtime of device has already been active, the
> > + *      runtime PM usage counter of @dev remains incremented.
> > + * negative:
> > + *    - it means failure and the runtime PM usage counter of @dev has been balanced.
>
> The kerneldoc above is kind of noisy and it is hard to figure out what
> the helper really does from it.
>
> You could basically say something like "Resume @dev synchronously and
> if that is successful, increment its runtime PM usage counter.  Return
> 0 if the runtime PM usage counter of @dev has been incremented or a
> negative error code otherwise."
>
> > + */
> > +static inline int pm_runtime_general_get(struct device *dev)
>
> What about pm_runtime_resume_and_get()?

We already have pm_runtime_get_if_active() - so perhaps
pm_runtime_get_if_suspended() could be an option as well?

>
> > +{
> > +       int ret = 0;
>
> This extra initialization is not necessary.
>
> You can initialize ret to the __pm_runtime_resume() return value right away.
>
> > +
> > +       ret = __pm_runtime_resume(dev, RPM_GET_PUT);
> > +       if (ret < 0) {
> > +               pm_runtime_put_noidle(dev);
> > +               return ret;
> > +       }
> > +
> > +       return 0;
> > +}
> > +
> >  /**
> >   * pm_runtime_put - Drop device usage counter and queue up "idle check" if 0.
> >   * @dev: Target device.
> > --

Kind regards
Uffe
Zhang Qilong Nov. 9, 2020, 3:50 p.m. UTC | #3
> operation to deal with usage counter
> 
> On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong <zhangqilong3@huawei.com>
> wrote:
> >
> > In many case, we need to check return value of pm_runtime_get_sync,
> > but it brings a trouble to the usage counter processing. Many callers
> > forget to decrease the usage counter when it failed. It has been
> > discussed a lot[0][1]. So we add a function to deal with the usage
> > counter for better coding.
> >
> > [0]https://lkml.org/lkml/2020/6/14/88
> > [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/202005200951
> > 48.10995-1-dinghao.liu@zju.edu.cn/
> > Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> > ---
> >  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
> >  1 file changed, 30 insertions(+)
> >
> > diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h
> > index 4b708f4e8eed..6549ce764400 100644
> > --- a/include/linux/pm_runtime.h
> > +++ b/include/linux/pm_runtime.h
> > @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct device
> *dev)
> >         return __pm_runtime_resume(dev, RPM_GET_PUT);  }
> >
> > +/**
> > + * pm_runtime_general_get - Bump up usage counter of a device and
> resume it.
> > + * @dev: Target device.
> > + *
> > + * Increase runtime PM usage counter of @dev first, and carry out
> > +runtime-resume
> > + * of it synchronously. If __pm_runtime_resume return negative
> > +value(device is in
> > + * error state), we to need decrease the usage counter before it
> > +return. If
> > + * __pm_runtime_resume return positive value, it means the runtime of
> > +device has
> > + * already been in active state, and we let the new wrapper return zero
> instead.
> > + *
> > + * The possible return values of this function is zero or negative value.
> > + * zero:
> > + *    - it means resume succeeed or runtime of device has already been
> active, the
> > + *      runtime PM usage counter of @dev remains incremented.
> > + * negative:
> > + *    - it means failure and the runtime PM usage counter of @dev has
> been balanced.
> 
> The kerneldoc above is kind of noisy and it is hard to figure out what the helper
> really does from it.
> 
> You could basically say something like "Resume @dev synchronously and if that
> is successful, increment its runtime PM usage counter.  Return
> 0 if the runtime PM usage counter of @dev has been incremented or a negative
> error code otherwise."
> 

How about the following description.
/**
390  * pm_runtime_general_get - Bump up usage counter of a device and resume it.
391  * @dev: Target device.
392  *
393  * Increase runtime PM usage counter of @dev first, and carry out runtime-resume
394  * of it synchronously. If __pm_runtime_resume return negative value(device is in
395  * error state), we to need decrease the usage counter before it return. If
396  * __pm_runtime_resume return positive value, it means the runtime of device has
397  * already been in active state, and we let the new wrapper return zero instead.
398  *
399  * Resume @dev synchronously and if that is successful, and increment its runtime
400  * PM usage counter if it turn out to equal to 0. The runtime PM usage counter of
401  * @dev has been incremented or a negative error code otherwise.
402  */

Thanks,
Zhang

> > + */
> > +static inline int pm_runtime_general_get(struct device *dev)
> 
> What about pm_runtime_resume_and_get()?
> 

I think it's OK.

> > +{
> > +       int ret = 0;
> 
> This extra initialization is not necessary.
> 
> You can initialize ret to the __pm_runtime_resume() return value right away.
> 

OK, good idea.

> > +
> > +       ret = __pm_runtime_resume(dev, RPM_GET_PUT);
> > +       if (ret < 0) {
> > +               pm_runtime_put_noidle(dev);
> > +               return ret;
> > +       }
> > +
> > +       return 0;
> > +}
> > +
> >  /**
> >   * pm_runtime_put - Drop device usage counter and queue up "idle check"
> if 0.
> >   * @dev: Target device.
> > --
Rafael J. Wysocki Nov. 9, 2020, 3:53 p.m. UTC | #4
On Mon, Nov 9, 2020 at 4:50 PM Ulf Hansson <ulf.hansson@linaro.org> wrote:
>
> On Mon, 9 Nov 2020 at 16:20, Rafael J. Wysocki <rafael@kernel.org> wrote:
> >
> > On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong <zhangqilong3@huawei.com> wrote:
> > >
> > > In many case, we need to check return value of pm_runtime_get_sync, but
> > > it brings a trouble to the usage counter processing. Many callers forget
> > > to decrease the usage counter when it failed. It has been discussed a
> > > lot[0][1]. So we add a function to deal with the usage counter for better
> > > coding.
> > >
> > > [0]https://lkml.org/lkml/2020/6/14/88
> > > [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/20200520095148.10995-1-dinghao.liu@zju.edu.cn/
> > > Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> > > ---
> > >  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
> > >  1 file changed, 30 insertions(+)
> > >
> > > diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h
> > > index 4b708f4e8eed..6549ce764400 100644
> > > --- a/include/linux/pm_runtime.h
> > > +++ b/include/linux/pm_runtime.h
> > > @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct device *dev)
> > >         return __pm_runtime_resume(dev, RPM_GET_PUT);
> > >  }
> > >
> > > +/**
> > > + * pm_runtime_general_get - Bump up usage counter of a device and resume it.
> > > + * @dev: Target device.
> > > + *
> > > + * Increase runtime PM usage counter of @dev first, and carry out runtime-resume
> > > + * of it synchronously. If __pm_runtime_resume return negative value(device is in
> > > + * error state), we to need decrease the usage counter before it return. If
> > > + * __pm_runtime_resume return positive value, it means the runtime of device has
> > > + * already been in active state, and we let the new wrapper return zero instead.
> > > + *
> > > + * The possible return values of this function is zero or negative value.
> > > + * zero:
> > > + *    - it means resume succeeed or runtime of device has already been active, the
> > > + *      runtime PM usage counter of @dev remains incremented.
> > > + * negative:
> > > + *    - it means failure and the runtime PM usage counter of @dev has been balanced.
> >
> > The kerneldoc above is kind of noisy and it is hard to figure out what
> > the helper really does from it.
> >
> > You could basically say something like "Resume @dev synchronously and
> > if that is successful, increment its runtime PM usage counter.  Return
> > 0 if the runtime PM usage counter of @dev has been incremented or a
> > negative error code otherwise."
> >
> > > + */
> > > +static inline int pm_runtime_general_get(struct device *dev)
> >
> > What about pm_runtime_resume_and_get()?
>
> We already have pm_runtime_get_if_active() - so perhaps
> pm_runtime_get_if_suspended() could be an option as well?

It doesn't work this way, though.

The "get" happens even if the device has not been suspended.
Rafael J. Wysocki Nov. 9, 2020, 4 p.m. UTC | #5
On Mon, Nov 9, 2020 at 4:50 PM zhangqilong <zhangqilong3@huawei.com> wrote:
>
> > operation to deal with usage counter
> >
> > On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong <zhangqilong3@huawei.com>
> > wrote:
> > >
> > > In many case, we need to check return value of pm_runtime_get_sync,
> > > but it brings a trouble to the usage counter processing. Many callers
> > > forget to decrease the usage counter when it failed. It has been
> > > discussed a lot[0][1]. So we add a function to deal with the usage
> > > counter for better coding.
> > >
> > > [0]https://lkml.org/lkml/2020/6/14/88
> > > [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/202005200951
> > > 48.10995-1-dinghao.liu@zju.edu.cn/
> > > Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> > > ---
> > >  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
> > >  1 file changed, 30 insertions(+)
> > >
> > > diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h
> > > index 4b708f4e8eed..6549ce764400 100644
> > > --- a/include/linux/pm_runtime.h
> > > +++ b/include/linux/pm_runtime.h
> > > @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct device
> > *dev)
> > >         return __pm_runtime_resume(dev, RPM_GET_PUT);  }
> > >
> > > +/**
> > > + * pm_runtime_general_get - Bump up usage counter of a device and
> > resume it.
> > > + * @dev: Target device.
> > > + *
> > > + * Increase runtime PM usage counter of @dev first, and carry out
> > > +runtime-resume
> > > + * of it synchronously. If __pm_runtime_resume return negative
> > > +value(device is in
> > > + * error state), we to need decrease the usage counter before it
> > > +return. If
> > > + * __pm_runtime_resume return positive value, it means the runtime of
> > > +device has
> > > + * already been in active state, and we let the new wrapper return zero
> > instead.
> > > + *
> > > + * The possible return values of this function is zero or negative value.
> > > + * zero:
> > > + *    - it means resume succeeed or runtime of device has already been
> > active, the
> > > + *      runtime PM usage counter of @dev remains incremented.
> > > + * negative:
> > > + *    - it means failure and the runtime PM usage counter of @dev has
> > been balanced.
> >
> > The kerneldoc above is kind of noisy and it is hard to figure out what the helper
> > really does from it.
> >
> > You could basically say something like "Resume @dev synchronously and if that
> > is successful, increment its runtime PM usage counter.  Return
> > 0 if the runtime PM usage counter of @dev has been incremented or a negative
> > error code otherwise."
> >
>
> How about the following description.
> /**
> 390  * pm_runtime_general_get - Bump up usage counter of a device and resume it.
> 391  * @dev: Target device.
> 392  *
> 393  * Increase runtime PM usage counter of @dev first, and carry out runtime-resume
> 394  * of it synchronously. If __pm_runtime_resume return negative value(device is in
> 395  * error state), we to need decrease the usage counter before it return. If
> 396  * __pm_runtime_resume return positive value, it means the runtime of device has
> 397  * already been in active state, and we let the new wrapper return zero instead.
> 398  *

If you add the paragraph below, the one above becomes redundant IMV.

> 399  * Resume @dev synchronously and if that is successful, and increment its runtime

"Resume @dev synchronously and if that is successful, increment its runtime"

(drop the extra "and").

> 400  * PM usage counter if it turn out to equal to 0. The runtime PM usage counter of

The "if it turn out to equal to 0" phrase is redundant (and the
grammar in it is incorrect).

> 401  * @dev has been incremented or a negative error code otherwise.
> 402  */

Why don't you use what I said verbatim?
Ulf Hansson Nov. 9, 2020, 4:05 p.m. UTC | #6
On Mon, 9 Nov 2020 at 16:54, Rafael J. Wysocki <rafael@kernel.org> wrote:
>
> On Mon, Nov 9, 2020 at 4:50 PM Ulf Hansson <ulf.hansson@linaro.org> wrote:
> >
> > On Mon, 9 Nov 2020 at 16:20, Rafael J. Wysocki <rafael@kernel.org> wrote:
> > >
> > > On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong <zhangqilong3@huawei.com> wrote:
> > > >
> > > > In many case, we need to check return value of pm_runtime_get_sync, but
> > > > it brings a trouble to the usage counter processing. Many callers forget
> > > > to decrease the usage counter when it failed. It has been discussed a
> > > > lot[0][1]. So we add a function to deal with the usage counter for better
> > > > coding.
> > > >
> > > > [0]https://lkml.org/lkml/2020/6/14/88
> > > > [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/20200520095148.10995-1-dinghao.liu@zju.edu.cn/
> > > > Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> > > > ---
> > > >  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
> > > >  1 file changed, 30 insertions(+)
> > > >
> > > > diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h
> > > > index 4b708f4e8eed..6549ce764400 100644
> > > > --- a/include/linux/pm_runtime.h
> > > > +++ b/include/linux/pm_runtime.h
> > > > @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct device *dev)
> > > >         return __pm_runtime_resume(dev, RPM_GET_PUT);
> > > >  }
> > > >
> > > > +/**
> > > > + * pm_runtime_general_get - Bump up usage counter of a device and resume it.
> > > > + * @dev: Target device.
> > > > + *
> > > > + * Increase runtime PM usage counter of @dev first, and carry out runtime-resume
> > > > + * of it synchronously. If __pm_runtime_resume return negative value(device is in
> > > > + * error state), we to need decrease the usage counter before it return. If
> > > > + * __pm_runtime_resume return positive value, it means the runtime of device has
> > > > + * already been in active state, and we let the new wrapper return zero instead.
> > > > + *
> > > > + * The possible return values of this function is zero or negative value.
> > > > + * zero:
> > > > + *    - it means resume succeeed or runtime of device has already been active, the
> > > > + *      runtime PM usage counter of @dev remains incremented.
> > > > + * negative:
> > > > + *    - it means failure and the runtime PM usage counter of @dev has been balanced.
> > >
> > > The kerneldoc above is kind of noisy and it is hard to figure out what
> > > the helper really does from it.
> > >
> > > You could basically say something like "Resume @dev synchronously and
> > > if that is successful, increment its runtime PM usage counter.  Return
> > > 0 if the runtime PM usage counter of @dev has been incremented or a
> > > negative error code otherwise."
> > >
> > > > + */
> > > > +static inline int pm_runtime_general_get(struct device *dev)
> > >
> > > What about pm_runtime_resume_and_get()?
> >
> > We already have pm_runtime_get_if_active() - so perhaps
> > pm_runtime_get_if_suspended() could be an option as well?
>
> It doesn't work this way, though.
>
> The "get" happens even if the device has not been suspended.

Yes, that's right - so pm_runtime_resume_and_get() is probably the
best we can pick then.

Kind regards
Uffe
Zhang Qilong Nov. 9, 2020, 4:15 p.m. UTC | #7
Hi

> 
> On Mon, Nov 9, 2020 at 4:50 PM zhangqilong <zhangqilong3@huawei.com>
> wrote:
> >
> > > operation to deal with usage counter
> > >
> > > On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong
> > > <zhangqilong3@huawei.com>
> > > wrote:
> > > >
> > > > In many case, we need to check return value of
> > > > pm_runtime_get_sync, but it brings a trouble to the usage counter
> > > > processing. Many callers forget to decrease the usage counter when
> > > > it failed. It has been discussed a lot[0][1]. So we add a function
> > > > to deal with the usage counter for better coding.
> > > >
> > > > [0]https://lkml.org/lkml/2020/6/14/88
> > > > [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/20200520
> > > > 0951 48.10995-1-dinghao.liu@zju.edu.cn/
> > > > Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> > > > ---
> > > >  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
> > > >  1 file changed, 30 insertions(+)
> > > >
> > > > diff --git a/include/linux/pm_runtime.h
> > > > b/include/linux/pm_runtime.h index 4b708f4e8eed..6549ce764400
> > > > 100644
> > > > --- a/include/linux/pm_runtime.h
> > > > +++ b/include/linux/pm_runtime.h
> > > > @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct
> > > > device
> > > *dev)
> > > >         return __pm_runtime_resume(dev, RPM_GET_PUT);  }
> > > >
> > > > +/**
> > > > + * pm_runtime_general_get - Bump up usage counter of a device and
> > > resume it.
> > > > + * @dev: Target device.
> > > > + *
> > > > + * Increase runtime PM usage counter of @dev first, and carry out
> > > > +runtime-resume
> > > > + * of it synchronously. If __pm_runtime_resume return negative
> > > > +value(device is in
> > > > + * error state), we to need decrease the usage counter before it
> > > > +return. If
> > > > + * __pm_runtime_resume return positive value, it means the
> > > > +runtime of device has
> > > > + * already been in active state, and we let the new wrapper
> > > > +return zero
> > > instead.
> > > > + *
> > > > + * The possible return values of this function is zero or negative value.
> > > > + * zero:
> > > > + *    - it means resume succeeed or runtime of device has already been
> > > active, the
> > > > + *      runtime PM usage counter of @dev remains incremented.
> > > > + * negative:
> > > > + *    - it means failure and the runtime PM usage counter of @dev has
> > > been balanced.
> > >
> > > The kerneldoc above is kind of noisy and it is hard to figure out
> > > what the helper really does from it.
> > >
> > > You could basically say something like "Resume @dev synchronously
> > > and if that is successful, increment its runtime PM usage counter.
> > > Return
> > > 0 if the runtime PM usage counter of @dev has been incremented or a
> > > negative error code otherwise."
> > >
> >
> > How about the following description.
> > /**
> > 390  * pm_runtime_general_get - Bump up usage counter of a device and
> resume it.
> > 391  * @dev: Target device.
> > 392  *
> > 393  * Increase runtime PM usage counter of @dev first, and carry out
> > runtime-resume
> > 394  * of it synchronously. If __pm_runtime_resume return negative
> > value(device is in
> > 395  * error state), we to need decrease the usage counter before it
> > return. If
> > 396  * __pm_runtime_resume return positive value, it means the runtime
> > of device has
> > 397  * already been in active state, and we let the new wrapper return zero
> instead.
> > 398  *
> 
> If you add the paragraph below, the one above becomes redundant IMV.
> 
> > 399  * Resume @dev synchronously and if that is successful, and
> > increment its runtime
> 
> "Resume @dev synchronously and if that is successful, increment its runtime"
> 
> (drop the extra "and").
> 
> > 400  * PM usage counter if it turn out to equal to 0. The runtime PM
> > usage counter of
> 
> The "if it turn out to equal to 0" phrase is redundant (and the grammar in it is
> incorrect).
> 
> > 401  * @dev has been incremented or a negative error code otherwise.
> > 402  */
> 
> Why don't you use what I said verbatim?

I had misunderstand just now, sorry for that. The description is as follows:
389 /**
390  * pm_runtime_resume_and_get - Bump up usage counter of a device and resume it.
391  * @dev: Target device.
392  *
393  * Resume @dev synchronously if that is successful, increment its runtime PM
394  * usage counter.  Return 0 if the runtime PM usage counter of @dev has been
395  * incremented or a negative error code otherwise.
396  */

Do you think it's OK?

Thanks,
Zhang
Rafael J. Wysocki Nov. 9, 2020, 4:40 p.m. UTC | #8
On Mon, Nov 9, 2020 at 5:15 PM zhangqilong <zhangqilong3@huawei.com> wrote:
>
> Hi
>
> >
> > On Mon, Nov 9, 2020 at 4:50 PM zhangqilong <zhangqilong3@huawei.com>
> > wrote:
> > >
> > > > operation to deal with usage counter
> > > >
> > > > On Mon, Nov 9, 2020 at 4:00 PM Zhang Qilong
> > > > <zhangqilong3@huawei.com>
> > > > wrote:
> > > > >
> > > > > In many case, we need to check return value of
> > > > > pm_runtime_get_sync, but it brings a trouble to the usage counter
> > > > > processing. Many callers forget to decrease the usage counter when
> > > > > it failed. It has been discussed a lot[0][1]. So we add a function
> > > > > to deal with the usage counter for better coding.
> > > > >
> > > > > [0]https://lkml.org/lkml/2020/6/14/88
> > > > > [1]https://patchwork.ozlabs.org/project/linux-tegra/patch/20200520
> > > > > 0951 48.10995-1-dinghao.liu@zju.edu.cn/
> > > > > Signed-off-by: Zhang Qilong <zhangqilong3@huawei.com>
> > > > > ---
> > > > >  include/linux/pm_runtime.h | 30 ++++++++++++++++++++++++++++++
> > > > >  1 file changed, 30 insertions(+)
> > > > >
> > > > > diff --git a/include/linux/pm_runtime.h
> > > > > b/include/linux/pm_runtime.h index 4b708f4e8eed..6549ce764400
> > > > > 100644
> > > > > --- a/include/linux/pm_runtime.h
> > > > > +++ b/include/linux/pm_runtime.h
> > > > > @@ -386,6 +386,36 @@ static inline int pm_runtime_get_sync(struct
> > > > > device
> > > > *dev)
> > > > >         return __pm_runtime_resume(dev, RPM_GET_PUT);  }
> > > > >
> > > > > +/**
> > > > > + * pm_runtime_general_get - Bump up usage counter of a device and
> > > > resume it.
> > > > > + * @dev: Target device.
> > > > > + *
> > > > > + * Increase runtime PM usage counter of @dev first, and carry out
> > > > > +runtime-resume
> > > > > + * of it synchronously. If __pm_runtime_resume return negative
> > > > > +value(device is in
> > > > > + * error state), we to need decrease the usage counter before it
> > > > > +return. If
> > > > > + * __pm_runtime_resume return positive value, it means the
> > > > > +runtime of device has
> > > > > + * already been in active state, and we let the new wrapper
> > > > > +return zero
> > > > instead.
> > > > > + *
> > > > > + * The possible return values of this function is zero or negative value.
> > > > > + * zero:
> > > > > + *    - it means resume succeeed or runtime of device has already been
> > > > active, the
> > > > > + *      runtime PM usage counter of @dev remains incremented.
> > > > > + * negative:
> > > > > + *    - it means failure and the runtime PM usage counter of @dev has
> > > > been balanced.
> > > >
> > > > The kerneldoc above is kind of noisy and it is hard to figure out
> > > > what the helper really does from it.
> > > >
> > > > You could basically say something like "Resume @dev synchronously
> > > > and if that is successful, increment its runtime PM usage counter.
> > > > Return
> > > > 0 if the runtime PM usage counter of @dev has been incremented or a
> > > > negative error code otherwise."
> > > >
> > >
> > > How about the following description.
> > > /**
> > > 390  * pm_runtime_general_get - Bump up usage counter of a device and
> > resume it.
> > > 391  * @dev: Target device.
> > > 392  *
> > > 393  * Increase runtime PM usage counter of @dev first, and carry out
> > > runtime-resume
> > > 394  * of it synchronously. If __pm_runtime_resume return negative
> > > value(device is in
> > > 395  * error state), we to need decrease the usage counter before it
> > > return. If
> > > 396  * __pm_runtime_resume return positive value, it means the runtime
> > > of device has
> > > 397  * already been in active state, and we let the new wrapper return zero
> > instead.
> > > 398  *
> >
> > If you add the paragraph below, the one above becomes redundant IMV.
> >
> > > 399  * Resume @dev synchronously and if that is successful, and
> > > increment its runtime
> >
> > "Resume @dev synchronously and if that is successful, increment its runtime"
> >
> > (drop the extra "and").
> >
> > > 400  * PM usage counter if it turn out to equal to 0. The runtime PM
> > > usage counter of
> >
> > The "if it turn out to equal to 0" phrase is redundant (and the grammar in it is
> > incorrect).
> >
> > > 401  * @dev has been incremented or a negative error code otherwise.
> > > 402  */
> >
> > Why don't you use what I said verbatim?
>
> I had misunderstand just now, sorry for that. The description is as follows:
> 389 /**
> 390  * pm_runtime_resume_and_get - Bump up usage counter of a device and resume it.
> 391  * @dev: Target device.
> 392  *
> 393  * Resume @dev synchronously if that is successful, increment its runtime PM

"Resume @dev synchronously and if that is successful, increment its runtime PM"

(missing "and").

> 394  * usage counter.  Return 0 if the runtime PM usage counter of @dev has been
> 395  * incremented or a negative error code otherwise.
> 396  */
>
> Do you think it's OK?

Apart from the above typo, yes it is.

Thanks!
diff mbox series

Patch

diff --git a/include/linux/pm_runtime.h b/include/linux/pm_runtime.h
index 4b708f4e8eed..6549ce764400 100644
--- a/include/linux/pm_runtime.h
+++ b/include/linux/pm_runtime.h
@@ -386,6 +386,36 @@  static inline int pm_runtime_get_sync(struct device *dev)
 	return __pm_runtime_resume(dev, RPM_GET_PUT);
 }
 
+/**
+ * pm_runtime_general_get - Bump up usage counter of a device and resume it.
+ * @dev: Target device.
+ *
+ * Increase runtime PM usage counter of @dev first, and carry out runtime-resume
+ * of it synchronously. If __pm_runtime_resume return negative value(device is in
+ * error state), we to need decrease the usage counter before it return. If
+ * __pm_runtime_resume return positive value, it means the runtime of device has
+ * already been in active state, and we let the new wrapper return zero instead.
+ *
+ * The possible return values of this function is zero or negative value.
+ * zero:
+ *    - it means resume succeeed or runtime of device has already been active, the
+ *      runtime PM usage counter of @dev remains incremented.
+ * negative:
+ *    - it means failure and the runtime PM usage counter of @dev has been balanced.
+ */
+static inline int pm_runtime_general_get(struct device *dev)
+{
+	int ret = 0;
+
+	ret = __pm_runtime_resume(dev, RPM_GET_PUT);
+	if (ret < 0) {
+		pm_runtime_put_noidle(dev);
+		return ret;
+	}
+
+	return 0;
+}
+
 /**
  * pm_runtime_put - Drop device usage counter and queue up "idle check" if 0.
  * @dev: Target device.