diff mbox

[nf-next] netfilter: nf_tables: silence gcc warning with stateful object maps

Message ID 1481027381-3934-1-git-send-email-pablo@netfilter.org
State Not Applicable
Delegated to: Pablo Neira
Headers show

Commit Message

Pablo Neira Ayuso Dec. 6, 2016, 12:29 p.m. UTC
Not a problem in practise since objtype is ignored if the NFT_SET_OBJECT
flag is not set.

But call down gcc warnings:

   net/netfilter/nf_tables_api.c: In function 'nf_tables_newset':
>> net/netfilter/nf_tables_api.c:3003:15: warning: 'objtype' may be used
+uninitialized in this function

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
---
 net/netfilter/nf_tables_api.c | 2 ++
 1 file changed, 2 insertions(+)

Comments

kernel test robot Dec. 6, 2016, 7:59 p.m. UTC | #1
Hi Pablo,

[auto build test ERROR on nf-next/master]

url:    https://github.com/0day-ci/linux/commits/Pablo-Neira-Ayuso/netfilter-nf_tables-silence-gcc-warning-with-stateful-object-maps/20161207-033255
base:   https://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next.git master
config: x86_64-randconfig-x017-201649 (attached as .config)
compiler: gcc-6 (Debian 6.2.0-3) 6.2.0 20160901
reproduce:
        # save the attached .config to linux build tree
        make ARCH=x86_64 

All errors (new ones prefixed by >>):

   net/netfilter/nf_tables_api.c: In function 'nf_tables_newset':
>> net/netfilter/nf_tables_api.c:2924:13: error: 'NFT_OBJ_UNSPEC' undeclared (first use in this function)
      objtype = NFT_OBJ_UNSPEC;
                ^~~~~~~~~~~~~~
   net/netfilter/nf_tables_api.c:2924:13: note: each undeclared identifier is reported only once for each function it appears in

vim +/NFT_OBJ_UNSPEC +2924 net/netfilter/nf_tables_api.c

  2918			if (objtype == NFT_OBJECT_UNSPEC ||
  2919			    objtype > NFT_OBJECT_MAX)
  2920				return -EINVAL;
  2921		} else if (flags & NFT_SET_OBJECT)
  2922			return -EINVAL;
  2923		else
> 2924			objtype = NFT_OBJ_UNSPEC;
  2925	
  2926		timeout = 0;
  2927		if (nla[NFTA_SET_TIMEOUT] != NULL) {

---
0-DAY kernel test infrastructure                Open Source Technology Center
https://lists.01.org/pipermail/kbuild-all                   Intel Corporation
diff mbox

Patch

diff --git a/net/netfilter/nf_tables_api.c b/net/netfilter/nf_tables_api.c
index 799eaa6808b9..789229663028 100644
--- a/net/netfilter/nf_tables_api.c
+++ b/net/netfilter/nf_tables_api.c
@@ -2920,6 +2920,8 @@  static int nf_tables_newset(struct net *net, struct sock *nlsk,
 			return -EINVAL;
 	} else if (flags & NFT_SET_OBJECT)
 		return -EINVAL;
+	else
+		objtype = NFT_OBJ_UNSPEC;
 
 	timeout = 0;
 	if (nla[NFTA_SET_TIMEOUT] != NULL) {