aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/net/benet/be_main.c
diff options
context:
space:
mode:
authorIvan Vecera <ivecera@redhat.com>2010-12-14 05:43:19 +0000
committerDavid S. Miller <davem@davemloft.net>2010-12-16 14:12:26 -0800
commit2984961c388381c1830f95e1c2dc2137301b1009 (patch)
treecef2c252c2cf0d6f0e8660d3372a1aa81eba312d /drivers/net/benet/be_main.c
parentbonding/vlan: Fix mangled NAs on slaves without VLAN tag insertion (diff)
downloadlinux-dev-2984961c388381c1830f95e1c2dc2137301b1009.tar.xz
linux-dev-2984961c388381c1830f95e1c2dc2137301b1009.zip
be2net: use mutex instead of spin lock for mbox_lock
Since the mbox polling uses the schedule_timeout, the mbox_lock should be a mutex and not a spin lock. The commit f25b03a replaced udelay() with schedule_timeout() but didn't change mbox_lock to semaphore or mutex. Signed-off-by: Ivan Vecera <ivecera@redhat.com> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r--drivers/net/benet/be_main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/benet/be_main.c b/drivers/net/benet/be_main.c
index 93354eee2cfd..fd251b59b7f9 100644
--- a/drivers/net/benet/be_main.c
+++ b/drivers/net/benet/be_main.c
@@ -2677,7 +2677,7 @@ static int be_ctrl_init(struct be_adapter *adapter)
}
memset(mc_cmd_mem->va, 0, mc_cmd_mem->size);
- spin_lock_init(&adapter->mbox_lock);
+ mutex_init(&adapter->mbox_lock);
spin_lock_init(&adapter->mcc_lock);
spin_lock_init(&adapter->mcc_cq_lock);