Commit 89258f8e authored by Florian Westphal's avatar Florian Westphal Committed by Pablo Neira Ayuso

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: default avatarFlorian Westphal <fw@strlen.de>
Signed-off-by: default avatarPablo Neira Ayuso <pablo@netfilter.org>
parent 897389de
...@@ -142,7 +142,6 @@ static void nft_pipapo_avx2_fill(unsigned long *data, int start, int len) ...@@ -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 * @map: Bitmap to be scanned for set bits
* @dst: Destination bitmap * @dst: Destination bitmap
* @mt: Mapping table containing bit set specifiers * @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 * @last: Return index of first set bit, if this is the last field
* *
* This is an alternative implementation of pipapo_refill() suitable for usage * 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, ...@@ -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 * nft_pipapo_avx2_lookup() - Lookup function for AVX2 implementation
* @net: Network namespace * @net: Network namespace
* @set: nftables API set representation * @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 * @ext: nftables API extension pointer, filled with matching reference
* *
* For more details, see DOC: Theory of Operation in nft_set_pipapo.c. * For more details, see DOC: Theory of Operation in nft_set_pipapo.c.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment