All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] dma-buf: fix kernel-doc warning in <linux/dma-buf.h>
@ 2020-08-31  4:16 ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2020-08-31  4:16 UTC (permalink / raw)
  To: linux-kernel
  Cc: Randy Dunlap, Sumit Semwal, Gustavo Padovan,
	Christian König, linux-media, dri-devel

Fix kernel-doc warning in <linux/dma-buf.h>:

../include/linux/dma-buf.h:330: warning: Function parameter or member 'name_lock' not described in 'dma_buf'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Gustavo Padovan <gustavo@padovan.org>
Cc: Christian König <christian.koenig@amd.com>
Cc: linux-media@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org
---
 include/linux/dma-buf.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- lnx-59-rc3.orig/include/linux/dma-buf.h
+++ lnx-59-rc3/include/linux/dma-buf.h
@@ -283,6 +283,7 @@ struct dma_buf_ops {
  * @exp_name: name of the exporter; useful for debugging.
  * @name: userspace-provided name; useful for accounting and debugging,
  *        protected by @resv.
+ * @name_lock: spinlock to protect name access
  * @owner: pointer to exporter module; used for refcounting when exporter is a
  *         kernel module.
  * @list_node: node for dma_buf accounting and debugging.
@@ -311,7 +312,7 @@ struct dma_buf {
 	void *vmap_ptr;
 	const char *exp_name;
 	const char *name;
-	spinlock_t name_lock; /* spinlock to protect name access */
+	spinlock_t name_lock;
 	struct module *owner;
 	struct list_head list_node;
 	void *priv;

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

* [PATCH] dma-buf: fix kernel-doc warning in <linux/dma-buf.h>
@ 2020-08-31  4:16 ` Randy Dunlap
  0 siblings, 0 replies; 4+ messages in thread
From: Randy Dunlap @ 2020-08-31  4:16 UTC (permalink / raw)
  To: linux-kernel
  Cc: Gustavo Padovan, Randy Dunlap, dri-devel, Christian König,
	linux-media

Fix kernel-doc warning in <linux/dma-buf.h>:

../include/linux/dma-buf.h:330: warning: Function parameter or member 'name_lock' not described in 'dma_buf'

Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: Gustavo Padovan <gustavo@padovan.org>
Cc: Christian König <christian.koenig@amd.com>
Cc: linux-media@vger.kernel.org
Cc: dri-devel@lists.freedesktop.org
---
 include/linux/dma-buf.h |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

--- lnx-59-rc3.orig/include/linux/dma-buf.h
+++ lnx-59-rc3/include/linux/dma-buf.h
@@ -283,6 +283,7 @@ struct dma_buf_ops {
  * @exp_name: name of the exporter; useful for debugging.
  * @name: userspace-provided name; useful for accounting and debugging,
  *        protected by @resv.
+ * @name_lock: spinlock to protect name access
  * @owner: pointer to exporter module; used for refcounting when exporter is a
  *         kernel module.
  * @list_node: node for dma_buf accounting and debugging.
@@ -311,7 +312,7 @@ struct dma_buf {
 	void *vmap_ptr;
 	const char *exp_name;
 	const char *name;
-	spinlock_t name_lock; /* spinlock to protect name access */
+	spinlock_t name_lock;
 	struct module *owner;
 	struct list_head list_node;
 	void *priv;
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: [PATCH] dma-buf: fix kernel-doc warning in <linux/dma-buf.h>
  2020-08-31  4:16 ` Randy Dunlap
@ 2020-08-31 10:00   ` Christian König
  -1 siblings, 0 replies; 4+ messages in thread
From: Christian König @ 2020-08-31 10:00 UTC (permalink / raw)
  To: Randy Dunlap, linux-kernel
  Cc: Sumit Semwal, Gustavo Padovan, linux-media, dri-devel

Am 31.08.20 um 06:16 schrieb Randy Dunlap:
> Fix kernel-doc warning in <linux/dma-buf.h>:
>
> ../include/linux/dma-buf.h:330: warning: Function parameter or member 'name_lock' not described in 'dma_buf'
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Gustavo Padovan <gustavo@padovan.org>
> Cc: Christian König <christian.koenig@amd.com>
> Cc: linux-media@vger.kernel.org
> Cc: dri-devel@lists.freedesktop.org

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   include/linux/dma-buf.h |    3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> --- lnx-59-rc3.orig/include/linux/dma-buf.h
> +++ lnx-59-rc3/include/linux/dma-buf.h
> @@ -283,6 +283,7 @@ struct dma_buf_ops {
>    * @exp_name: name of the exporter; useful for debugging.
>    * @name: userspace-provided name; useful for accounting and debugging,
>    *        protected by @resv.
> + * @name_lock: spinlock to protect name access
>    * @owner: pointer to exporter module; used for refcounting when exporter is a
>    *         kernel module.
>    * @list_node: node for dma_buf accounting and debugging.
> @@ -311,7 +312,7 @@ struct dma_buf {
>   	void *vmap_ptr;
>   	const char *exp_name;
>   	const char *name;
> -	spinlock_t name_lock; /* spinlock to protect name access */
> +	spinlock_t name_lock;
>   	struct module *owner;
>   	struct list_head list_node;
>   	void *priv;


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

* Re: [PATCH] dma-buf: fix kernel-doc warning in <linux/dma-buf.h>
@ 2020-08-31 10:00   ` Christian König
  0 siblings, 0 replies; 4+ messages in thread
From: Christian König @ 2020-08-31 10:00 UTC (permalink / raw)
  To: Randy Dunlap, linux-kernel; +Cc: Gustavo Padovan, dri-devel, linux-media

Am 31.08.20 um 06:16 schrieb Randy Dunlap:
> Fix kernel-doc warning in <linux/dma-buf.h>:
>
> ../include/linux/dma-buf.h:330: warning: Function parameter or member 'name_lock' not described in 'dma_buf'
>
> Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
> Cc: Sumit Semwal <sumit.semwal@linaro.org>
> Cc: Gustavo Padovan <gustavo@padovan.org>
> Cc: Christian König <christian.koenig@amd.com>
> Cc: linux-media@vger.kernel.org
> Cc: dri-devel@lists.freedesktop.org

Reviewed-by: Christian König <christian.koenig@amd.com>

> ---
>   include/linux/dma-buf.h |    3 ++-
>   1 file changed, 2 insertions(+), 1 deletion(-)
>
> --- lnx-59-rc3.orig/include/linux/dma-buf.h
> +++ lnx-59-rc3/include/linux/dma-buf.h
> @@ -283,6 +283,7 @@ struct dma_buf_ops {
>    * @exp_name: name of the exporter; useful for debugging.
>    * @name: userspace-provided name; useful for accounting and debugging,
>    *        protected by @resv.
> + * @name_lock: spinlock to protect name access
>    * @owner: pointer to exporter module; used for refcounting when exporter is a
>    *         kernel module.
>    * @list_node: node for dma_buf accounting and debugging.
> @@ -311,7 +312,7 @@ struct dma_buf {
>   	void *vmap_ptr;
>   	const char *exp_name;
>   	const char *name;
> -	spinlock_t name_lock; /* spinlock to protect name access */
> +	spinlock_t name_lock;
>   	struct module *owner;
>   	struct list_head list_node;
>   	void *priv;

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2020-08-31 10:00 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-31  4:16 [PATCH] dma-buf: fix kernel-doc warning in <linux/dma-buf.h> Randy Dunlap
2020-08-31  4:16 ` Randy Dunlap
2020-08-31 10:00 ` Christian König
2020-08-31 10:00   ` Christian König

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.