Netdev Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH net-next] netfilter: nf_tables: fix compile warnings
@ 2022-01-10 22:14 Pablo Neira Ayuso
2022-01-11 4:57 ` Jakub Kicinski
0 siblings, 1 reply; 3+ messages in thread
From: Pablo Neira Ayuso @ 2022-01-10 22:14 UTC (permalink / raw)
To: netfilter-devel; +Cc: davem, netdev, kuba
Remove unused variable and fix missing initialization.
>> net/netfilter/nf_tables_api.c:8266:6: warning: variable 'i' set but not used [-Wunused-but-set-variable]
int i;
^
>> net/netfilter/nf_tables_api.c:8277:4: warning: variable 'data_size' is uninitialized when used here [-Wuninitialized]
data_size += sizeof(*prule) + rule->dlen;
^~~~~~~~~
net/netfilter/nf_tables_api.c:8262:30: note: initialize the variable 'data_size' to silence this warning
unsigned int size, data_size;
Fixes: 2c865a8a28a1 ("netfilter: nf_tables: add rule blob layout")
Reported-by: kernel test robot <lkp@intel.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
Please, directly apply to net-next, thanks. Otherwise let me know and
I'll prepare a pull request with pending fixes once net-next gets merged
into net.
net/netfilter/nf_tables_api.c | 4 +---
1 file changed, 1 insertion(+), 3 deletions(-)
diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index eb12fc9b803d..1f80a1fae63b 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -8260,18 +8260,16 @@ static int nf_tables_commit_chain_prepare(struct net *net, struct nft_chain *cha
{
const struct nft_expr *expr, *last;
struct nft_regs_track track = {};
- unsigned int size, data_size;
+ unsigned int size, data_size = 0;
void *data, *data_boundary;
struct nft_rule_dp *prule;
struct nft_rule *rule;
- int i;
/* already handled or inactive chain? */
if (chain->blob_next || !nft_is_active_next(net, chain))
return 0;
rule = list_entry(&chain->rules, struct nft_rule, list);
- i = 0;
list_for_each_entry_continue(rule, &chain->rules, list) {
if (nft_is_active_next(net, rule)) {
--
2.30.2
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] netfilter: nf_tables: fix compile warnings
2022-01-10 22:14 [PATCH net-next] netfilter: nf_tables: fix compile warnings Pablo Neira Ayuso
@ 2022-01-11 4:57 ` Jakub Kicinski
2022-01-11 9:32 ` Pablo Neira Ayuso
0 siblings, 1 reply; 3+ messages in thread
From: Jakub Kicinski @ 2022-01-11 4:57 UTC (permalink / raw)
To: Pablo Neira Ayuso; +Cc: netfilter-devel, davem, netdev
On Mon, 10 Jan 2022 23:14:19 +0100 Pablo Neira Ayuso wrote:
> Remove unused variable and fix missing initialization.
>
> >> net/netfilter/nf_tables_api.c:8266:6: warning: variable 'i' set but not used [-Wunused-but-set-variable]
> int i;
> ^
> >> net/netfilter/nf_tables_api.c:8277:4: warning: variable 'data_size' is uninitialized when used here [-Wuninitialized]
> data_size += sizeof(*prule) + rule->dlen;
> ^~~~~~~~~
> net/netfilter/nf_tables_api.c:8262:30: note: initialize the variable 'data_size' to silence this warning
> unsigned int size, data_size;
>
> Fixes: 2c865a8a28a1 ("netfilter: nf_tables: add rule blob layout")
> Reported-by: kernel test robot <lkp@intel.com>
> Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
> ---
> Please, directly apply to net-next, thanks. Otherwise let me know and
> I'll prepare a pull request with pending fixes once net-next gets merged
> into net.
As you have probably seen Linus fixed this up himself.
You can take the fix for the other warning thru your tree.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH net-next] netfilter: nf_tables: fix compile warnings
2022-01-11 4:57 ` Jakub Kicinski
@ 2022-01-11 9:32 ` Pablo Neira Ayuso
0 siblings, 0 replies; 3+ messages in thread
From: Pablo Neira Ayuso @ 2022-01-11 9:32 UTC (permalink / raw)
To: Jakub Kicinski; +Cc: netfilter-devel, davem, netdev
On Mon, Jan 10, 2022 at 08:57:55PM -0800, Jakub Kicinski wrote:
> On Mon, 10 Jan 2022 23:14:19 +0100 Pablo Neira Ayuso wrote:
> > Remove unused variable and fix missing initialization.
> >
> > >> net/netfilter/nf_tables_api.c:8266:6: warning: variable 'i' set but not used [-Wunused-but-set-variable]
> > int i;
> > ^
> > >> net/netfilter/nf_tables_api.c:8277:4: warning: variable 'data_size' is uninitialized when used here [-Wuninitialized]
> > data_size += sizeof(*prule) + rule->dlen;
> > ^~~~~~~~~
> > net/netfilter/nf_tables_api.c:8262:30: note: initialize the variable 'data_size' to silence this warning
> > unsigned int size, data_size;
> >
> > Fixes: 2c865a8a28a1 ("netfilter: nf_tables: add rule blob layout")
> > Reported-by: kernel test robot <lkp@intel.com>
> > Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
> > ---
> > Please, directly apply to net-next, thanks. Otherwise let me know and
> > I'll prepare a pull request with pending fixes once net-next gets merged
> > into net.
>
> As you have probably seen Linus fixed this up himself.
>
> You can take the fix for the other warning thru your tree.
That's fine, thanks.
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2022-01-11 9:32 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-01-10 22:14 [PATCH net-next] netfilter: nf_tables: fix compile warnings Pablo Neira Ayuso
2022-01-11 4:57 ` Jakub Kicinski
2022-01-11 9:32 ` Pablo Neira Ayuso
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).