Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
Conflicts: drivers/net/wireless/ath/ath9k/recv.c drivers/net/wireless/mwifiex/pcie.c net/ipv6/sit.c The SIT driver conflict consists of a bug fix being done by hand in 'net' (missing u64_stats_init()) whilst in 'net-next' a helper was created (netdev_alloc_pcpu_stats()) which takes care of this. The two wireless conflicts were overlapping changes. Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
@@ -70,8 +70,6 @@ static const struct proto_ops msg_ops;
|
||||
static struct proto tipc_proto;
|
||||
static struct proto tipc_proto_kern;
|
||||
|
||||
static int sockets_enabled;
|
||||
|
||||
/*
|
||||
* Revised TIPC socket locking policy:
|
||||
*
|
||||
@@ -2029,8 +2027,6 @@ int tipc_socket_init(void)
|
||||
proto_unregister(&tipc_proto);
|
||||
goto out;
|
||||
}
|
||||
|
||||
sockets_enabled = 1;
|
||||
out:
|
||||
return res;
|
||||
}
|
||||
@@ -2040,10 +2036,6 @@ int tipc_socket_init(void)
|
||||
*/
|
||||
void tipc_socket_stop(void)
|
||||
{
|
||||
if (!sockets_enabled)
|
||||
return;
|
||||
|
||||
sockets_enabled = 0;
|
||||
sock_unregister(tipc_family_ops.family);
|
||||
proto_unregister(&tipc_proto);
|
||||
}
|
||||
|
Reference in New Issue
Block a user