diff options
author | Randy Dunlap <rdunlap@infradead.org> | 2020-09-06 20:32:30 -0700 |
---|---|---|
committer | Jakub Kicinski <kuba@kernel.org> | 2020-09-07 12:46:58 -0700 |
commit | ffa59b0b396cb2c0ea6712ff30ee05c35d4c9c8d (patch) | |
tree | 1d9743ac211b27245946ae0e3004d6a4587f27b2 /include/linux/netdevice.h | |
parent | eb02d39ad3099c3dcd96c5b3fdc0303541766ed1 (diff) | |
download | linux-stable-ffa59b0b396cb2c0ea6712ff30ee05c35d4c9c8d.tar.gz linux-stable-ffa59b0b396cb2c0ea6712ff30ee05c35d4c9c8d.tar.bz2 linux-stable-ffa59b0b396cb2c0ea6712ff30ee05c35d4c9c8d.zip |
netdevice.h: fix xdp_state kernel-doc warning
Fix kernel-doc warning in <linux/netdevice.h>:
../include/linux/netdevice.h:2158: warning: Function parameter or member 'xdp_state' not described in 'net_device'
Fixes: 7f0a838254bd ("bpf, xdp: Maintain info on attached XDP BPF programs in net_device")
Signed-off-by: Randy Dunlap <rdunlap@infradead.org>
Cc: Andrii Nakryiko <andriin@fb.com>
Cc: Alexei Starovoitov <ast@kernel.org>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Diffstat (limited to 'include/linux/netdevice.h')
-rw-r--r-- | include/linux/netdevice.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/netdevice.h b/include/linux/netdevice.h index bf0e313486be..7bd4fcdd0738 100644 --- a/include/linux/netdevice.h +++ b/include/linux/netdevice.h @@ -1849,6 +1849,7 @@ enum netdev_priv_flags { * @udp_tunnel_nic_info: static structure describing the UDP tunnel * offload capabilities of the device * @udp_tunnel_nic: UDP tunnel offload state + * @xdp_state: stores info on attached XDP BPF programs * * FIXME: cleanup struct net_device such that network protocol info * moves out. |