diff options
| author | Pavel Emelyanov <[email protected]> | 2008-07-17 03:21:42 +0000 |
|---|---|---|
| committer | David S. Miller <[email protected]> | 2008-07-17 03:21:42 +0000 |
| commit | a9c19329eccdb145a08a4a2e969d7b40c54c9bcc (patch) | |
| tree | 3cee2cdcdb0270fcd5e7765cdb4e8b5882afecb0 /include/net/tcp.h | |
| parent | mib: drop unused TCP_XXX_STATS macros (diff) | |
| download | kernel-a9c19329eccdb145a08a4a2e969d7b40c54c9bcc.tar.gz kernel-a9c19329eccdb145a08a4a2e969d7b40c54c9bcc.zip | |
tcp: add net to tcp_mib_init
This one sets TCP MIBs after zeroing them, and thus requires
the net.
The existing single caller can use init_net (temporarily).
Signed-off-by: Pavel Emelyanov <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'include/net/tcp.h')
| -rw-r--r-- | include/net/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index 048f8de724c2..b9d0ba618b6b 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -1024,7 +1024,7 @@ static inline int tcp_paws_check(const struct tcp_options_received *rx_opt, int #define TCP_CHECK_TIMER(sk) do { } while (0) -static inline void tcp_mib_init(void) +static inline void tcp_mib_init(struct net *net) { /* See RFC 2012 */ TCP_ADD_STATS_USER(TCP_MIB_RTOALGORITHM, 1); |
