xfrm: avoid spinlock in get_acqseq()

Use atomic_inc_return() in get_acqseq() to avoid taking a spinlock

Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
Eric Dumazet 2010-01-29 04:05:52 +00:00 коммит произвёл David S. Miller
Родитель d1c9ae6d1e
Коммит 28aecb9d77
1 изменённых файлов: 4 добавлений и 5 удалений

Просмотреть файл

@ -3019,12 +3019,11 @@ static int pfkey_send_policy_notify(struct xfrm_policy *xp, int dir, struct km_e
static u32 get_acqseq(void) static u32 get_acqseq(void)
{ {
u32 res; u32 res;
static u32 acqseq; static atomic_t acqseq;
static DEFINE_SPINLOCK(acqseq_lock);
spin_lock_bh(&acqseq_lock); do {
res = (++acqseq ? : ++acqseq); res = atomic_inc_return(&acqseq);
spin_unlock_bh(&acqseq_lock); } while (!res);
return res; return res;
} }