diff options
author | Stephen M. Cameron <scameron@beardog.cce.hp.com> | 2013-12-04 23:10:07 (GMT) |
---|---|---|
committer | James Bottomley <JBottomley@Parallels.com> | 2013-12-20 04:56:29 (GMT) |
commit | 8a98db7386b5fed82dc1df25c904b6d0ae32a2cb (patch) | |
tree | 420021744c5931fd0a6b66a60582f16b0077f761 /drivers/scsi/hpsa.h | |
parent | 95d8a25b52d551f631595ae4b5883d22a8d85a52 (diff) | |
download | linux-8a98db7386b5fed82dc1df25c904b6d0ae32a2cb.tar.xz |
[SCSI] hpsa: use workqueue instead of kernel thread for lockup detection
Much simpler and avoids races starting/stopping the thread.
Signed-off-by: Stephen M. Cameron <scameron@beardog.cce.hp.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Diffstat (limited to 'drivers/scsi/hpsa.h')
-rw-r--r-- | drivers/scsi/hpsa.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/scsi/hpsa.h b/drivers/scsi/hpsa.h index 5f3f72f..01c3283 100644 --- a/drivers/scsi/hpsa.h +++ b/drivers/scsi/hpsa.h @@ -135,7 +135,8 @@ struct ctlr_info { u32 heartbeat_sample_interval; atomic_t firmware_flash_in_progress; u32 lockup_detected; - struct list_head lockup_list; + struct delayed_work monitor_ctlr_work; + int remove_in_progress; u32 fifo_recently_full; /* Address of h->q[x] is passed to intr handler to know which queue */ u8 q[MAX_REPLY_QUEUES]; |