提交 614c6cb4 编写于 作者: A Arnaldo Carvalho de Melo 提交者: David S. Miller

[SOCK]: Rename __tcp_v4_rehash to __sk_prot_rehash

This operation was already generic and DCCP will use it.
Signed-off-by: NArnaldo Carvalho de Melo <acme@ghostprotocols.net>
Signed-off-by: NDavid S. Miller <davem@davemloft.net>
上级 e6848976
...@@ -612,6 +612,15 @@ static __inline__ void sock_prot_dec_use(struct proto *prot) ...@@ -612,6 +612,15 @@ static __inline__ void sock_prot_dec_use(struct proto *prot)
prot->stats[smp_processor_id()].inuse--; prot->stats[smp_processor_id()].inuse--;
} }
/* With per-bucket locks this operation is not-atomic, so that
* this version is not worse.
*/
static inline void __sk_prot_rehash(struct sock *sk)
{
sk->sk_prot->unhash(sk);
sk->sk_prot->hash(sk);
}
/* About 10 seconds */ /* About 10 seconds */
#define SOCK_DESTROY_TIME (10*HZ) #define SOCK_DESTROY_TIME (10*HZ)
......
...@@ -1834,15 +1834,6 @@ int tcp_v4_rcv(struct sk_buff *skb) ...@@ -1834,15 +1834,6 @@ int tcp_v4_rcv(struct sk_buff *skb)
goto discard_it; goto discard_it;
} }
/* With per-bucket locks this operation is not-atomic, so that
* this version is not worse.
*/
static void __tcp_v4_rehash(struct sock *sk)
{
sk->sk_prot->unhash(sk);
sk->sk_prot->hash(sk);
}
static int tcp_v4_reselect_saddr(struct sock *sk) static int tcp_v4_reselect_saddr(struct sock *sk)
{ {
struct inet_sock *inet = inet_sk(sk); struct inet_sock *inet = inet_sk(sk);
...@@ -1889,7 +1880,7 @@ static int tcp_v4_reselect_saddr(struct sock *sk) ...@@ -1889,7 +1880,7 @@ static int tcp_v4_reselect_saddr(struct sock *sk)
* Besides that, it does not check for connection * Besides that, it does not check for connection
* uniqueness. Wait for troubles. * uniqueness. Wait for troubles.
*/ */
__tcp_v4_rehash(sk); __sk_prot_rehash(sk);
return 0; return 0;
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册