]> git.hungrycats.org Git - linux/commitdiff
netfilter: nf_tables: nf_tables_obj_lookup_byhandle() can be static
authorkbuild test robot <fengguang.wu@intel.com>
Fri, 19 Jan 2018 20:27:58 +0000 (04:27 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 22 May 2018 16:56:22 +0000 (18:56 +0200)
commit ae0662f84b105776734cb089703a7bf834bac195 upstream.

Fixes: 3ecbfd65f50e ("netfilter: nf_tables: allocate handle and delete objects via handle")
Signed-off-by: Fengguang Wu <fengguang.wu@intel.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
net/netfilter/nf_tables_api.c

index 1429e54b4589972bb5bbe1d96b71ea8e480a7716..c853386b86ffb8314b7aa7ff902ae6f0e39343c5 100644 (file)
@@ -4399,9 +4399,9 @@ struct nft_object *nf_tables_obj_lookup(const struct nft_table *table,
 }
 EXPORT_SYMBOL_GPL(nf_tables_obj_lookup);
 
-struct nft_object *nf_tables_obj_lookup_byhandle(const struct nft_table *table,
-                                                const struct nlattr *nla,
-                                                u32 objtype, u8 genmask)
+static struct nft_object *nf_tables_obj_lookup_byhandle(const struct nft_table *table,
+                                                       const struct nlattr *nla,
+                                                       u32 objtype, u8 genmask)
 {
        struct nft_object *obj;
 
@@ -4921,7 +4921,7 @@ struct nft_flowtable *nf_tables_flowtable_lookup(const struct nft_table *table,
 }
 EXPORT_SYMBOL_GPL(nf_tables_flowtable_lookup);
 
-struct nft_flowtable *
+static struct nft_flowtable *
 nf_tables_flowtable_lookup_byhandle(const struct nft_table *table,
                                    const struct nlattr *nla, u8 genmask)
 {