* [PATCH] net: skbuff: Remove some excess struct-member documentation
@ 2023-12-19 0:26 Jonathan Corbet
2023-12-19 4:31 ` Randy Dunlap
2023-12-22 23:20 ` patchwork-bot+netdevbpf
0 siblings, 2 replies; 3+ messages in thread
From: Jonathan Corbet @ 2023-12-19 0:26 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: netdev, linux-kernel
Remove documentation for nonexistent structure members, addressing these
warnings:
./include/linux/skbuff.h:1063: warning: Excess struct member 'sp' description in 'sk_buff'
./include/linux/skbuff.h:1063: warning: Excess struct member 'nf_bridge' description in 'sk_buff'
Signed-off-by: Jonathan Corbet <corbet@lwn.net>
---
include/linux/skbuff.h | 2 --
1 file changed, 2 deletions(-)
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 27998f73183e..1cdab90a10a2 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -742,7 +742,6 @@ typedef unsigned char *sk_buff_data_t;
* @dev_scratch: (aka @dev) alternate use of @dev when @dev would be %NULL
* @cb: Control buffer. Free for use by every layer. Put private vars here
* @_skb_refdst: destination entry (with norefcount bit)
- * @sp: the security path, used for xfrm
* @len: Length of actual data
* @data_len: Data length
* @mac_len: Length of link layer header
@@ -776,7 +775,6 @@ typedef unsigned char *sk_buff_data_t;
* @tcp_tsorted_anchor: list structure for TCP (tp->tsorted_sent_queue)
* @_sk_redir: socket redirection information for skmsg
* @_nfct: Associated connection, if any (with nfctinfo bits)
- * @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
* @skb_iif: ifindex of device we arrived on
* @tc_index: Traffic control index
* @hash: the packet hash
--
2.43.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] net: skbuff: Remove some excess struct-member documentation
2023-12-19 0:26 [PATCH] net: skbuff: Remove some excess struct-member documentation Jonathan Corbet
@ 2023-12-19 4:31 ` Randy Dunlap
2023-12-22 23:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: Randy Dunlap @ 2023-12-19 4:31 UTC (permalink / raw)
To: Jonathan Corbet, Jakub Kicinski; +Cc: netdev, linux-kernel
On 12/18/23 16:26, Jonathan Corbet wrote:
> Remove documentation for nonexistent structure members, addressing these
> warnings:
>
> ./include/linux/skbuff.h:1063: warning: Excess struct member 'sp' description in 'sk_buff'
> ./include/linux/skbuff.h:1063: warning: Excess struct member 'nf_bridge' description in 'sk_buff'
>
> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
Reviewed-by: Randy Dunlap <rdunlap@infradead.org>
Thanks.
> ---
> include/linux/skbuff.h | 2 --
> 1 file changed, 2 deletions(-)
>
> diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
> index 27998f73183e..1cdab90a10a2 100644
> --- a/include/linux/skbuff.h
> +++ b/include/linux/skbuff.h
> @@ -742,7 +742,6 @@ typedef unsigned char *sk_buff_data_t;
> * @dev_scratch: (aka @dev) alternate use of @dev when @dev would be %NULL
> * @cb: Control buffer. Free for use by every layer. Put private vars here
> * @_skb_refdst: destination entry (with norefcount bit)
> - * @sp: the security path, used for xfrm
> * @len: Length of actual data
> * @data_len: Data length
> * @mac_len: Length of link layer header
> @@ -776,7 +775,6 @@ typedef unsigned char *sk_buff_data_t;
> * @tcp_tsorted_anchor: list structure for TCP (tp->tsorted_sent_queue)
> * @_sk_redir: socket redirection information for skmsg
> * @_nfct: Associated connection, if any (with nfctinfo bits)
> - * @nf_bridge: Saved data about a bridged frame - see br_netfilter.c
> * @skb_iif: ifindex of device we arrived on
> * @tc_index: Traffic control index
> * @hash: the packet hash
--
#Randy
https://people.kernel.org/tglx/notes-about-netiquette
https://subspace.kernel.org/etiquette.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] net: skbuff: Remove some excess struct-member documentation
2023-12-19 0:26 [PATCH] net: skbuff: Remove some excess struct-member documentation Jonathan Corbet
2023-12-19 4:31 ` Randy Dunlap
@ 2023-12-22 23:20 ` patchwork-bot+netdevbpf
1 sibling, 0 replies; 3+ messages in thread
From: patchwork-bot+netdevbpf @ 2023-12-22 23:20 UTC (permalink / raw)
To: Jonathan Corbet; +Cc: kuba, netdev, linux-kernel
Hello:
This patch was applied to netdev/net-next.git (main)
by David S. Miller <davem@davemloft.net>:
On Mon, 18 Dec 2023 17:26:26 -0700 you wrote:
> Remove documentation for nonexistent structure members, addressing these
> warnings:
>
> ./include/linux/skbuff.h:1063: warning: Excess struct member 'sp' description in 'sk_buff'
> ./include/linux/skbuff.h:1063: warning: Excess struct member 'nf_bridge' description in 'sk_buff'
>
> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
>
> [...]
Here is the summary with links:
- net: skbuff: Remove some excess struct-member documentation
https://git.kernel.org/netdev/net-next/c/dcc3e46472d6
You are awesome, thank you!
--
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/patchwork/pwbot.html
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-12-22 23:20 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-12-19 0:26 [PATCH] net: skbuff: Remove some excess struct-member documentation Jonathan Corbet
2023-12-19 4:31 ` Randy Dunlap
2023-12-22 23:20 ` patchwork-bot+netdevbpf
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox