* [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc
@ 2022-01-20 9:48 Jani Nikula
2022-01-20 11:29 ` Daniel Vetter
2022-01-20 11:45 ` Stephen Rothwell
0 siblings, 2 replies; 5+ messages in thread
From: Jani Nikula @ 2022-01-20 9:48 UTC (permalink / raw)
To: dri-devel; +Cc: jani.nikula, Stephen Rothwell, intel-gfx
The stack_depot member was added without kernel-doc, leading to below
warning. Fix it.
./include/drm/drm_modeset_lock.h:74: warning: Function parameter or
member 'stack_depot' not described in 'drm_modeset_acquire_ctx'
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Fixes: cd06ab2fd48f ("drm/locking: add backtrace for locking contended locks without backoff")
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
include/drm/drm_modeset_lock.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/include/drm/drm_modeset_lock.h b/include/drm/drm_modeset_lock.h
index b84693fbd2b5..ec4f543c3d95 100644
--- a/include/drm/drm_modeset_lock.h
+++ b/include/drm/drm_modeset_lock.h
@@ -34,6 +34,7 @@ struct drm_modeset_lock;
* struct drm_modeset_acquire_ctx - locking context (see ww_acquire_ctx)
* @ww_ctx: base acquire ctx
* @contended: used internally for -EDEADLK handling
+ * @stack_depot: used internally for contention debugging
* @locked: list of held locks
* @trylock_only: trylock mode used in atomic contexts/panic notifiers
* @interruptible: whether interruptible locking should be used.
--
2.30.2
^ permalink raw reply related [flat|nested] 5+ messages in thread* Re: [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc
2022-01-20 9:48 [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc Jani Nikula
@ 2022-01-20 11:29 ` Daniel Vetter
2022-01-20 11:48 ` Jani Nikula
2022-01-20 12:42 ` Jani Nikula
2022-01-20 11:45 ` Stephen Rothwell
1 sibling, 2 replies; 5+ messages in thread
From: Daniel Vetter @ 2022-01-20 11:29 UTC (permalink / raw)
To: Jani Nikula; +Cc: Stephen Rothwell, intel-gfx, dri-devel
On Thu, Jan 20, 2022 at 10:49 AM Jani Nikula <jani.nikula@intel.com> wrote:
>
> The stack_depot member was added without kernel-doc, leading to below
> warning. Fix it.
>
> ./include/drm/drm_modeset_lock.h:74: warning: Function parameter or
> member 'stack_depot' not described in 'drm_modeset_acquire_ctx'
>
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Fixes: cd06ab2fd48f ("drm/locking: add backtrace for locking contended locks without backoff")
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> include/drm/drm_modeset_lock.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/include/drm/drm_modeset_lock.h b/include/drm/drm_modeset_lock.h
> index b84693fbd2b5..ec4f543c3d95 100644
> --- a/include/drm/drm_modeset_lock.h
> +++ b/include/drm/drm_modeset_lock.h
> @@ -34,6 +34,7 @@ struct drm_modeset_lock;
> * struct drm_modeset_acquire_ctx - locking context (see ww_acquire_ctx)
> * @ww_ctx: base acquire ctx
> * @contended: used internally for -EDEADLK handling
> + * @stack_depot: used internally for contention debugging
Uh would be nice to switch to the inline style, since we already have
inline comments (just not kerneldoc). Either way:
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
> * @locked: list of held locks
> * @trylock_only: trylock mode used in atomic contexts/panic notifiers
> * @interruptible: whether interruptible locking should be used.
> --
> 2.30.2
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc
2022-01-20 11:29 ` Daniel Vetter
@ 2022-01-20 11:48 ` Jani Nikula
2022-01-20 12:42 ` Jani Nikula
1 sibling, 0 replies; 5+ messages in thread
From: Jani Nikula @ 2022-01-20 11:48 UTC (permalink / raw)
To: Daniel Vetter; +Cc: Stephen Rothwell, intel-gfx, dri-devel
On Thu, 20 Jan 2022, Daniel Vetter <daniel@ffwll.ch> wrote:
> On Thu, Jan 20, 2022 at 10:49 AM Jani Nikula <jani.nikula@intel.com> wrote:
>>
>> The stack_depot member was added without kernel-doc, leading to below
>> warning. Fix it.
>>
>> ./include/drm/drm_modeset_lock.h:74: warning: Function parameter or
>> member 'stack_depot' not described in 'drm_modeset_acquire_ctx'
>>
>> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
>> Fixes: cd06ab2fd48f ("drm/locking: add backtrace for locking contended locks without backoff")
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>> include/drm/drm_modeset_lock.h | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/include/drm/drm_modeset_lock.h b/include/drm/drm_modeset_lock.h
>> index b84693fbd2b5..ec4f543c3d95 100644
>> --- a/include/drm/drm_modeset_lock.h
>> +++ b/include/drm/drm_modeset_lock.h
>> @@ -34,6 +34,7 @@ struct drm_modeset_lock;
>> * struct drm_modeset_acquire_ctx - locking context (see ww_acquire_ctx)
>> * @ww_ctx: base acquire ctx
>> * @contended: used internally for -EDEADLK handling
>> + * @stack_depot: used internally for contention debugging
>
> Uh would be nice to switch to the inline style, since we already have
> inline comments (just not kerneldoc). Either way:
Considered that, but looks like it's been intentionally split to
kernel-doc documentation and internal comments, and just wanted to get
this quick fix out of the way.
>
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Thanks!
>
>
>> * @locked: list of held locks
>> * @trylock_only: trylock mode used in atomic contexts/panic notifiers
>> * @interruptible: whether interruptible locking should be used.
>> --
>> 2.30.2
>>
--
Jani Nikula, Intel Open Source Graphics Center
^ permalink raw reply [flat|nested] 5+ messages in thread* Re: [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc
2022-01-20 11:29 ` Daniel Vetter
2022-01-20 11:48 ` Jani Nikula
@ 2022-01-20 12:42 ` Jani Nikula
1 sibling, 0 replies; 5+ messages in thread
From: Jani Nikula @ 2022-01-20 12:42 UTC (permalink / raw)
To: Daniel Vetter; +Cc: Stephen Rothwell, intel-gfx, dri-devel
On Thu, 20 Jan 2022, Daniel Vetter <daniel@ffwll.ch> wrote:
> On Thu, Jan 20, 2022 at 10:49 AM Jani Nikula <jani.nikula@intel.com> wrote:
>>
>> The stack_depot member was added without kernel-doc, leading to below
>> warning. Fix it.
>>
>> ./include/drm/drm_modeset_lock.h:74: warning: Function parameter or
>> member 'stack_depot' not described in 'drm_modeset_acquire_ctx'
>>
>> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
>> Fixes: cd06ab2fd48f ("drm/locking: add backtrace for locking contended locks without backoff")
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>> include/drm/drm_modeset_lock.h | 1 +
>> 1 file changed, 1 insertion(+)
>>
>> diff --git a/include/drm/drm_modeset_lock.h b/include/drm/drm_modeset_lock.h
>> index b84693fbd2b5..ec4f543c3d95 100644
>> --- a/include/drm/drm_modeset_lock.h
>> +++ b/include/drm/drm_modeset_lock.h
>> @@ -34,6 +34,7 @@ struct drm_modeset_lock;
>> * struct drm_modeset_acquire_ctx - locking context (see ww_acquire_ctx)
>> * @ww_ctx: base acquire ctx
>> * @contended: used internally for -EDEADLK handling
>> + * @stack_depot: used internally for contention debugging
>
> Uh would be nice to switch to the inline style, since we already have
> inline comments (just not kerneldoc). Either way:
>
> Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Thanks for the review and testing, pushed to drm-misc-next.
BR,
Jani.
>
>
>> * @locked: list of held locks
>> * @trylock_only: trylock mode used in atomic contexts/panic notifiers
>> * @interruptible: whether interruptible locking should be used.
>> --
>> 2.30.2
>>
--
Jani Nikula, Intel Open Source Graphics Center
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc
2022-01-20 9:48 [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc Jani Nikula
2022-01-20 11:29 ` Daniel Vetter
@ 2022-01-20 11:45 ` Stephen Rothwell
1 sibling, 0 replies; 5+ messages in thread
From: Stephen Rothwell @ 2022-01-20 11:45 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx, dri-devel
[-- Attachment #1: Type: text/plain, Size: 1403 bytes --]
Hi Jani,
On Thu, 20 Jan 2022 11:48:56 +0200 Jani Nikula <jani.nikula@intel.com> wrote:
>
> The stack_depot member was added without kernel-doc, leading to below
> warning. Fix it.
>
> ./include/drm/drm_modeset_lock.h:74: warning: Function parameter or
> member 'stack_depot' not described in 'drm_modeset_acquire_ctx'
>
> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
> Fixes: cd06ab2fd48f ("drm/locking: add backtrace for locking contended locks without backoff")
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> include/drm/drm_modeset_lock.h | 1 +
> 1 file changed, 1 insertion(+)
>
> diff --git a/include/drm/drm_modeset_lock.h b/include/drm/drm_modeset_lock.h
> index b84693fbd2b5..ec4f543c3d95 100644
> --- a/include/drm/drm_modeset_lock.h
> +++ b/include/drm/drm_modeset_lock.h
> @@ -34,6 +34,7 @@ struct drm_modeset_lock;
> * struct drm_modeset_acquire_ctx - locking context (see ww_acquire_ctx)
> * @ww_ctx: base acquire ctx
> * @contended: used internally for -EDEADLK handling
> + * @stack_depot: used internally for contention debugging
> * @locked: list of held locks
> * @trylock_only: trylock mode used in atomic contexts/panic notifiers
> * @interruptible: whether interruptible locking should be used.
> --
> 2.30.2
>
Tested-by: Stephen Rothwell <sfr@canb.auug.org.au>
Thanks.
--
Cheers,
Stephen Rothwell
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 488 bytes --]
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2022-01-20 12:43 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-01-20 9:48 [PATCH] drm/locking: fix drm_modeset_acquire_ctx kernel-doc Jani Nikula
2022-01-20 11:29 ` Daniel Vetter
2022-01-20 11:48 ` Jani Nikula
2022-01-20 12:42 ` Jani Nikula
2022-01-20 11:45 ` Stephen Rothwell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox