From: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
To: Cong Wang <amwang@redhat.com>
Cc: netdev@vger.kernel.org,
Steffen Klassert <steffen.klassert@secunet.com>,
Herbert Xu <herbert@gondor.hengli.com.au>,
"David S. Miller" <davem@davemloft.net>,
YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Subject: Re: [Patch net-next 1/2] xfrm: replace rwlock on xfrm_state_afinfo with rcu
Date: Wed, 16 Jan 2013 22:57:48 +0900 [thread overview]
Message-ID: <50F6B1DC.4030307@linux-ipv6.org> (raw)
In-Reply-To: <1358323506-19571-1-git-send-email-amwang@redhat.com>
Cong Wang wrote:
> From: Cong Wang <amwang@redhat.com>
>
> Similar to commit 418a99ac6ad487dc9c42e6b0e85f941af56330f2
> (Replace rwlock on xfrm_policy_afinfo with rcu), the rwlock
> on xfrm_state_afinfo can be replaced by RCU too.
>
> Cc: Steffen Klassert <steffen.klassert@secunet.com>
> Cc: Herbert Xu <herbert@gondor.apana.org.au>
> Cc: "David S. Miller" <davem@davemloft.net>
> Signed-off-by: Cong Wang <amwang@redhat.com>
> ---
> net/xfrm/xfrm_state.c | 33 ++++++++++++++++-----------------
> 1 files changed, 16 insertions(+), 17 deletions(-)
>
> diff --git a/net/xfrm/xfrm_state.c b/net/xfrm/xfrm_state.c
> index 3459692..f567716 100644
> --- a/net/xfrm/xfrm_state.c
> +++ b/net/xfrm/xfrm_state.c
:
> @@ -173,17 +173,16 @@ static struct xfrm_state_afinfo *xfrm_state_lock_afinfo(unsigned int family)
> struct xfrm_state_afinfo *afinfo;
> if (unlikely(family >= NPROTO))
> return NULL;
> - write_lock_bh(&xfrm_state_afinfo_lock);
> + spin_lock_bh(&xfrm_state_afinfo_lock);
> afinfo = xfrm_state_afinfo[family];
> if (unlikely(!afinfo))
> - write_unlock_bh(&xfrm_state_afinfo_lock);
> + spin_unlock_bh(&xfrm_state_afinfo_lock);
> return afinfo;
> }
>
> static void xfrm_state_unlock_afinfo(struct xfrm_state_afinfo *afinfo)
> - __releases(xfrm_state_afinfo_lock)
> {
> - write_unlock_bh(&xfrm_state_afinfo_lock);
> + spin_unlock_bh(&xfrm_state_afinfo_lock);
> }
>
> int xfrm_register_type(const struct xfrm_type *type, unsigned short family)
Why removing __releases() hint?
--yoshfuji
next prev parent reply other threads:[~2013-01-16 13:57 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-01-16 8:05 [Patch net-next 1/2] xfrm: replace rwlock on xfrm_state_afinfo with rcu Cong Wang
2013-01-16 8:05 ` [Patch net-next 2/2] xfrm: replace rwlock on xfrm_km_list " Cong Wang
2013-01-17 8:34 ` [Patch net-next 3/2] xfrm: use separated locks to protect pointers of struct xfrm_state_afinfo Cong Wang
2013-01-18 8:54 ` Steffen Klassert
2013-01-16 13:57 ` YOSHIFUJI Hideaki [this message]
2013-01-17 6:22 ` [Patch net-next 1/2] xfrm: replace rwlock on xfrm_state_afinfo with rcu Cong Wang
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=50F6B1DC.4030307@linux-ipv6.org \
--to=yoshfuji@linux-ipv6.org \
--cc=amwang@redhat.com \
--cc=davem@davemloft.net \
--cc=herbert@gondor.hengli.com.au \
--cc=netdev@vger.kernel.org \
--cc=steffen.klassert@secunet.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.