diff options
| author | Ingo Molnar <mingo@elte.hu> | 2008-07-28 15:14:43 -0400 |
|---|---|---|
| committer | Ingo Molnar <mingo@elte.hu> | 2008-07-28 15:14:43 -0400 |
| commit | 414f746d232d41ed6ae8632c4495ae795373c44b (patch) | |
| tree | 167f9bc8f139c6e82e6732b38c7a938b8a9d31cd /net/ipv4/inet_hashtables.c | |
| parent | 5a7a201c51c324876d00a54e7208af6af12d1ca4 (diff) | |
| parent | c9272c4f9fbe2087beb3392f526dc5b19efaa56b (diff) | |
Merge branch 'linus' into cpus4096
Diffstat (limited to 'net/ipv4/inet_hashtables.c')
| -rw-r--r-- | net/ipv4/inet_hashtables.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net/ipv4/inet_hashtables.c b/net/ipv4/inet_hashtables.c index 115f53722d20..44981906fb91 100644 --- a/net/ipv4/inet_hashtables.c +++ b/net/ipv4/inet_hashtables.c | |||
| @@ -305,7 +305,7 @@ unique: | |||
| 305 | inet->num = lport; | 305 | inet->num = lport; |
| 306 | inet->sport = htons(lport); | 306 | inet->sport = htons(lport); |
| 307 | sk->sk_hash = hash; | 307 | sk->sk_hash = hash; |
| 308 | BUG_TRAP(sk_unhashed(sk)); | 308 | WARN_ON(!sk_unhashed(sk)); |
| 309 | __sk_add_node(sk, &head->chain); | 309 | __sk_add_node(sk, &head->chain); |
| 310 | sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); | 310 | sock_prot_inuse_add(sock_net(sk), sk->sk_prot, 1); |
| 311 | write_unlock(lock); | 311 | write_unlock(lock); |
| @@ -342,7 +342,7 @@ void __inet_hash_nolisten(struct sock *sk) | |||
| 342 | rwlock_t *lock; | 342 | rwlock_t *lock; |
| 343 | struct inet_ehash_bucket *head; | 343 | struct inet_ehash_bucket *head; |
| 344 | 344 | ||
| 345 | BUG_TRAP(sk_unhashed(sk)); | 345 | WARN_ON(!sk_unhashed(sk)); |
| 346 | 346 | ||
| 347 | sk->sk_hash = inet_sk_ehashfn(sk); | 347 | sk->sk_hash = inet_sk_ehashfn(sk); |
| 348 | head = inet_ehash_bucket(hashinfo, sk->sk_hash); | 348 | head = inet_ehash_bucket(hashinfo, sk->sk_hash); |
| @@ -367,7 +367,7 @@ static void __inet_hash(struct sock *sk) | |||
| 367 | return; | 367 | return; |
| 368 | } | 368 | } |
| 369 | 369 | ||
| 370 | BUG_TRAP(sk_unhashed(sk)); | 370 | WARN_ON(!sk_unhashed(sk)); |
| 371 | list = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)]; | 371 | list = &hashinfo->listening_hash[inet_sk_listen_hashfn(sk)]; |
| 372 | lock = &hashinfo->lhash_lock; | 372 | lock = &hashinfo->lhash_lock; |
| 373 | 373 | ||
| @@ -450,7 +450,7 @@ int __inet_hash_connect(struct inet_timewait_death_row *death_row, | |||
| 450 | */ | 450 | */ |
| 451 | inet_bind_bucket_for_each(tb, node, &head->chain) { | 451 | inet_bind_bucket_for_each(tb, node, &head->chain) { |
| 452 | if (tb->ib_net == net && tb->port == port) { | 452 | if (tb->ib_net == net && tb->port == port) { |
| 453 | BUG_TRAP(!hlist_empty(&tb->owners)); | 453 | WARN_ON(hlist_empty(&tb->owners)); |
| 454 | if (tb->fastreuse >= 0) | 454 | if (tb->fastreuse >= 0) |
| 455 | goto next_port; | 455 | goto next_port; |
| 456 | if (!check_established(death_row, sk, | 456 | if (!check_established(death_row, sk, |
