diff options
Diffstat (limited to 'net/ipv4/tcp_probe.c')
-rw-r--r-- | net/ipv4/tcp_probe.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ipv4/tcp_probe.c b/net/ipv4/tcp_probe.c index 8b97d71e193b..1f2d37613c9e 100644 --- a/net/ipv4/tcp_probe.c +++ b/net/ipv4/tcp_probe.c | |||
@@ -38,7 +38,7 @@ MODULE_DESCRIPTION("TCP cwnd snooper"); | |||
38 | MODULE_LICENSE("GPL"); | 38 | MODULE_LICENSE("GPL"); |
39 | MODULE_VERSION("1.1"); | 39 | MODULE_VERSION("1.1"); |
40 | 40 | ||
41 | static int port __read_mostly = 0; | 41 | static int port __read_mostly; |
42 | MODULE_PARM_DESC(port, "Port to match (0=all)"); | 42 | MODULE_PARM_DESC(port, "Port to match (0=all)"); |
43 | module_param(port, int, 0); | 43 | module_param(port, int, 0); |
44 | 44 | ||
@@ -46,7 +46,7 @@ static unsigned int bufsize __read_mostly = 4096; | |||
46 | MODULE_PARM_DESC(bufsize, "Log buffer size in packets (4096)"); | 46 | MODULE_PARM_DESC(bufsize, "Log buffer size in packets (4096)"); |
47 | module_param(bufsize, uint, 0); | 47 | module_param(bufsize, uint, 0); |
48 | 48 | ||
49 | static unsigned int fwmark __read_mostly = 0; | 49 | static unsigned int fwmark __read_mostly; |
50 | MODULE_PARM_DESC(fwmark, "skb mark to match (0=no mark)"); | 50 | MODULE_PARM_DESC(fwmark, "skb mark to match (0=no mark)"); |
51 | module_param(fwmark, uint, 0); | 51 | module_param(fwmark, uint, 0); |
52 | 52 | ||