Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9c19329 authored by Pavel Emelyanov's avatar Pavel Emelyanov Committed by David S. Miller
Browse files

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: default avatarPavel Emelyanov <xemul@openvz.org>
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent f10f8431
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
+1 −1
Original line number Diff line number Diff line
@@ -1363,7 +1363,7 @@ static int __init init_ipv4_mibs(void)
			  sizeof(struct udp_mib)) < 0)
		goto err_udplite_mib;

	tcp_mib_init();
	tcp_mib_init(&init_net);

	return 0;