Commit 9418b4d4 authored by Andrew Morton's avatar Andrew Morton Committed by David S. Miller

[TCP]: Un-inline tcp_put_port().

parent c67928f8
......@@ -738,7 +738,7 @@ DECLARE_SNMP_STAT(struct tcp_mib, tcp_statistics);
#define TCP_ADD_STATS_BH(field, val) SNMP_ADD_STATS_BH(tcp_statistics, field, val)
#define TCP_ADD_STATS_USER(field, val) SNMP_ADD_STATS_USER(tcp_statistics, field, val)
extern inline void tcp_put_port(struct sock *sk);
extern void tcp_put_port(struct sock *sk);
extern void tcp_inherit_port(struct sock *sk, struct sock *child);
extern void tcp_v4_err(struct sk_buff *skb, u32);
......
......@@ -313,7 +313,7 @@ static void __tcp_put_port(struct sock *sk)
spin_unlock(&head->lock);
}
inline void tcp_put_port(struct sock *sk)
void tcp_put_port(struct sock *sk)
{
local_bh_disable();
__tcp_put_port(sk);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment