netdev.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Eric Dumazet <dada1@cosmosbay.com>
To: David Miller <davem@davemloft.net>
Cc: netdev@vger.kernel.org
Subject: Re: [PATCH]: inet_diag: Missed conversion after changing inet ehash lockl to spinlocks.
Date: Sat, 22 Nov 2008 07:52:04 +0100	[thread overview]
Message-ID: <4927AC14.3030702@cosmosbay.com> (raw)
In-Reply-To: <20081121.164013.199583439.davem@davemloft.net>

David Miller a écrit :
> Tsk tsk... :) I just commited the following to net-next-2.6

Oops, thanks David.

> 
> inet_diag: Missed conversion after changing inet ehash lockl to spinlocks.
> 
> They are no longer a rwlocks.
> 
> Signed-off-by: David S. Miller <davem@davemloft.net>
> ---
>  net/ipv4/inet_diag.c |   10 +++++-----
>  1 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c
> index 1cb154e..998a78f 100644
> --- a/net/ipv4/inet_diag.c
> +++ b/net/ipv4/inet_diag.c
> @@ -778,7 +778,7 @@ skip_listen_ht:
>  
>  	for (i = s_i; i < hashinfo->ehash_size; i++) {
>  		struct inet_ehash_bucket *head = &hashinfo->ehash[i];
> -		rwlock_t *lock = inet_ehash_lockp(hashinfo, i);
> +		spinlock_t *lock = inet_ehash_lockp(hashinfo, i);
>  		struct sock *sk;
>  		struct hlist_nulls_node *node;
>  
> @@ -791,7 +791,7 @@ skip_listen_ht:
>  		if (i > s_i)
>  			s_num = 0;
>  
> -		read_lock_bh(lock);
> +		spin_lock_bh(lock);
>  		sk_nulls_for_each(sk, node, &head->chain) {
>  			struct inet_sock *inet = inet_sk(sk);
>  
> @@ -806,7 +806,7 @@ skip_listen_ht:
>  			    r->id.idiag_dport)
>  				goto next_normal;
>  			if (inet_csk_diag_dump(sk, skb, cb) < 0) {
> -				read_unlock_bh(lock);
> +				spin_unlock_bh(lock);
>  				goto done;
>  			}
>  next_normal:
> @@ -828,14 +828,14 @@ next_normal:
>  				    r->id.idiag_dport)
>  					goto next_dying;
>  				if (inet_twsk_diag_dump(tw, skb, cb) < 0) {
> -					read_unlock_bh(lock);
> +					spin_unlock_bh(lock);
>  					goto done;
>  				}
>  next_dying:
>  				++num;
>  			}
>  		}
> -		read_unlock_bh(lock);
> +		spin_unlock_bh(lock);
>  	}
>  
>  done:



      reply	other threads:[~2008-11-22  6:52 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-11-22  0:40 [PATCH]: inet_diag: Missed conversion after changing inet ehash lockl to spinlocks David Miller
2008-11-22  6:52 ` Eric Dumazet [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=4927AC14.3030702@cosmosbay.com \
    --to=dada1@cosmosbay.com \
    --cc=davem@davemloft.net \
    --cc=netdev@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).