All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] docs: android: Fix missing kernel-doc entries in binder.c
@ 2025-09-25  2:55 Kriish Sharma
  2025-10-03 16:56 ` Carlos Llamas
  0 siblings, 1 reply; 3+ messages in thread
From: Kriish Sharma @ 2025-09-25  2:55 UTC (permalink / raw)
  To: gregkh, arve, tkjos, maco, joelagnelf, brauner, cmllamas, surenb
  Cc: linux-kernel, Kriish Sharma

Fix several kernel-doc warnings in `drivers/android/binder.c` caused by
undocumented struct members and function parameters.

In particular, add missing documentation for the `@thread` parameter in
binder_free_buf_locked().

Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
---
 drivers/android/binder.c | 17 +++++++++--------
 1 file changed, 9 insertions(+), 8 deletions(-)

diff --git a/drivers/android/binder.c b/drivers/android/binder.c
index 312b462e349d..d30d27bfc634 100644
--- a/drivers/android/binder.c
+++ b/drivers/android/binder.c
@@ -2417,10 +2417,10 @@ static int binder_translate_fd(u32 fd, binder_size_t fd_offset,
 
 /**
  * struct binder_ptr_fixup - data to be fixed-up in target buffer
- * @offset	offset in target buffer to fixup
- * @skip_size	bytes to skip in copy (fixup will be written later)
- * @fixup_data	data to write at fixup offset
- * @node	list node
+ * @offset:	offset in target buffer to fixup
+ * @skip_size:	bytes to skip in copy (fixup will be written later)
+ * @fixup_data:	data to write at fixup offset
+ * @node:	list node
  *
  * This is used for the pointer fixup list (pf) which is created and consumed
  * during binder_transaction() and is only accessed locally. No
@@ -2437,10 +2437,10 @@ struct binder_ptr_fixup {
 
 /**
  * struct binder_sg_copy - scatter-gather data to be copied
- * @offset		offset in target buffer
- * @sender_uaddr	user address in source buffer
- * @length		bytes to copy
- * @node		list node
+ * @offset:		offset in target buffer
+ * @sender_uaddr:	user address in source buffer
+ * @length:		bytes to copy
+ * @node:		list node
  *
  * This is used for the sg copy list (sgc) which is created and consumed
  * during binder_transaction() and is only accessed locally. No
@@ -3997,6 +3997,7 @@ binder_freeze_notification_done(struct binder_proc *proc,
  * @proc:	binder proc that owns buffer
  * @buffer:	buffer to be freed
  * @is_failure:	failed to send transaction
+ * @thread: binder thread performing the buffer release
  *
  * If buffer for an async transaction, enqueue the next async
  * transaction from the node.
-- 
2.34.1


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

* Re: [PATCH] docs: android: Fix missing kernel-doc entries in binder.c
  2025-09-25  2:55 [PATCH] docs: android: Fix missing kernel-doc entries in binder.c Kriish Sharma
@ 2025-10-03 16:56 ` Carlos Llamas
  2025-10-03 17:29   ` Kriish Sharma
  0 siblings, 1 reply; 3+ messages in thread
From: Carlos Llamas @ 2025-10-03 16:56 UTC (permalink / raw)
  To: Kriish Sharma
  Cc: gregkh, arve, tkjos, maco, joelagnelf, brauner, surenb,
	linux-kernel

On Thu, Sep 25, 2025 at 02:55:17AM +0000, Kriish Sharma wrote:
> Fix several kernel-doc warnings in `drivers/android/binder.c` caused by
> undocumented struct members and function parameters.
> 
> In particular, add missing documentation for the `@thread` parameter in
> binder_free_buf_locked().
> 
> Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
> ---
>  drivers/android/binder.c | 17 +++++++++--------
>  1 file changed, 9 insertions(+), 8 deletions(-)
> 
> diff --git a/drivers/android/binder.c b/drivers/android/binder.c
> index 312b462e349d..d30d27bfc634 100644
> --- a/drivers/android/binder.c
> +++ b/drivers/android/binder.c
> @@ -2417,10 +2417,10 @@ static int binder_translate_fd(u32 fd, binder_size_t fd_offset,
>  
>  /**
>   * struct binder_ptr_fixup - data to be fixed-up in target buffer
> - * @offset	offset in target buffer to fixup
> - * @skip_size	bytes to skip in copy (fixup will be written later)
> - * @fixup_data	data to write at fixup offset
> - * @node	list node
> + * @offset:	offset in target buffer to fixup
> + * @skip_size:	bytes to skip in copy (fixup will be written later)
> + * @fixup_data:	data to write at fixup offset
> + * @node:	list node
>   *
>   * This is used for the pointer fixup list (pf) which is created and consumed
>   * during binder_transaction() and is only accessed locally. No
> @@ -2437,10 +2437,10 @@ struct binder_ptr_fixup {
>  
>  /**
>   * struct binder_sg_copy - scatter-gather data to be copied
> - * @offset		offset in target buffer
> - * @sender_uaddr	user address in source buffer
> - * @length		bytes to copy
> - * @node		list node
> + * @offset:		offset in target buffer
> + * @sender_uaddr:	user address in source buffer
> + * @length:		bytes to copy
> + * @node:		list node
>   *
>   * This is used for the sg copy list (sgc) which is created and consumed
>   * during binder_transaction() and is only accessed locally. No
> @@ -3997,6 +3997,7 @@ binder_freeze_notification_done(struct binder_proc *proc,
>   * @proc:	binder proc that owns buffer
>   * @buffer:	buffer to be freed
>   * @is_failure:	failed to send transaction
> + * @thread: binder thread performing the buffer release

This is missing the alignment that other members have. Also, please keep
the same order of the arguments, so @thread should go after @proc.

>   *
>   * If buffer for an async transaction, enqueue the next async
>   * transaction from the node.
> -- 
> 2.34.1
> 

BTW, your subject is "docs: android:" which makes me think this is part
of Documentation/. Please just use "binder:" instead.

Thanks,
Carlos Llamas

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

* Re: [PATCH] docs: android: Fix missing kernel-doc entries in binder.c
  2025-10-03 16:56 ` Carlos Llamas
@ 2025-10-03 17:29   ` Kriish Sharma
  0 siblings, 0 replies; 3+ messages in thread
From: Kriish Sharma @ 2025-10-03 17:29 UTC (permalink / raw)
  To: Carlos Llamas
  Cc: gregkh, arve, tkjos, maco, joelagnelf, brauner, surenb,
	linux-kernel

Hi Carlos,

Thanks for the feedback. I’ll update the patch with the correct
subject, align @thread, and reorder it after @proc. Will post v2 soon.

Best,
Kriish

On Fri, Oct 3, 2025 at 10:27 PM Carlos Llamas <cmllamas@google.com> wrote:
>
> On Thu, Sep 25, 2025 at 02:55:17AM +0000, Kriish Sharma wrote:
> > Fix several kernel-doc warnings in `drivers/android/binder.c` caused by
> > undocumented struct members and function parameters.
> >
> > In particular, add missing documentation for the `@thread` parameter in
> > binder_free_buf_locked().
> >
> > Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
> > ---
> >  drivers/android/binder.c | 17 +++++++++--------
> >  1 file changed, 9 insertions(+), 8 deletions(-)
> >
> > diff --git a/drivers/android/binder.c b/drivers/android/binder.c
> > index 312b462e349d..d30d27bfc634 100644
> > --- a/drivers/android/binder.c
> > +++ b/drivers/android/binder.c
> > @@ -2417,10 +2417,10 @@ static int binder_translate_fd(u32 fd, binder_size_t fd_offset,
> >
> >  /**
> >   * struct binder_ptr_fixup - data to be fixed-up in target buffer
> > - * @offset   offset in target buffer to fixup
> > - * @skip_size        bytes to skip in copy (fixup will be written later)
> > - * @fixup_data       data to write at fixup offset
> > - * @node     list node
> > + * @offset:  offset in target buffer to fixup
> > + * @skip_size:       bytes to skip in copy (fixup will be written later)
> > + * @fixup_data:      data to write at fixup offset
> > + * @node:    list node
> >   *
> >   * This is used for the pointer fixup list (pf) which is created and consumed
> >   * during binder_transaction() and is only accessed locally. No
> > @@ -2437,10 +2437,10 @@ struct binder_ptr_fixup {
> >
> >  /**
> >   * struct binder_sg_copy - scatter-gather data to be copied
> > - * @offset           offset in target buffer
> > - * @sender_uaddr     user address in source buffer
> > - * @length           bytes to copy
> > - * @node             list node
> > + * @offset:          offset in target buffer
> > + * @sender_uaddr:    user address in source buffer
> > + * @length:          bytes to copy
> > + * @node:            list node
> >   *
> >   * This is used for the sg copy list (sgc) which is created and consumed
> >   * during binder_transaction() and is only accessed locally. No
> > @@ -3997,6 +3997,7 @@ binder_freeze_notification_done(struct binder_proc *proc,
> >   * @proc:    binder proc that owns buffer
> >   * @buffer:  buffer to be freed
> >   * @is_failure:      failed to send transaction
> > + * @thread: binder thread performing the buffer release
>
> This is missing the alignment that other members have. Also, please keep
> the same order of the arguments, so @thread should go after @proc.
>
> >   *
> >   * If buffer for an async transaction, enqueue the next async
> >   * transaction from the node.
> > --
> > 2.34.1
> >
>
> BTW, your subject is "docs: android:" which makes me think this is part
> of Documentation/. Please just use "binder:" instead.
>
> Thanks,
> Carlos Llamas

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

end of thread, other threads:[~2025-10-03 17:29 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-09-25  2:55 [PATCH] docs: android: Fix missing kernel-doc entries in binder.c Kriish Sharma
2025-10-03 16:56 ` Carlos Llamas
2025-10-03 17:29   ` Kriish Sharma

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.