04_scsi_remove_volatile.patch scsi_device->device_busy, Scsi_Host->host_busy and ->host_failed have volatile qualifiers, but the qualifiers don't serve any purpose. Kill them. While at it, protect ->host_failed update in scsi_error for consistency and clarity.
Signed-off-by: Tejun Heo <[EMAIL PROTECTED]> drivers/scsi/scsi_error.c | 6 +++++- include/scsi/scsi_device.h | 2 +- include/scsi/scsi_host.h | 4 ++-- 3 files changed, 8 insertions(+), 4 deletions(-) Index: scsi-export/drivers/scsi/scsi_error.c =================================================================== --- scsi-export.orig/drivers/scsi/scsi_error.c 2005-03-23 09:40:09.000000000 +0900 +++ scsi-export/drivers/scsi/scsi_error.c 2005-03-23 09:40:10.000000000 +0900 @@ -652,9 +652,13 @@ static int scsi_request_sense(struct scs static void scsi_eh_finish_cmd(struct scsi_cmnd *scmd, struct list_head *done_q) { + unsigned long flags; + + spin_lock_irqsave(scmd->device->host->host_lock, flags); scmd->device->host->host_failed--; - scmd->state = SCSI_STATE_BHQUEUE; + spin_unlock_irqrestore(scmd->device->host->host_lock, flags); + scmd->state = SCSI_STATE_BHQUEUE; scsi_eh_eflags_clr_all(scmd); /* Index: scsi-export/include/scsi/scsi_device.h =================================================================== --- scsi-export.orig/include/scsi/scsi_device.h 2005-03-23 09:39:36.000000000 +0900 +++ scsi-export/include/scsi/scsi_device.h 2005-03-23 09:40:10.000000000 +0900 @@ -43,7 +43,7 @@ struct scsi_device { struct list_head siblings; /* list of all devices on this host */ struct list_head same_target_siblings; /* just the devices sharing same target id */ - volatile unsigned short device_busy; /* commands actually active on low-level */ + unsigned short device_busy; /* commands actually active on low-level */ spinlock_t sdev_lock; /* also the request queue_lock */ spinlock_t list_lock; struct list_head cmd_list; /* queue of in use SCSI Command structures */ Index: scsi-export/include/scsi/scsi_host.h =================================================================== --- scsi-export.orig/include/scsi/scsi_host.h 2005-03-23 09:39:36.000000000 +0900 +++ scsi-export/include/scsi/scsi_host.h 2005-03-23 09:40:10.000000000 +0900 @@ -448,8 +448,8 @@ struct Scsi_Host { wait_queue_head_t host_wait; struct scsi_host_template *hostt; struct scsi_transport_template *transportt; - volatile unsigned short host_busy; /* commands actually active on low-level */ - volatile unsigned short host_failed; /* commands that failed. */ + unsigned short host_busy; /* commands actually active on low-level */ + unsigned short host_failed; /* commands that failed. */ unsigned short host_no; /* Used for IOCTL_GET_IDLUN, /proc/scsi et al. */ int resetting; /* if set, it means that last_reset is a valid value */ - To unsubscribe from this list: send the line "unsubscribe linux-scsi" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html