tipc: fixup kerneldoc comment for struct tipc_node

Message ID 20240220122436.485112-1-peter.griffin@linaro.org
State New
Headers
Series tipc: fixup kerneldoc comment for struct tipc_node |

Commit Message

Peter Griffin Feb. 20, 2024, 12:24 p.m. UTC
  Fixes the following warnings

linux/net/tipc/node.c:150: warning: Excess struct member 'inputq' description in 'tipc_node'
linux/net/tipc/node.c:150: warning: Excess struct member 'namedq' description in 'tipc_node'

Signed-off-by: Peter Griffin <peter.griffin@linaro.org>
---
 net/tipc/node.c | 2 --
 1 file changed, 2 deletions(-)
  

Comments

Randy Dunlap Feb. 20, 2024, 3:57 p.m. UTC | #1
On 2/20/24 04:24, Peter Griffin wrote:
> Fixes the following warnings
> 
> linux/net/tipc/node.c:150: warning: Excess struct member 'inputq' description in 'tipc_node'
> linux/net/tipc/node.c:150: warning: Excess struct member 'namedq' description in 'tipc_node'
> 
> Signed-off-by: Peter Griffin <peter.griffin@linaro.org>

i.e., same as
https://lore.kernel.org/lkml/20240112050010.25626-1-rdunlap@infradead.org/

from Jan. 11, 2024....

Thanks.

> ---
>  net/tipc/node.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/net/tipc/node.c b/net/tipc/node.c
> index 3105abe97bb9..c1e890a82434 100644
> --- a/net/tipc/node.c
> +++ b/net/tipc/node.c
> @@ -86,8 +86,6 @@ struct tipc_bclink_entry {
>   * @lock: rwlock governing access to structure
>   * @net: the applicable net namespace
>   * @hash: links to adjacent nodes in unsorted hash chain
> - * @inputq: pointer to input queue containing messages for msg event
> - * @namedq: pointer to name table input queue with name table messages
>   * @active_links: bearer ids of active links, used as index into links[] array
>   * @links: array containing references to all links to node
>   * @bc_entry: broadcast link entry
  

Patch

diff --git a/net/tipc/node.c b/net/tipc/node.c
index 3105abe97bb9..c1e890a82434 100644
--- a/net/tipc/node.c
+++ b/net/tipc/node.c
@@ -86,8 +86,6 @@  struct tipc_bclink_entry {
  * @lock: rwlock governing access to structure
  * @net: the applicable net namespace
  * @hash: links to adjacent nodes in unsorted hash chain
- * @inputq: pointer to input queue containing messages for msg event
- * @namedq: pointer to name table input queue with name table messages
  * @active_links: bearer ids of active links, used as index into links[] array
  * @links: array containing references to all links to node
  * @bc_entry: broadcast link entry