[NETFILTER]: nf_conntrack_ipv4: fix module parameter compatibility
authorPatrick McHardy <kaber@trash.net>
Tue, 25 Dec 2007 05:09:10 +0000 (21:09 -0800)
committerDavid S. Miller <davem@davemloft.net>
Thu, 27 Dec 2007 03:36:33 +0000 (19:36 -0800)
commitfae718ddaf2b00e222dddec6717aca023376723c
treea3ea0668f21555cca021f4d19ce5b22e6eca5c49
parent81100eb80add328c4d2a377326f15aa0e7236398
[NETFILTER]: nf_conntrack_ipv4: fix module parameter compatibility

Some users do "modprobe ip_conntrack hashsize=...". Since we have the
module aliases this loads nf_conntrack_ipv4 and nf_conntrack, the
hashsize parameter is unknown for nf_conntrack_ipv4 however and makes
it fail.

Allow to specify hashsize= for both nf_conntrack and nf_conntrack_ipv4.

Note: the nf_conntrack message in the ringbuffer will display an
incorrect hashsize since nf_conntrack is first pulled in as a
dependency and calculates the size itself, then it gets changed
through a call to nf_conntrack_set_hashsize().

Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/netfilter/nf_conntrack.h
net/ipv4/netfilter/nf_conntrack_l3proto_ipv4.c
net/netfilter/nf_conntrack_core.c