Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 37272
b: refs/heads/master
c: cab8d15
h: refs/heads/master
v: v3
  • Loading branch information
Stefan Richter authored and Ben Collins committed Jul 3, 2006
1 parent a31cd7b commit 4870abf
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d2f119fe319528da8c76a1107459d6f478cbf28c
refs/heads/master: cab8d154e2ed43fe1495aa0e18103e747552891b
10 changes: 5 additions & 5 deletions trunk/drivers/ieee1394/nodemgr.c
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ static struct csr1212_bus_ops nodemgr_csr_ops = {
* but now we are much simpler because of the LDM.
*/

static DECLARE_MUTEX(nodemgr_serialize);
static DEFINE_MUTEX(nodemgr_serialize);

struct host_info {
struct hpsb_host *host;
Expand Down Expand Up @@ -1621,7 +1621,7 @@ static int nodemgr_host_thread(void *__hi)
if (kthread_should_stop())
goto exit;

if (down_interruptible(&nodemgr_serialize)) {
if (mutex_lock_interruptible(&nodemgr_serialize)) {
if (try_to_freeze())
continue;
goto exit;
Expand Down Expand Up @@ -1650,7 +1650,7 @@ static int nodemgr_host_thread(void *__hi)
if (!nodemgr_check_irm_capability(host, reset_cycles) ||
!nodemgr_do_irm_duties(host, reset_cycles)) {
reset_cycles++;
up(&nodemgr_serialize);
mutex_unlock(&nodemgr_serialize);
continue;
}
reset_cycles = 0;
Expand All @@ -1668,10 +1668,10 @@ static int nodemgr_host_thread(void *__hi)
/* Update some of our sysfs symlinks */
nodemgr_update_host_dev_links(host);

up(&nodemgr_serialize);
mutex_unlock(&nodemgr_serialize);
}
unlock_exit:
up(&nodemgr_serialize);
mutex_unlock(&nodemgr_serialize);
exit:
HPSB_VERBOSE("NodeMgr: Exiting thread");
return 0;
Expand Down

0 comments on commit 4870abf

Please sign in to comment.