[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <485B7384.1090204@cn.fujitsu.com>
Date: Fri, 20 Jun 2008 17:08:20 +0800
From: Gui Jianfeng <guijianfeng@...fujitsu.com>
To: netdev <netdev@...r.kernel.org>, David Miller <davem@...emloft.net>
Subject: [PATCH] Prevent from potential dead lock for inet_listen_lock
hashinfo->lhash_lock might be acquired by write_lock() in softirq,
so using read_lock() here isn't safe, just substitudes by read_lock_bh().
Signed-off-by: Gui Jianfeng <guijianfeng@...fujitsu.com>
---
include/net/inet_hashtables.h | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/include/net/inet_hashtables.h b/include/net/inet_hashtables.h
index 97dc35a..2818c8a 100644
--- a/include/net/inet_hashtables.h
+++ b/include/net/inet_hashtables.h
@@ -254,9 +254,9 @@ extern void inet_listen_wlock(struct inet_hashinfo *hashinfo);
static inline void inet_listen_lock(struct inet_hashinfo *hashinfo)
{
/* read_lock synchronizes to candidates to writers */
- read_lock(&hashinfo->lhash_lock);
+ read_lock_bh(&hashinfo->lhash_lock);
atomic_inc(&hashinfo->lhash_users);
- read_unlock(&hashinfo->lhash_lock);
+ read_unlock_bh(&hashinfo->lhash_lock);
}
static inline void inet_listen_unlock(struct inet_hashinfo *hashinfo)
--
1.5.3
--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists