Commit 0b950672 authored by Arjan van de Ven's avatar Arjan van de Ven Committed by James Bottomley

[SCSI] turn most scsi semaphores into mutexes

the scsi layer is using semaphores in a mutex way, this patch converts
these into using mutexes instead
Signed-off-by: default avatarArjan van de Ven <arjan@infradead.org>
Signed-off-by: default avatarJames Bottomley <James.Bottomley@SteelEye.com>
parent dacee84b
...@@ -22,6 +22,7 @@ ...@@ -22,6 +22,7 @@
#include <linux/completion.h> #include <linux/completion.h>
#include <linux/compat.h> #include <linux/compat.h>
#include <linux/chio.h> /* here are all the ioctls */ #include <linux/chio.h> /* here are all the ioctls */
#include <linux/mutex.h>
#include <scsi/scsi.h> #include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h> #include <scsi/scsi_cmnd.h>
...@@ -111,7 +112,7 @@ typedef struct { ...@@ -111,7 +112,7 @@ typedef struct {
u_int counts[CH_TYPES]; u_int counts[CH_TYPES];
u_int unit_attention; u_int unit_attention;
u_int voltags; u_int voltags;
struct semaphore lock; struct mutex lock;
} scsi_changer; } scsi_changer;
static LIST_HEAD(ch_devlist); static LIST_HEAD(ch_devlist);
...@@ -565,7 +566,7 @@ static int ch_gstatus(scsi_changer *ch, int type, unsigned char __user *dest) ...@@ -565,7 +566,7 @@ static int ch_gstatus(scsi_changer *ch, int type, unsigned char __user *dest)
u_char data[16]; u_char data[16];
unsigned int i; unsigned int i;
down(&ch->lock); mutex_lock(&ch->lock);
for (i = 0; i < ch->counts[type]; i++) { for (i = 0; i < ch->counts[type]; i++) {
if (0 != ch_read_element_status if (0 != ch_read_element_status
(ch, ch->firsts[type]+i,data)) { (ch, ch->firsts[type]+i,data)) {
...@@ -582,7 +583,7 @@ static int ch_gstatus(scsi_changer *ch, int type, unsigned char __user *dest) ...@@ -582,7 +583,7 @@ static int ch_gstatus(scsi_changer *ch, int type, unsigned char __user *dest)
if (0 != retval) if (0 != retval)
break; break;
} }
up(&ch->lock); mutex_unlock(&ch->lock);
return retval; return retval;
} }
...@@ -687,11 +688,11 @@ static int ch_ioctl(struct inode * inode, struct file * file, ...@@ -687,11 +688,11 @@ static int ch_ioctl(struct inode * inode, struct file * file,
dprintk("CHIOPOSITION: invalid parameter\n"); dprintk("CHIOPOSITION: invalid parameter\n");
return -EBADSLT; return -EBADSLT;
} }
down(&ch->lock); mutex_lock(&ch->lock);
retval = ch_position(ch,0, retval = ch_position(ch,0,
ch->firsts[pos.cp_type] + pos.cp_unit, ch->firsts[pos.cp_type] + pos.cp_unit,
pos.cp_flags & CP_INVERT); pos.cp_flags & CP_INVERT);
up(&ch->lock); mutex_unlock(&ch->lock);
return retval; return retval;
} }
...@@ -708,12 +709,12 @@ static int ch_ioctl(struct inode * inode, struct file * file, ...@@ -708,12 +709,12 @@ static int ch_ioctl(struct inode * inode, struct file * file,
return -EBADSLT; return -EBADSLT;
} }
down(&ch->lock); mutex_lock(&ch->lock);
retval = ch_move(ch,0, retval = ch_move(ch,0,
ch->firsts[mv.cm_fromtype] + mv.cm_fromunit, ch->firsts[mv.cm_fromtype] + mv.cm_fromunit,
ch->firsts[mv.cm_totype] + mv.cm_tounit, ch->firsts[mv.cm_totype] + mv.cm_tounit,
mv.cm_flags & CM_INVERT); mv.cm_flags & CM_INVERT);
up(&ch->lock); mutex_unlock(&ch->lock);
return retval; return retval;
} }
...@@ -731,14 +732,14 @@ static int ch_ioctl(struct inode * inode, struct file * file, ...@@ -731,14 +732,14 @@ static int ch_ioctl(struct inode * inode, struct file * file,
return -EBADSLT; return -EBADSLT;
} }
down(&ch->lock); mutex_lock(&ch->lock);
retval = ch_exchange retval = ch_exchange
(ch,0, (ch,0,
ch->firsts[mv.ce_srctype] + mv.ce_srcunit, ch->firsts[mv.ce_srctype] + mv.ce_srcunit,
ch->firsts[mv.ce_fdsttype] + mv.ce_fdstunit, ch->firsts[mv.ce_fdsttype] + mv.ce_fdstunit,
ch->firsts[mv.ce_sdsttype] + mv.ce_sdstunit, ch->firsts[mv.ce_sdsttype] + mv.ce_sdstunit,
mv.ce_flags & CE_INVERT1, mv.ce_flags & CE_INVERT2); mv.ce_flags & CE_INVERT1, mv.ce_flags & CE_INVERT2);
up(&ch->lock); mutex_unlock(&ch->lock);
return retval; return retval;
} }
...@@ -772,7 +773,7 @@ static int ch_ioctl(struct inode * inode, struct file * file, ...@@ -772,7 +773,7 @@ static int ch_ioctl(struct inode * inode, struct file * file,
buffer = kmalloc(512, GFP_KERNEL | GFP_DMA); buffer = kmalloc(512, GFP_KERNEL | GFP_DMA);
if (!buffer) if (!buffer)
return -ENOMEM; return -ENOMEM;
down(&ch->lock); mutex_lock(&ch->lock);
voltag_retry: voltag_retry:
memset(cmd,0,sizeof(cmd)); memset(cmd,0,sizeof(cmd));
...@@ -823,7 +824,7 @@ static int ch_ioctl(struct inode * inode, struct file * file, ...@@ -823,7 +824,7 @@ static int ch_ioctl(struct inode * inode, struct file * file,
goto voltag_retry; goto voltag_retry;
} }
kfree(buffer); kfree(buffer);
up(&ch->lock); mutex_unlock(&ch->lock);
if (copy_to_user(argp, &cge, sizeof (cge))) if (copy_to_user(argp, &cge, sizeof (cge)))
return -EFAULT; return -EFAULT;
...@@ -832,9 +833,9 @@ static int ch_ioctl(struct inode * inode, struct file * file, ...@@ -832,9 +833,9 @@ static int ch_ioctl(struct inode * inode, struct file * file,
case CHIOINITELEM: case CHIOINITELEM:
{ {
down(&ch->lock); mutex_lock(&ch->lock);
retval = ch_init_elem(ch); retval = ch_init_elem(ch);
up(&ch->lock); mutex_unlock(&ch->lock);
return retval; return retval;
} }
...@@ -851,12 +852,12 @@ static int ch_ioctl(struct inode * inode, struct file * file, ...@@ -851,12 +852,12 @@ static int ch_ioctl(struct inode * inode, struct file * file,
return -EBADSLT; return -EBADSLT;
} }
elem = ch->firsts[csv.csv_type] + csv.csv_unit; elem = ch->firsts[csv.csv_type] + csv.csv_unit;
down(&ch->lock); mutex_lock(&ch->lock);
retval = ch_set_voltag(ch, elem, retval = ch_set_voltag(ch, elem,
csv.csv_flags & CSV_AVOLTAG, csv.csv_flags & CSV_AVOLTAG,
csv.csv_flags & CSV_CLEARTAG, csv.csv_flags & CSV_CLEARTAG,
csv.csv_voltag); csv.csv_voltag);
up(&ch->lock); mutex_unlock(&ch->lock);
return retval; return retval;
} }
...@@ -929,7 +930,7 @@ static int ch_probe(struct device *dev) ...@@ -929,7 +930,7 @@ static int ch_probe(struct device *dev)
memset(ch,0,sizeof(*ch)); memset(ch,0,sizeof(*ch));
ch->minor = ch_devcount; ch->minor = ch_devcount;
sprintf(ch->name,"ch%d",ch->minor); sprintf(ch->name,"ch%d",ch->minor);
init_MUTEX(&ch->lock); mutex_init(&ch->lock);
ch->device = sd; ch->device = sd;
ch_readconfig(ch); ch_readconfig(ch);
if (init) if (init)
......
...@@ -61,6 +61,7 @@ MODULE_DESCRIPTION("Adaptec I2O RAID Driver"); ...@@ -61,6 +61,7 @@ MODULE_DESCRIPTION("Adaptec I2O RAID Driver");
#include <linux/timer.h> #include <linux/timer.h>
#include <linux/string.h> #include <linux/string.h>
#include <linux/ioport.h> #include <linux/ioport.h>
#include <linux/mutex.h>
#include <asm/processor.h> /* for boot_cpu_data */ #include <asm/processor.h> /* for boot_cpu_data */
#include <asm/pgtable.h> #include <asm/pgtable.h>
...@@ -106,7 +107,7 @@ static dpt_sig_S DPTI_sig = { ...@@ -106,7 +107,7 @@ static dpt_sig_S DPTI_sig = {
*============================================================================ *============================================================================
*/ */
static DECLARE_MUTEX(adpt_configuration_lock); static DEFINE_MUTEX(adpt_configuration_lock);
static struct i2o_sys_tbl *sys_tbl = NULL; static struct i2o_sys_tbl *sys_tbl = NULL;
static int sys_tbl_ind = 0; static int sys_tbl_ind = 0;
...@@ -537,13 +538,13 @@ static int adpt_proc_info(struct Scsi_Host *host, char *buffer, char **start, of ...@@ -537,13 +538,13 @@ static int adpt_proc_info(struct Scsi_Host *host, char *buffer, char **start, of
*/ */
// Find HBA (host bus adapter) we are looking for // Find HBA (host bus adapter) we are looking for
down(&adpt_configuration_lock); mutex_lock(&adpt_configuration_lock);
for (pHba = hba_chain; pHba; pHba = pHba->next) { for (pHba = hba_chain; pHba; pHba = pHba->next) {
if (pHba->host == host) { if (pHba->host == host) {
break; /* found adapter */ break; /* found adapter */
} }
} }
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
if (pHba == NULL) { if (pHba == NULL) {
return 0; return 0;
} }
...@@ -958,7 +959,7 @@ static int adpt_install_hba(struct scsi_host_template* sht, struct pci_dev* pDev ...@@ -958,7 +959,7 @@ static int adpt_install_hba(struct scsi_host_template* sht, struct pci_dev* pDev
} }
memset(pHba, 0, sizeof(adpt_hba)); memset(pHba, 0, sizeof(adpt_hba));
down(&adpt_configuration_lock); mutex_lock(&adpt_configuration_lock);
if(hba_chain != NULL){ if(hba_chain != NULL){
for(p = hba_chain; p->next; p = p->next); for(p = hba_chain; p->next; p = p->next);
...@@ -971,7 +972,7 @@ static int adpt_install_hba(struct scsi_host_template* sht, struct pci_dev* pDev ...@@ -971,7 +972,7 @@ static int adpt_install_hba(struct scsi_host_template* sht, struct pci_dev* pDev
sprintf(pHba->name, "dpti%d", hba_count); sprintf(pHba->name, "dpti%d", hba_count);
hba_count++; hba_count++;
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
pHba->pDev = pDev; pHba->pDev = pDev;
pHba->base_addr_phys = base_addr0_phys; pHba->base_addr_phys = base_addr0_phys;
...@@ -1027,7 +1028,7 @@ static void adpt_i2o_delete_hba(adpt_hba* pHba) ...@@ -1027,7 +1028,7 @@ static void adpt_i2o_delete_hba(adpt_hba* pHba)
struct adpt_device* pNext; struct adpt_device* pNext;
down(&adpt_configuration_lock); mutex_lock(&adpt_configuration_lock);
// scsi_unregister calls our adpt_release which // scsi_unregister calls our adpt_release which
// does a quiese // does a quiese
if(pHba->host){ if(pHba->host){
...@@ -1046,7 +1047,7 @@ static void adpt_i2o_delete_hba(adpt_hba* pHba) ...@@ -1046,7 +1047,7 @@ static void adpt_i2o_delete_hba(adpt_hba* pHba)
} }
hba_count--; hba_count--;
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
iounmap(pHba->base_addr_virt); iounmap(pHba->base_addr_virt);
pci_release_regions(pHba->pDev); pci_release_regions(pHba->pDev);
...@@ -1549,7 +1550,7 @@ static int adpt_i2o_parse_lct(adpt_hba* pHba) ...@@ -1549,7 +1550,7 @@ static int adpt_i2o_parse_lct(adpt_hba* pHba)
static int adpt_i2o_install_device(adpt_hba* pHba, struct i2o_device *d) static int adpt_i2o_install_device(adpt_hba* pHba, struct i2o_device *d)
{ {
down(&adpt_configuration_lock); mutex_lock(&adpt_configuration_lock);
d->controller=pHba; d->controller=pHba;
d->owner=NULL; d->owner=NULL;
d->next=pHba->devices; d->next=pHba->devices;
...@@ -1560,7 +1561,7 @@ static int adpt_i2o_install_device(adpt_hba* pHba, struct i2o_device *d) ...@@ -1560,7 +1561,7 @@ static int adpt_i2o_install_device(adpt_hba* pHba, struct i2o_device *d)
pHba->devices=d; pHba->devices=d;
*d->dev_name = 0; *d->dev_name = 0;
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
return 0; return 0;
} }
...@@ -1575,24 +1576,24 @@ static int adpt_open(struct inode *inode, struct file *file) ...@@ -1575,24 +1576,24 @@ static int adpt_open(struct inode *inode, struct file *file)
if (minor >= hba_count) { if (minor >= hba_count) {
return -ENXIO; return -ENXIO;
} }
down(&adpt_configuration_lock); mutex_lock(&adpt_configuration_lock);
for (pHba = hba_chain; pHba; pHba = pHba->next) { for (pHba = hba_chain; pHba; pHba = pHba->next) {
if (pHba->unit == minor) { if (pHba->unit == minor) {
break; /* found adapter */ break; /* found adapter */
} }
} }
if (pHba == NULL) { if (pHba == NULL) {
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
return -ENXIO; return -ENXIO;
} }
// if(pHba->in_use){ // if(pHba->in_use){
// up(&adpt_configuration_lock); // mutex_unlock(&adpt_configuration_lock);
// return -EBUSY; // return -EBUSY;
// } // }
pHba->in_use = 1; pHba->in_use = 1;
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
return 0; return 0;
} }
...@@ -1606,13 +1607,13 @@ static int adpt_close(struct inode *inode, struct file *file) ...@@ -1606,13 +1607,13 @@ static int adpt_close(struct inode *inode, struct file *file)
if (minor >= hba_count) { if (minor >= hba_count) {
return -ENXIO; return -ENXIO;
} }
down(&adpt_configuration_lock); mutex_lock(&adpt_configuration_lock);
for (pHba = hba_chain; pHba; pHba = pHba->next) { for (pHba = hba_chain; pHba; pHba = pHba->next) {
if (pHba->unit == minor) { if (pHba->unit == minor) {
break; /* found adapter */ break; /* found adapter */
} }
} }
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
if (pHba == NULL) { if (pHba == NULL) {
return -ENXIO; return -ENXIO;
} }
...@@ -1910,13 +1911,13 @@ static int adpt_ioctl(struct inode *inode, struct file *file, uint cmd, ...@@ -1910,13 +1911,13 @@ static int adpt_ioctl(struct inode *inode, struct file *file, uint cmd,
if (minor >= DPTI_MAX_HBA){ if (minor >= DPTI_MAX_HBA){
return -ENXIO; return -ENXIO;
} }
down(&adpt_configuration_lock); mutex_lock(&adpt_configuration_lock);
for (pHba = hba_chain; pHba; pHba = pHba->next) { for (pHba = hba_chain; pHba; pHba = pHba->next) {
if (pHba->unit == minor) { if (pHba->unit == minor) {
break; /* found adapter */ break; /* found adapter */
} }
} }
up(&adpt_configuration_lock); mutex_unlock(&adpt_configuration_lock);
if(pHba == NULL){ if(pHba == NULL){
return -ENXIO; return -ENXIO;
} }
......
...@@ -156,16 +156,16 @@ EXPORT_SYMBOL(scsi_host_set_state); ...@@ -156,16 +156,16 @@ EXPORT_SYMBOL(scsi_host_set_state);
void scsi_remove_host(struct Scsi_Host *shost) void scsi_remove_host(struct Scsi_Host *shost)
{ {
unsigned long flags; unsigned long flags;
down(&shost->scan_mutex); mutex_lock(&shost->scan_mutex);
spin_lock_irqsave(shost->host_lock, flags); spin_lock_irqsave(shost->host_lock, flags);
if (scsi_host_set_state(shost, SHOST_CANCEL)) if (scsi_host_set_state(shost, SHOST_CANCEL))
if (scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY)) { if (scsi_host_set_state(shost, SHOST_CANCEL_RECOVERY)) {
spin_unlock_irqrestore(shost->host_lock, flags); spin_unlock_irqrestore(shost->host_lock, flags);
up(&shost->scan_mutex); mutex_unlock(&shost->scan_mutex);
return; return;
} }
spin_unlock_irqrestore(shost->host_lock, flags); spin_unlock_irqrestore(shost->host_lock, flags);
up(&shost->scan_mutex); mutex_unlock(&shost->scan_mutex);
scsi_forget_host(shost); scsi_forget_host(shost);
scsi_proc_host_rm(shost); scsi_proc_host_rm(shost);
...@@ -320,7 +320,7 @@ struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *sht, int privsize) ...@@ -320,7 +320,7 @@ struct Scsi_Host *scsi_host_alloc(struct scsi_host_template *sht, int privsize)
INIT_LIST_HEAD(&shost->starved_list); INIT_LIST_HEAD(&shost->starved_list);
init_waitqueue_head(&shost->host_wait); init_waitqueue_head(&shost->host_wait);
init_MUTEX(&shost->scan_mutex); mutex_init(&shost->scan_mutex);
shost->host_no = scsi_host_next_hn++; /* XXX(hch): still racy */ shost->host_no = scsi_host_next_hn++; /* XXX(hch): still racy */
shost->dma_channel = 0xff; shost->dma_channel = 0xff;
......
...@@ -33,6 +33,7 @@ ...@@ -33,6 +33,7 @@
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/kfifo.h> #include <linux/kfifo.h>
#include <linux/scatterlist.h> #include <linux/scatterlist.h>
#include <linux/mutex.h>
#include <net/tcp.h> #include <net/tcp.h>
#include <scsi/scsi_cmnd.h> #include <scsi/scsi_cmnd.h>
#include <scsi/scsi_device.h> #include <scsi/scsi_device.h>
...@@ -2300,10 +2301,10 @@ iscsi_xmitworker(void *data) ...@@ -2300,10 +2301,10 @@ iscsi_xmitworker(void *data)
/* /*
* serialize Xmit worker on a per-connection basis. * serialize Xmit worker on a per-connection basis.
*/ */
down(&conn->xmitsema); mutex_lock(&conn->xmitmutex);
if (iscsi_data_xmit(conn)) if (iscsi_data_xmit(conn))
schedule_work(&conn->xmitwork); schedule_work(&conn->xmitwork);
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
} }
#define FAILURE_BAD_HOST 1 #define FAILURE_BAD_HOST 1
...@@ -2367,11 +2368,11 @@ iscsi_queuecommand(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *)) ...@@ -2367,11 +2368,11 @@ iscsi_queuecommand(struct scsi_cmnd *sc, void (*done)(struct scsi_cmnd *))
session->cmdsn, session->max_cmdsn - session->exp_cmdsn + 1); session->cmdsn, session->max_cmdsn - session->exp_cmdsn + 1);
spin_unlock(&session->lock); spin_unlock(&session->lock);
if (!in_interrupt() && !down_trylock(&conn->xmitsema)) { if (!in_interrupt() && mutex_trylock(&conn->xmitmutex)) {
spin_unlock_irq(host->host_lock); spin_unlock_irq(host->host_lock);
if (iscsi_data_xmit(conn)) if (iscsi_data_xmit(conn))
schedule_work(&conn->xmitwork); schedule_work(&conn->xmitwork);
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
spin_lock_irq(host->host_lock); spin_lock_irq(host->host_lock);
} else } else
schedule_work(&conn->xmitwork); schedule_work(&conn->xmitwork);
...@@ -2531,7 +2532,7 @@ iscsi_conn_create(iscsi_sessionh_t sessionh, uint32_t conn_idx) ...@@ -2531,7 +2532,7 @@ iscsi_conn_create(iscsi_sessionh_t sessionh, uint32_t conn_idx)
goto max_recv_dlenght_alloc_fail; goto max_recv_dlenght_alloc_fail;
init_timer(&conn->tmabort_timer); init_timer(&conn->tmabort_timer);
init_MUTEX(&conn->xmitsema); mutex_init(&conn->xmitmutex);
init_waitqueue_head(&conn->ehwait); init_waitqueue_head(&conn->ehwait);
return iscsi_handle(conn); return iscsi_handle(conn);
...@@ -2561,7 +2562,7 @@ iscsi_conn_destroy(iscsi_connh_t connh) ...@@ -2561,7 +2562,7 @@ iscsi_conn_destroy(iscsi_connh_t connh)
struct iscsi_conn *conn = iscsi_ptr(connh); struct iscsi_conn *conn = iscsi_ptr(connh);
struct iscsi_session *session = conn->session; struct iscsi_session *session = conn->session;
down(&conn->xmitsema); mutex_lock(&conn->xmitmutex);
set_bit(SUSPEND_BIT, &conn->suspend_tx); set_bit(SUSPEND_BIT, &conn->suspend_tx);
if (conn->c_stage == ISCSI_CONN_INITIAL_STAGE && conn->sock) { if (conn->c_stage == ISCSI_CONN_INITIAL_STAGE && conn->sock) {
struct sock *sk = conn->sock->sk; struct sock *sk = conn->sock->sk;
...@@ -2592,7 +2593,7 @@ iscsi_conn_destroy(iscsi_connh_t connh) ...@@ -2592,7 +2593,7 @@ iscsi_conn_destroy(iscsi_connh_t connh)
} }
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
/* /*
* Block until all in-progress commands for this connection * Block until all in-progress commands for this connection
...@@ -2796,7 +2797,7 @@ iscsi_conn_stop(iscsi_connh_t connh, int flag) ...@@ -2796,7 +2797,7 @@ iscsi_conn_stop(iscsi_connh_t connh, int flag)
set_bit(SUSPEND_BIT, &conn->suspend_rx); set_bit(SUSPEND_BIT, &conn->suspend_rx);
write_unlock_bh(&sk->sk_callback_lock); write_unlock_bh(&sk->sk_callback_lock);
down(&conn->xmitsema); mutex_lock(&conn->xmitmutex);
spin_lock_irqsave(session->host->host_lock, flags); spin_lock_irqsave(session->host->host_lock, flags);
spin_lock(&session->lock); spin_lock(&session->lock);
...@@ -2878,7 +2879,7 @@ iscsi_conn_stop(iscsi_connh_t connh, int flag) ...@@ -2878,7 +2879,7 @@ iscsi_conn_stop(iscsi_connh_t connh, int flag)
conn->datadgst_en = 0; conn->datadgst_en = 0;
} }
} }
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
} }
static int static int
...@@ -3029,12 +3030,12 @@ iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -3029,12 +3030,12 @@ iscsi_eh_abort(struct scsi_cmnd *sc)
* 1) connection-level failure; * 1) connection-level failure;
* 2) recovery due protocol error; * 2) recovery due protocol error;
*/ */
down(&conn->xmitsema); mutex_lock(&conn->xmitmutex);
spin_lock_bh(&session->lock); spin_lock_bh(&session->lock);
if (session->state != ISCSI_STATE_LOGGED_IN) { if (session->state != ISCSI_STATE_LOGGED_IN) {
if (session->state == ISCSI_STATE_TERMINATE) { if (session->state == ISCSI_STATE_TERMINATE) {
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
goto failed; goto failed;
} }
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
...@@ -3052,7 +3053,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -3052,7 +3053,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc)
* 2) session was re-open during time out of ctask. * 2) session was re-open during time out of ctask.
*/ */
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
goto success; goto success;
} }
conn->tmabort_state = TMABORT_INITIAL; conn->tmabort_state = TMABORT_INITIAL;
...@@ -3107,7 +3108,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -3107,7 +3108,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc)
conn->tmabort_state == TMABORT_SUCCESS) { conn->tmabort_state == TMABORT_SUCCESS) {
conn->tmabort_state = TMABORT_INITIAL; conn->tmabort_state = TMABORT_INITIAL;
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
goto success; goto success;
} }
conn->tmabort_state = TMABORT_INITIAL; conn->tmabort_state = TMABORT_INITIAL;
...@@ -3116,7 +3117,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -3116,7 +3117,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc)
spin_unlock_bh(&session->lock); spin_unlock_bh(&session->lock);
} }
} }
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
/* /*
...@@ -3182,7 +3183,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -3182,7 +3183,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc)
exit: exit:
del_timer_sync(&conn->tmabort_timer); del_timer_sync(&conn->tmabort_timer);
down(&conn->xmitsema); mutex_lock(&conn->xmitmutex);
if (conn->sock) { if (conn->sock) {
struct sock *sk = conn->sock->sk; struct sock *sk = conn->sock->sk;
...@@ -3190,7 +3191,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc) ...@@ -3190,7 +3191,7 @@ iscsi_eh_abort(struct scsi_cmnd *sc)
iscsi_ctask_cleanup(conn, ctask); iscsi_ctask_cleanup(conn, ctask);
write_unlock_bh(&sk->sk_callback_lock); write_unlock_bh(&sk->sk_callback_lock);
} }
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
return rc; return rc;
} }
...@@ -3601,9 +3602,9 @@ iscsi_conn_send_pdu(iscsi_connh_t connh, struct iscsi_hdr *hdr, char *data, ...@@ -3601,9 +3602,9 @@ iscsi_conn_send_pdu(iscsi_connh_t connh, struct iscsi_hdr *hdr, char *data,
struct iscsi_conn *conn = iscsi_ptr(connh); struct iscsi_conn *conn = iscsi_ptr(connh);
int rc; int rc;
down(&conn->xmitsema); mutex_lock(&conn->xmitmutex);
rc = iscsi_conn_send_generic(conn, hdr, data, data_size); rc = iscsi_conn_send_generic(conn, hdr, data, data_size);
up(&conn->xmitsema); mutex_unlock(&conn->xmitmutex);
return rc; return rc;
} }
......
...@@ -158,7 +158,7 @@ struct iscsi_conn { ...@@ -158,7 +158,7 @@ struct iscsi_conn {
struct kfifo *mgmtqueue; /* mgmt (control) xmit queue */ struct kfifo *mgmtqueue; /* mgmt (control) xmit queue */
struct kfifo *xmitqueue; /* data-path cmd queue */ struct kfifo *xmitqueue; /* data-path cmd queue */
struct work_struct xmitwork; /* per-conn. xmit workqueue */ struct work_struct xmitwork; /* per-conn. xmit workqueue */
struct semaphore xmitsema; /* serializes connection xmit, struct mutex xmitmutex; /* serializes connection xmit,
* access to kfifos: * * access to kfifos: *
* xmitqueue, writequeue, * * xmitqueue, writequeue, *
* immqueue, mgmtqueue */ * immqueue, mgmtqueue */
......
...@@ -4479,7 +4479,7 @@ mega_internal_command(adapter_t *adapter, megacmd_t *mc, mega_passthru *pthru) ...@@ -4479,7 +4479,7 @@ mega_internal_command(adapter_t *adapter, megacmd_t *mc, mega_passthru *pthru)
* serialized. This is so because we want to reserve maximum number of * serialized. This is so because we want to reserve maximum number of
* available command ids for the I/O commands. * available command ids for the I/O commands.
*/ */
down(&adapter->int_mtx); mutex_lock(&adapter->int_mtx);
scb = &adapter->int_scb; scb = &adapter->int_scb;
memset(scb, 0, sizeof(scb_t)); memset(scb, 0, sizeof(scb_t));
...@@ -4527,7 +4527,7 @@ mega_internal_command(adapter_t *adapter, megacmd_t *mc, mega_passthru *pthru) ...@@ -4527,7 +4527,7 @@ mega_internal_command(adapter_t *adapter, megacmd_t *mc, mega_passthru *pthru)
mc->cmd, mc->opcode, mc->subopcode, scmd->result); mc->cmd, mc->opcode, mc->subopcode, scmd->result);
} }
up(&adapter->int_mtx); mutex_unlock(&adapter->int_mtx);
return rval; return rval;
} }
...@@ -4866,7 +4866,7 @@ megaraid_probe_one(struct pci_dev *pdev, const struct pci_device_id *id) ...@@ -4866,7 +4866,7 @@ megaraid_probe_one(struct pci_dev *pdev, const struct pci_device_id *id)
adapter->has_64bit_addr = 0; adapter->has_64bit_addr = 0;
} }
init_MUTEX(&adapter->int_mtx); mutex_init(&adapter->int_mtx);
init_completion(&adapter->int_waitq); init_completion(&adapter->int_waitq);
adapter->this_id = DEFAULT_INITIATOR_ID; adapter->this_id = DEFAULT_INITIATOR_ID;
......
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
#define __MEGARAID_H__ #define __MEGARAID_H__
#include <linux/spinlock.h> #include <linux/spinlock.h>
#include <linux/mutex.h>
#define MEGARAID_VERSION \ #define MEGARAID_VERSION \
"v2.00.3 (Release Date: Wed Feb 19 08:51:30 EST 2003)\n" "v2.00.3 (Release Date: Wed Feb 19 08:51:30 EST 2003)\n"
...@@ -889,7 +889,7 @@ typedef struct { ...@@ -889,7 +889,7 @@ typedef struct {
scb_t int_scb; scb_t int_scb;
Scsi_Cmnd int_scmd; Scsi_Cmnd int_scmd;
struct semaphore int_mtx; /* To synchronize the internal struct mutex int_mtx; /* To synchronize the internal
commands */ commands */
struct completion int_waitq; /* wait queue for internal struct completion int_waitq; /* wait queue for internal
cmds */ cmds */
......
...@@ -35,6 +35,7 @@ ...@@ -35,6 +35,7 @@
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <linux/fs.h> #include <linux/fs.h>
#include <linux/compat.h> #include <linux/compat.h>
#include <linux/mutex.h>
#include <scsi/scsi.h> #include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h> #include <scsi/scsi_cmnd.h>
...@@ -72,7 +73,7 @@ MODULE_DEVICE_TABLE(pci, megasas_pci_table); ...@@ -72,7 +73,7 @@ MODULE_DEVICE_TABLE(pci, megasas_pci_table);
static int megasas_mgmt_majorno; static int megasas_mgmt_majorno;
static struct megasas_mgmt_info megasas_mgmt_info; static struct megasas_mgmt_info megasas_mgmt_info;
static struct fasync_struct *megasas_async_queue; static struct fasync_struct *megasas_async_queue;
static DECLARE_MUTEX(megasas_async_queue_mutex); static DEFINE_MUTEX(megasas_async_queue_mutex);
/** /**
* megasas_get_cmd - Get a command from the free pool * megasas_get_cmd - Get a command from the free pool
...@@ -2362,11 +2363,11 @@ static int megasas_mgmt_fasync(int fd, struct file *filep, int mode) ...@@ -2362,11 +2363,11 @@ static int megasas_mgmt_fasync(int fd, struct file *filep, int mode)
{ {
int rc; int rc;
down(&megasas_async_queue_mutex); mutex_lock(&megasas_async_queue_mutex);
rc = fasync_helper(fd, filep, mode, &megasas_async_queue); rc = fasync_helper(fd, filep, mode, &megasas_async_queue);
up(&megasas_async_queue_mutex); mutex_unlock(&megasas_async_queue_mutex);
if (rc >= 0) { if (rc >= 0) {
/* For sanity check when we get ioctl */ /* For sanity check when we get ioctl */
......
...@@ -55,6 +55,7 @@ ...@@ -55,6 +55,7 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/notifier.h> #include <linux/notifier.h>
#include <linux/cpu.h> #include <linux/cpu.h>
#include <linux/mutex.h>
#include <scsi/scsi.h> #include <scsi/scsi.h>
#include <scsi/scsi_cmnd.h> #include <scsi/scsi_cmnd.h>
...@@ -209,7 +210,7 @@ static struct scsi_host_cmd_pool scsi_cmd_dma_pool = { ...@@ -209,7 +210,7 @@ static struct scsi_host_cmd_pool scsi_cmd_dma_pool = {
.gfp_mask = __GFP_DMA, .gfp_mask = __GFP_DMA,
}; };
static DECLARE_MUTEX(host_cmd_pool_mutex); static DEFINE_MUTEX(host_cmd_pool_mutex);
static struct scsi_cmnd *__scsi_get_command(struct Scsi_Host *shost, static struct scsi_cmnd *__scsi_get_command(struct Scsi_Host *shost,
gfp_t gfp_mask) gfp_t gfp_mask)
...@@ -330,7 +331,7 @@ int scsi_setup_command_freelist(struct Scsi_Host *shost) ...@@ -330,7 +331,7 @@ int scsi_setup_command_freelist(struct Scsi_Host *shost)
* Select a command slab for this host and create it if not * Select a command slab for this host and create it if not
* yet existant. * yet existant.
*/ */
down(&host_cmd_pool_mutex); mutex_lock(&host_cmd_pool_mutex);
pool = (shost->unchecked_isa_dma ? &scsi_cmd_dma_pool : &scsi_cmd_pool); pool = (shost->unchecked_isa_dma ? &scsi_cmd_dma_pool : &scsi_cmd_pool);
if (!pool->users) { if (!pool->users) {
pool->slab = kmem_cache_create(pool->name, pool->slab = kmem_cache_create(pool->name,
...@@ -342,7 +343,7 @@ int scsi_setup_command_freelist(struct Scsi_Host *shost) ...@@ -342,7 +343,7 @@ int scsi_setup_command_freelist(struct Scsi_Host *shost)
pool->users++; pool->users++;
shost->cmd_pool = pool; shost->cmd_pool = pool;
up(&host_cmd_pool_mutex); mutex_unlock(&host_cmd_pool_mutex);
/* /*
* Get one backup command for this host. * Get one backup command for this host.
...@@ -359,7 +360,7 @@ int scsi_setup_command_freelist(struct Scsi_Host *shost) ...@@ -359,7 +360,7 @@ int scsi_setup_command_freelist(struct Scsi_Host *shost)
kmem_cache_destroy(pool->slab); kmem_cache_destroy(pool->slab);
return -ENOMEM; return -ENOMEM;
fail: fail:
up(&host_cmd_pool_mutex); mutex_unlock(&host_cmd_pool_mutex);
return -ENOMEM; return -ENOMEM;
} }
...@@ -381,10 +382,10 @@ void scsi_destroy_command_freelist(struct Scsi_Host *shost) ...@@ -381,10 +382,10 @@ void scsi_destroy_command_freelist(struct Scsi_Host *shost)
kmem_cache_free(shost->cmd_pool->slab, cmd); kmem_cache_free(shost->cmd_pool->slab, cmd);
} }
down(&host_cmd_pool_mutex); mutex_lock(&host_cmd_pool_mutex);
if (!--shost->cmd_pool->users) if (!--shost->cmd_pool->users)
kmem_cache_destroy(shost->cmd_pool->slab); kmem_cache_destroy(shost->cmd_pool->slab);
up(&host_cmd_pool_mutex); mutex_unlock(&host_cmd_pool_mutex);
} }
#ifdef CONFIG_SCSI_LOGGING #ifdef CONFIG_SCSI_LOGGING
......
...@@ -25,6 +25,7 @@ ...@@ -25,6 +25,7 @@
#include <linux/errno.h> #include <linux/errno.h>
#include <linux/blkdev.h> #include <linux/blkdev.h>
#include <linux/seq_file.h> #include <linux/seq_file.h>
#include <linux/mutex.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <scsi/scsi.h> #include <scsi/scsi.h>
...@@ -41,7 +42,7 @@ ...@@ -41,7 +42,7 @@
static struct proc_dir_entry *proc_scsi; static struct proc_dir_entry *proc_scsi;
/* Protect sht->present and sht->proc_dir */ /* Protect sht->present and sht->proc_dir */
static DECLARE_MUTEX(global_host_template_sem); static DEFINE_MUTEX(global_host_template_mutex);
static int proc_scsi_read(char *buffer, char **start, off_t offset, static int proc_scsi_read(char *buffer, char **start, off_t offset,
int length, int *eof, void *data) int length, int *eof, void *data)
...@@ -83,7 +84,7 @@ void scsi_proc_hostdir_add(struct scsi_host_template *sht) ...@@ -83,7 +84,7 @@ void scsi_proc_hostdir_add(struct scsi_host_template *sht)
if (!sht->proc_info) if (!sht->proc_info)
return; return;
down(&global_host_template_sem); mutex_lock(&global_host_template_mutex);
if (!sht->present++) { if (!sht->present++) {
sht->proc_dir = proc_mkdir(sht->proc_name, proc_scsi); sht->proc_dir = proc_mkdir(sht->proc_name, proc_scsi);
if (!sht->proc_dir) if (!sht->proc_dir)
...@@ -92,7 +93,7 @@ void scsi_proc_hostdir_add(struct scsi_host_template *sht) ...@@ -92,7 +93,7 @@ void scsi_proc_hostdir_add(struct scsi_host_template *sht)
else else
sht->proc_dir->owner = sht->module; sht->proc_dir->owner = sht->module;
} }
up(&global_host_template_sem); mutex_unlock(&global_host_template_mutex);
} }
void scsi_proc_hostdir_rm(struct scsi_host_template *sht) void scsi_proc_hostdir_rm(struct scsi_host_template *sht)
...@@ -100,12 +101,12 @@ void scsi_proc_hostdir_rm(struct scsi_host_template *sht) ...@@ -100,12 +101,12 @@ void scsi_proc_hostdir_rm(struct scsi_host_template *sht)
if (!sht->proc_info) if (!sht->proc_info)
return; return;
down(&global_host_template_sem); mutex_lock(&global_host_template_mutex);
if (!--sht->present && sht->proc_dir) { if (!--sht->present && sht->proc_dir) {
remove_proc_entry(sht->proc_name, proc_scsi); remove_proc_entry(sht->proc_name, proc_scsi);
sht->proc_dir = NULL; sht->proc_dir = NULL;
} }
up(&global_host_template_sem); mutex_unlock(&global_host_template_mutex);
} }
void scsi_proc_host_add(struct Scsi_Host *shost) void scsi_proc_host_add(struct Scsi_Host *shost)
......
...@@ -1289,14 +1289,14 @@ struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel, ...@@ -1289,14 +1289,14 @@ struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
return ERR_PTR(-ENOMEM); return ERR_PTR(-ENOMEM);
get_device(&starget->dev); get_device(&starget->dev);
down(&shost->scan_mutex); mutex_lock(&shost->scan_mutex);
if (scsi_host_scan_allowed(shost)) { if (scsi_host_scan_allowed(shost)) {
res = scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, res = scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1,
hostdata); hostdata);
if (res != SCSI_SCAN_LUN_PRESENT) if (res != SCSI_SCAN_LUN_PRESENT)
sdev = ERR_PTR(-ENODEV); sdev = ERR_PTR(-ENODEV);
} }
up(&shost->scan_mutex); mutex_unlock(&shost->scan_mutex);
scsi_target_reap(starget); scsi_target_reap(starget);
put_device(&starget->dev); put_device(&starget->dev);
...@@ -1404,10 +1404,10 @@ void scsi_scan_target(struct device *parent, unsigned int channel, ...@@ -1404,10 +1404,10 @@ void scsi_scan_target(struct device *parent, unsigned int channel,
{ {
struct Scsi_Host *shost = dev_to_shost(parent); struct Scsi_Host *shost = dev_to_shost(parent);
down(&shost->scan_mutex); mutex_lock(&shost->scan_mutex);
if (scsi_host_scan_allowed(shost)) if (scsi_host_scan_allowed(shost))
__scsi_scan_target(parent, channel, id, lun, rescan); __scsi_scan_target(parent, channel, id, lun, rescan);
up(&shost->scan_mutex); mutex_unlock(&shost->scan_mutex);
} }
EXPORT_SYMBOL(scsi_scan_target); EXPORT_SYMBOL(scsi_scan_target);
...@@ -1454,7 +1454,7 @@ int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel, ...@@ -1454,7 +1454,7 @@ int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
((lun != SCAN_WILD_CARD) && (lun > shost->max_lun))) ((lun != SCAN_WILD_CARD) && (lun > shost->max_lun)))
return -EINVAL; return -EINVAL;
down(&shost->scan_mutex); mutex_lock(&shost->scan_mutex);
if (scsi_host_scan_allowed(shost)) { if (scsi_host_scan_allowed(shost)) {
if (channel == SCAN_WILD_CARD) if (channel == SCAN_WILD_CARD)
for (channel = 0; channel <= shost->max_channel; for (channel = 0; channel <= shost->max_channel;
...@@ -1464,7 +1464,7 @@ int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel, ...@@ -1464,7 +1464,7 @@ int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
else else
scsi_scan_channel(shost, channel, id, lun, rescan); scsi_scan_channel(shost, channel, id, lun, rescan);
} }
up(&shost->scan_mutex); mutex_unlock(&shost->scan_mutex);
return 0; return 0;
} }
...@@ -1522,7 +1522,7 @@ struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost) ...@@ -1522,7 +1522,7 @@ struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
struct scsi_device *sdev = NULL; struct scsi_device *sdev = NULL;
struct scsi_target *starget; struct scsi_target *starget;
down(&shost->scan_mutex); mutex_lock(&shost->scan_mutex);
if (!scsi_host_scan_allowed(shost)) if (!scsi_host_scan_allowed(shost))
goto out; goto out;
starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id); starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
...@@ -1536,7 +1536,7 @@ struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost) ...@@ -1536,7 +1536,7 @@ struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
} }
put_device(&starget->dev); put_device(&starget->dev);
out: out:
up(&shost->scan_mutex); mutex_unlock(&shost->scan_mutex);
return sdev; return sdev;
} }
EXPORT_SYMBOL(scsi_get_host_dev); EXPORT_SYMBOL(scsi_get_host_dev);
......
...@@ -745,9 +745,9 @@ void scsi_remove_device(struct scsi_device *sdev) ...@@ -745,9 +745,9 @@ void scsi_remove_device(struct scsi_device *sdev)
{ {
struct Scsi_Host *shost = sdev->host; struct Scsi_Host *shost = sdev->host;
down(&shost->scan_mutex); mutex_lock(&shost->scan_mutex);
__scsi_remove_device(sdev); __scsi_remove_device(sdev);
up(&shost->scan_mutex); mutex_unlock(&shost->scan_mutex);
} }
EXPORT_SYMBOL(scsi_remove_device); EXPORT_SYMBOL(scsi_remove_device);
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
#include <linux/string.h> #include <linux/string.h>
#include <linux/slab.h> #include <linux/slab.h>
#include <linux/mempool.h> #include <linux/mempool.h>
#include <linux/mutex.h>
#include <net/tcp.h> #include <net/tcp.h>
#include <scsi/scsi.h> #include <scsi/scsi.h>
...@@ -46,7 +47,7 @@ struct iscsi_internal { ...@@ -46,7 +47,7 @@ struct iscsi_internal {
struct list_head sessions; struct list_head sessions;
/* /*
* lock to serialize access to the sessions list which must * lock to serialize access to the sessions list which must
* be taken after the rx_queue_sema * be taken after the rx_queue_mutex
*/ */
spinlock_t session_lock; spinlock_t session_lock;
/* /*
...@@ -70,7 +71,7 @@ struct iscsi_internal { ...@@ -70,7 +71,7 @@ struct iscsi_internal {
/* /*
* list of registered transports and lock that must * list of registered transports and lock that must
* be held while accessing list. The iscsi_transport_lock must * be held while accessing list. The iscsi_transport_lock must
* be acquired after the rx_queue_sema. * be acquired after the rx_queue_mutex.
*/ */
static LIST_HEAD(iscsi_transports); static LIST_HEAD(iscsi_transports);
static DEFINE_SPINLOCK(iscsi_transport_lock); static DEFINE_SPINLOCK(iscsi_transport_lock);
...@@ -145,7 +146,7 @@ static DECLARE_TRANSPORT_CLASS(iscsi_connection_class, ...@@ -145,7 +146,7 @@ static DECLARE_TRANSPORT_CLASS(iscsi_connection_class,
static struct sock *nls; static struct sock *nls;
static int daemon_pid; static int daemon_pid;
static DECLARE_MUTEX(rx_queue_sema); static DEFINE_MUTEX(rx_queue_mutex);
struct mempool_zone { struct mempool_zone {
mempool_t *pool; mempool_t *pool;
...@@ -881,7 +882,7 @@ iscsi_if_rx(struct sock *sk, int len) ...@@ -881,7 +882,7 @@ iscsi_if_rx(struct sock *sk, int len)
{ {
struct sk_buff *skb; struct sk_buff *skb;
down(&rx_queue_sema); mutex_lock(&rx_queue_mutex);
while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) { while ((skb = skb_dequeue(&sk->sk_receive_queue)) != NULL) {
while (skb->len >= NLMSG_SPACE(0)) { while (skb->len >= NLMSG_SPACE(0)) {
int err; int err;
...@@ -923,7 +924,7 @@ iscsi_if_rx(struct sock *sk, int len) ...@@ -923,7 +924,7 @@ iscsi_if_rx(struct sock *sk, int len)
} }
kfree_skb(skb); kfree_skb(skb);
} }
up(&rx_queue_sema); mutex_unlock(&rx_queue_mutex);
} }
/* /*
...@@ -1159,7 +1160,7 @@ int iscsi_unregister_transport(struct iscsi_transport *tt) ...@@ -1159,7 +1160,7 @@ int iscsi_unregister_transport(struct iscsi_transport *tt)
BUG_ON(!tt); BUG_ON(!tt);
down(&rx_queue_sema); mutex_lock(&rx_queue_mutex);
priv = iscsi_if_transport_lookup(tt); priv = iscsi_if_transport_lookup(tt);
BUG_ON (!priv); BUG_ON (!priv);
...@@ -1167,7 +1168,7 @@ int iscsi_unregister_transport(struct iscsi_transport *tt) ...@@ -1167,7 +1168,7 @@ int iscsi_unregister_transport(struct iscsi_transport *tt)
spin_lock_irqsave(&priv->session_lock, flags); spin_lock_irqsave(&priv->session_lock, flags);
if (!list_empty(&priv->sessions)) { if (!list_empty(&priv->sessions)) {
spin_unlock_irqrestore(&priv->session_lock, flags); spin_unlock_irqrestore(&priv->session_lock, flags);
up(&rx_queue_sema); mutex_unlock(&rx_queue_mutex);
return -EPERM; return -EPERM;
} }
spin_unlock_irqrestore(&priv->session_lock, flags); spin_unlock_irqrestore(&priv->session_lock, flags);
...@@ -1181,7 +1182,7 @@ int iscsi_unregister_transport(struct iscsi_transport *tt) ...@@ -1181,7 +1182,7 @@ int iscsi_unregister_transport(struct iscsi_transport *tt)
sysfs_remove_group(&priv->cdev.kobj, &iscsi_transport_group); sysfs_remove_group(&priv->cdev.kobj, &iscsi_transport_group);
class_device_unregister(&priv->cdev); class_device_unregister(&priv->cdev);
up(&rx_queue_sema); mutex_unlock(&rx_queue_mutex);
return 0; return 0;
} }
......
...@@ -49,6 +49,7 @@ ...@@ -49,6 +49,7 @@
#include <linux/blkpg.h> #include <linux/blkpg.h>
#include <linux/kref.h> #include <linux/kref.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/mutex.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <scsi/scsi.h> #include <scsi/scsi.h>
...@@ -111,7 +112,7 @@ static DEFINE_SPINLOCK(sd_index_lock); ...@@ -111,7 +112,7 @@ static DEFINE_SPINLOCK(sd_index_lock);
/* This semaphore is used to mediate the 0->1 reference get in the /* This semaphore is used to mediate the 0->1 reference get in the
* face of object destruction (i.e. we can't allow a get on an * face of object destruction (i.e. we can't allow a get on an
* object after last put) */ * object after last put) */
static DECLARE_MUTEX(sd_ref_sem); static DEFINE_MUTEX(sd_ref_mutex);
static int sd_revalidate_disk(struct gendisk *disk); static int sd_revalidate_disk(struct gendisk *disk);
static void sd_rw_intr(struct scsi_cmnd * SCpnt); static void sd_rw_intr(struct scsi_cmnd * SCpnt);
...@@ -193,9 +194,9 @@ static struct scsi_disk *scsi_disk_get(struct gendisk *disk) ...@@ -193,9 +194,9 @@ static struct scsi_disk *scsi_disk_get(struct gendisk *disk)
{ {
struct scsi_disk *sdkp; struct scsi_disk *sdkp;
down(&sd_ref_sem); mutex_lock(&sd_ref_mutex);
sdkp = __scsi_disk_get(disk); sdkp = __scsi_disk_get(disk);
up(&sd_ref_sem); mutex_unlock(&sd_ref_mutex);
return sdkp; return sdkp;
} }
...@@ -203,11 +204,11 @@ static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev) ...@@ -203,11 +204,11 @@ static struct scsi_disk *scsi_disk_get_from_dev(struct device *dev)
{ {
struct scsi_disk *sdkp; struct scsi_disk *sdkp;
down(&sd_ref_sem); mutex_lock(&sd_ref_mutex);
sdkp = dev_get_drvdata(dev); sdkp = dev_get_drvdata(dev);
if (sdkp) if (sdkp)
sdkp = __scsi_disk_get(sdkp->disk); sdkp = __scsi_disk_get(sdkp->disk);
up(&sd_ref_sem); mutex_unlock(&sd_ref_mutex);
return sdkp; return sdkp;
} }
...@@ -215,10 +216,10 @@ static void scsi_disk_put(struct scsi_disk *sdkp) ...@@ -215,10 +216,10 @@ static void scsi_disk_put(struct scsi_disk *sdkp)
{ {
struct scsi_device *sdev = sdkp->device; struct scsi_device *sdev = sdkp->device;
down(&sd_ref_sem); mutex_lock(&sd_ref_mutex);
kref_put(&sdkp->kref, scsi_disk_release); kref_put(&sdkp->kref, scsi_disk_release);
scsi_device_put(sdev); scsi_device_put(sdev);
up(&sd_ref_sem); mutex_unlock(&sd_ref_mutex);
} }
/** /**
...@@ -1635,10 +1636,10 @@ static int sd_remove(struct device *dev) ...@@ -1635,10 +1636,10 @@ static int sd_remove(struct device *dev)
del_gendisk(sdkp->disk); del_gendisk(sdkp->disk);
sd_shutdown(dev); sd_shutdown(dev);
down(&sd_ref_sem); mutex_lock(&sd_ref_mutex);
dev_set_drvdata(dev, NULL); dev_set_drvdata(dev, NULL);
kref_put(&sdkp->kref, scsi_disk_release); kref_put(&sdkp->kref, scsi_disk_release);
up(&sd_ref_sem); mutex_unlock(&sd_ref_mutex);
return 0; return 0;
} }
...@@ -1647,7 +1648,7 @@ static int sd_remove(struct device *dev) ...@@ -1647,7 +1648,7 @@ static int sd_remove(struct device *dev)
* scsi_disk_release - Called to free the scsi_disk structure * scsi_disk_release - Called to free the scsi_disk structure
* @kref: pointer to embedded kref * @kref: pointer to embedded kref
* *
* sd_ref_sem must be held entering this routine. Because it is * sd_ref_mutex must be held entering this routine. Because it is
* called on last put, you should always use the scsi_disk_get() * called on last put, you should always use the scsi_disk_get()
* scsi_disk_put() helpers which manipulate the semaphore directly * scsi_disk_put() helpers which manipulate the semaphore directly
* and never do a direct kref_put(). * and never do a direct kref_put().
......
...@@ -44,6 +44,7 @@ ...@@ -44,6 +44,7 @@
#include <linux/interrupt.h> #include <linux/interrupt.h>
#include <linux/init.h> #include <linux/init.h>
#include <linux/blkdev.h> #include <linux/blkdev.h>
#include <linux/mutex.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <scsi/scsi.h> #include <scsi/scsi.h>
...@@ -90,7 +91,7 @@ static DEFINE_SPINLOCK(sr_index_lock); ...@@ -90,7 +91,7 @@ static DEFINE_SPINLOCK(sr_index_lock);
/* This semaphore is used to mediate the 0->1 reference get in the /* This semaphore is used to mediate the 0->1 reference get in the
* face of object destruction (i.e. we can't allow a get on an * face of object destruction (i.e. we can't allow a get on an
* object after last put) */ * object after last put) */
static DECLARE_MUTEX(sr_ref_sem); static DEFINE_MUTEX(sr_ref_mutex);
static int sr_open(struct cdrom_device_info *, int); static int sr_open(struct cdrom_device_info *, int);
static void sr_release(struct cdrom_device_info *); static void sr_release(struct cdrom_device_info *);
...@@ -133,7 +134,7 @@ static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk) ...@@ -133,7 +134,7 @@ static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk)
{ {
struct scsi_cd *cd = NULL; struct scsi_cd *cd = NULL;
down(&sr_ref_sem); mutex_lock(&sr_ref_mutex);
if (disk->private_data == NULL) if (disk->private_data == NULL)
goto out; goto out;
cd = scsi_cd(disk); cd = scsi_cd(disk);
...@@ -146,7 +147,7 @@ static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk) ...@@ -146,7 +147,7 @@ static inline struct scsi_cd *scsi_cd_get(struct gendisk *disk)
kref_put(&cd->kref, sr_kref_release); kref_put(&cd->kref, sr_kref_release);
cd = NULL; cd = NULL;
out: out:
up(&sr_ref_sem); mutex_unlock(&sr_ref_mutex);
return cd; return cd;
} }
...@@ -154,10 +155,10 @@ static inline void scsi_cd_put(struct scsi_cd *cd) ...@@ -154,10 +155,10 @@ static inline void scsi_cd_put(struct scsi_cd *cd)
{ {
struct scsi_device *sdev = cd->device; struct scsi_device *sdev = cd->device;
down(&sr_ref_sem); mutex_lock(&sr_ref_mutex);
kref_put(&cd->kref, sr_kref_release); kref_put(&cd->kref, sr_kref_release);
scsi_device_put(sdev); scsi_device_put(sdev);
up(&sr_ref_sem); mutex_unlock(&sr_ref_mutex);
} }
/* /*
...@@ -845,7 +846,7 @@ static int sr_packet(struct cdrom_device_info *cdi, ...@@ -845,7 +846,7 @@ static int sr_packet(struct cdrom_device_info *cdi,
* sr_kref_release - Called to free the scsi_cd structure * sr_kref_release - Called to free the scsi_cd structure
* @kref: pointer to embedded kref * @kref: pointer to embedded kref
* *
* sr_ref_sem must be held entering this routine. Because it is * sr_ref_mutex must be held entering this routine. Because it is
* called on last put, you should always use the scsi_cd_get() * called on last put, you should always use the scsi_cd_get()
* scsi_cd_put() helpers which manipulate the semaphore directly * scsi_cd_put() helpers which manipulate the semaphore directly
* and never do a direct kref_put(). * and never do a direct kref_put().
...@@ -874,9 +875,9 @@ static int sr_remove(struct device *dev) ...@@ -874,9 +875,9 @@ static int sr_remove(struct device *dev)
del_gendisk(cd->disk); del_gendisk(cd->disk);
down(&sr_ref_sem); mutex_lock(&sr_ref_mutex);
kref_put(&cd->kref, sr_kref_release); kref_put(&cd->kref, sr_kref_release);
up(&sr_ref_sem); mutex_unlock(&sr_ref_mutex);
return 0; return 0;
} }
......
...@@ -38,6 +38,7 @@ static const char *verstr = "20050830"; ...@@ -38,6 +38,7 @@ static const char *verstr = "20050830";
#include <linux/devfs_fs_kernel.h> #include <linux/devfs_fs_kernel.h>
#include <linux/cdev.h> #include <linux/cdev.h>
#include <linux/delay.h> #include <linux/delay.h>
#include <linux/mutex.h>
#include <asm/uaccess.h> #include <asm/uaccess.h>
#include <asm/dma.h> #include <asm/dma.h>
...@@ -220,7 +221,7 @@ static void scsi_tape_release(struct kref *); ...@@ -220,7 +221,7 @@ static void scsi_tape_release(struct kref *);
#define to_scsi_tape(obj) container_of(obj, struct scsi_tape, kref) #define to_scsi_tape(obj) container_of(obj, struct scsi_tape, kref)
static DECLARE_MUTEX(st_ref_sem); static DEFINE_MUTEX(st_ref_mutex);
#include "osst_detect.h" #include "osst_detect.h"
...@@ -237,7 +238,7 @@ static struct scsi_tape *scsi_tape_get(int dev) ...@@ -237,7 +238,7 @@ static struct scsi_tape *scsi_tape_get(int dev)
{ {
struct scsi_tape *STp = NULL; struct scsi_tape *STp = NULL;
down(&st_ref_sem); mutex_lock(&st_ref_mutex);
write_lock(&st_dev_arr_lock); write_lock(&st_dev_arr_lock);
if (dev < st_dev_max && scsi_tapes != NULL) if (dev < st_dev_max && scsi_tapes != NULL)
...@@ -259,7 +260,7 @@ static struct scsi_tape *scsi_tape_get(int dev) ...@@ -259,7 +260,7 @@ static struct scsi_tape *scsi_tape_get(int dev)
STp = NULL; STp = NULL;
out: out:
write_unlock(&st_dev_arr_lock); write_unlock(&st_dev_arr_lock);
up(&st_ref_sem); mutex_unlock(&st_ref_mutex);
return STp; return STp;
} }
...@@ -267,10 +268,10 @@ static void scsi_tape_put(struct scsi_tape *STp) ...@@ -267,10 +268,10 @@ static void scsi_tape_put(struct scsi_tape *STp)
{ {
struct scsi_device *sdev = STp->device; struct scsi_device *sdev = STp->device;
down(&st_ref_sem); mutex_lock(&st_ref_mutex);
kref_put(&STp->kref, scsi_tape_release); kref_put(&STp->kref, scsi_tape_release);
scsi_device_put(sdev); scsi_device_put(sdev);
up(&st_ref_sem); mutex_unlock(&st_ref_mutex);
} }
struct st_reject_data { struct st_reject_data {
...@@ -4141,9 +4142,9 @@ static int st_remove(struct device *dev) ...@@ -4141,9 +4142,9 @@ static int st_remove(struct device *dev)
} }
} }
down(&st_ref_sem); mutex_lock(&st_ref_mutex);
kref_put(&tpnt->kref, scsi_tape_release); kref_put(&tpnt->kref, scsi_tape_release);
up(&st_ref_sem); mutex_unlock(&st_ref_mutex);
return 0; return 0;
} }
} }
...@@ -4156,7 +4157,7 @@ static int st_remove(struct device *dev) ...@@ -4156,7 +4157,7 @@ static int st_remove(struct device *dev)
* scsi_tape_release - Called to free the Scsi_Tape structure * scsi_tape_release - Called to free the Scsi_Tape structure
* @kref: pointer to embedded kref * @kref: pointer to embedded kref
* *
* st_ref_sem must be held entering this routine. Because it is * st_ref_mutex must be held entering this routine. Because it is
* called on last put, you should always use the scsi_tape_get() * called on last put, you should always use the scsi_tape_get()
* scsi_tape_put() helpers which manipulate the semaphore directly * scsi_tape_put() helpers which manipulate the semaphore directly
* and never do a direct kref_put(). * and never do a direct kref_put().
......
...@@ -5,6 +5,7 @@ ...@@ -5,6 +5,7 @@
#include <linux/list.h> #include <linux/list.h>
#include <linux/types.h> #include <linux/types.h>
#include <linux/workqueue.h> #include <linux/workqueue.h>
#include <linux/mutex.h>
struct block_device; struct block_device;
struct completion; struct completion;
...@@ -469,7 +470,7 @@ struct Scsi_Host { ...@@ -469,7 +470,7 @@ struct Scsi_Host {
spinlock_t default_lock; spinlock_t default_lock;
spinlock_t *host_lock; spinlock_t *host_lock;
struct semaphore scan_mutex;/* serialize scanning activity */ struct mutex scan_mutex;/* serialize scanning activity */
struct list_head eh_cmd_q; struct list_head eh_cmd_q;
struct task_struct * ehandler; /* Error recovery thread. */ struct task_struct * ehandler; /* Error recovery thread. */
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment