aboutsummaryrefslogtreecommitdiffstats
path: root/net/netfilter/nft_set_pipapo_avx2.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2021-05-29 18:50:45 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2021-06-01 23:53:51 +0200
commit89258f8e4148630a7d327d23ce55b6f80b290ff4 (patch)
tree7977fe3b6ec0239b03f3668fb262185a17cebe95 /net/netfilter/nft_set_pipapo_avx2.c
parentnetfilter: nf_tables: remove xt_action_param from nft_pktinfo (diff)
downloadlinux-dev-89258f8e4148630a7d327d23ce55b6f80b290ff4.tar.xz
linux-dev-89258f8e4148630a7d327d23ce55b6f80b290ff4.zip
netfilter: nft_set_pipapo_avx2: fix up description warnings
W=1: net/netfilter/nft_set_pipapo_avx2.c:159: warning: Excess function parameter 'len' description in 'nft_pipapo_avx2_refill' net/netfilter/nft_set_pipapo_avx2.c:1124: warning: Function parameter or member 'key' not described in 'nft_pipapo_avx2_lookup' net/netfilter/nft_set_pipapo_avx2.c:1124: warning: Excess function parameter 'elem' description in 'nft_pipapo_avx2_lookup' Signed-off-by: Florian Westphal <fw@strlen.de> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/netfilter/nft_set_pipapo_avx2.c')
-rw-r--r--net/netfilter/nft_set_pipapo_avx2.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/net/netfilter/nft_set_pipapo_avx2.c b/net/netfilter/nft_set_pipapo_avx2.c
index 1c2620923a61..e517663e0cd1 100644
--- a/net/netfilter/nft_set_pipapo_avx2.c
+++ b/net/netfilter/nft_set_pipapo_avx2.c
@@ -142,7 +142,6 @@ static void nft_pipapo_avx2_fill(unsigned long *data, int start, int len)
* @map: Bitmap to be scanned for set bits
* @dst: Destination bitmap
* @mt: Mapping table containing bit set specifiers
- * @len: Length of bitmap in longs
* @last: Return index of first set bit, if this is the last field
*
* This is an alternative implementation of pipapo_refill() suitable for usage
@@ -1109,7 +1108,7 @@ bool nft_pipapo_avx2_estimate(const struct nft_set_desc *desc, u32 features,
* nft_pipapo_avx2_lookup() - Lookup function for AVX2 implementation
* @net: Network namespace
* @set: nftables API set representation
- * @elem: nftables API element representation containing key data
+ * @key: nftables API element representation containing key data
* @ext: nftables API extension pointer, filled with matching reference
*
* For more details, see DOC: Theory of Operation in nft_set_pipapo.c.