diff options
author | Florian Westphal <fw@strlen.de> | 2017-08-12 00:57:03 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2017-08-24 18:52:32 +0200 |
commit | a3134d537f8209f5b149d7ed9f287047158845f0 (patch) | |
tree | 0b347f63c3d9e3b7f066cde1470a39b7914e6bbc /include/net | |
parent | 0d03510038bda70b5a4a252e8216822e6ce0cbdb (diff) | |
download | linux-a3134d537f8209f5b149d7ed9f287047158845f0.tar.gz linux-a3134d537f8209f5b149d7ed9f287047158845f0.tar.bz2 linux-a3134d537f8209f5b149d7ed9f287047158845f0.zip |
netfilter: conntrack: remove protocol name from l3proto struct
no need to waste storage for something that is only needed
in one place and can be deduced from protocol number.
Signed-off-by: Florian Westphal <fw@strlen.de>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/net')
-rw-r--r-- | include/net/netfilter/nf_conntrack_l3proto.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/include/net/netfilter/nf_conntrack_l3proto.h b/include/net/netfilter/nf_conntrack_l3proto.h index 6a27ffea7480..e31861e4fa6a 100644 --- a/include/net/netfilter/nf_conntrack_l3proto.h +++ b/include/net/netfilter/nf_conntrack_l3proto.h @@ -23,9 +23,6 @@ struct nf_conntrack_l3proto { /* size of tuple nlattr, fills a hole */ u16 nla_size; - /* Protocol name */ - const char *name; - /* * Try to fill in the third arg: nhoff is offset of l3 proto * hdr. Return true if possible. |