aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/message
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@g5.osdl.org>2005-07-26 16:28:47 -0400
committerLinus Torvalds <torvalds@g5.osdl.org>2005-07-26 16:28:47 -0400
commit2d986010ad13a00b83851238d52601d6092df40e (patch)
tree6a43ffd30290fc051435643d485ad12fb1448ed5 /drivers/message
parent6b6a93c6876ea1c530d5d3f68e3678093a27fab0 (diff)
parente10fb91c4dc81a4ae47caf0828df152f600f2546 (diff)
Merge master.kernel.org:/pub/scm/linux/kernel/git/jejb/scsi-for-linus-2.6
Diffstat (limited to 'drivers/message')
-rw-r--r--drivers/message/fusion/mptfc.c19
-rw-r--r--drivers/message/fusion/mptscsih.c47
-rw-r--r--drivers/message/fusion/mptscsih.h2
-rw-r--r--drivers/message/fusion/mptspi.c19
4 files changed, 24 insertions, 63 deletions
diff --git a/drivers/message/fusion/mptfc.c b/drivers/message/fusion/mptfc.c
index 353deb25e397..13771abea13f 100644
--- a/drivers/message/fusion/mptfc.c
+++ b/drivers/message/fusion/mptfc.c
@@ -83,19 +83,6 @@ static int mptfcDoneCtx = -1;
83static int mptfcTaskCtx = -1; 83static int mptfcTaskCtx = -1;
84static int mptfcInternalCtx = -1; /* Used only for internal commands */ 84static int mptfcInternalCtx = -1; /* Used only for internal commands */
85 85
86static struct device_attribute mptfc_queue_depth_attr = {
87 .attr = {
88 .name = "queue_depth",
89 .mode = S_IWUSR,
90 },
91 .store = mptscsih_store_queue_depth,
92};
93
94static struct device_attribute *mptfc_dev_attrs[] = {
95 &mptfc_queue_depth_attr,
96 NULL,
97};
98
99static struct scsi_host_template mptfc_driver_template = { 86static struct scsi_host_template mptfc_driver_template = {
100 .proc_name = "mptfc", 87 .proc_name = "mptfc",
101 .proc_info = mptscsih_proc_info, 88 .proc_info = mptscsih_proc_info,
@@ -105,6 +92,7 @@ static struct scsi_host_template mptfc_driver_template = {
105 .slave_alloc = mptscsih_slave_alloc, 92 .slave_alloc = mptscsih_slave_alloc,
106 .slave_configure = mptscsih_slave_configure, 93 .slave_configure = mptscsih_slave_configure,
107 .slave_destroy = mptscsih_slave_destroy, 94 .slave_destroy = mptscsih_slave_destroy,
95 .change_queue_depth = mptscsih_change_queue_depth,
108 .eh_abort_handler = mptscsih_abort, 96 .eh_abort_handler = mptscsih_abort,
109 .eh_device_reset_handler = mptscsih_dev_reset, 97 .eh_device_reset_handler = mptscsih_dev_reset,
110 .eh_bus_reset_handler = mptscsih_bus_reset, 98 .eh_bus_reset_handler = mptscsih_bus_reset,
@@ -116,7 +104,6 @@ static struct scsi_host_template mptfc_driver_template = {
116 .max_sectors = 8192, 104 .max_sectors = 8192,
117 .cmd_per_lun = 7, 105 .cmd_per_lun = 7,
118 .use_clustering = ENABLE_CLUSTERING, 106 .use_clustering = ENABLE_CLUSTERING,
119 .sdev_attrs = mptfc_dev_attrs,
120}; 107};
121 108
122/**************************************************************************** 109/****************************************************************************
@@ -267,10 +254,6 @@ mptfc_probe(struct pci_dev *pdev, const struct pci_device_id *id)
267 sh->sg_tablesize = numSGE; 254 sh->sg_tablesize = numSGE;
268 } 255 }
269 256
270 /* Set the pci device pointer in Scsi_Host structure.
271 */
272 scsi_set_device(sh, &ioc->pcidev->dev);
273
274 spin_unlock_irqrestore(&ioc->FreeQlock, flags); 257 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
275 258
276 hd = (MPT_SCSI_HOST *) sh->hostdata; 259 hd = (MPT_SCSI_HOST *) sh->hostdata;
diff --git a/drivers/message/fusion/mptscsih.c b/drivers/message/fusion/mptscsih.c
index 4f973a49be4c..b9d4f78725b4 100644
--- a/drivers/message/fusion/mptscsih.c
+++ b/drivers/message/fusion/mptscsih.c
@@ -2234,13 +2234,27 @@ mptscsih_slave_destroy(struct scsi_device *device)
2234 } 2234 }
2235} 2235}
2236 2236
2237static void 2237/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2238mptscsih_set_queue_depth(struct scsi_device *device, MPT_SCSI_HOST *hd, 2238/*
2239 VirtDevice *pTarget, int qdepth) 2239 * mptscsih_change_queue_depth - This function will set a devices queue depth
2240 * @sdev: per scsi_device pointer
2241 * @qdepth: requested queue depth
2242 *
2243 * Adding support for new 'change_queue_depth' api.
2244*/
2245int
2246mptscsih_change_queue_depth(struct scsi_device *sdev, int qdepth)
2240{ 2247{
2248 MPT_SCSI_HOST *hd = (MPT_SCSI_HOST *)sdev->host->hostdata;
2249 VirtDevice *pTarget;
2241 int max_depth; 2250 int max_depth;
2242 int tagged; 2251 int tagged;
2243 2252
2253 if (hd == NULL)
2254 return 0;
2255 if (!(pTarget = hd->Targets[sdev->id]))
2256 return 0;
2257
2244 if (hd->ioc->bus_type == SCSI) { 2258 if (hd->ioc->bus_type == SCSI) {
2245 if (pTarget->tflags & MPT_TARGET_FLAGS_VALID_INQUIRY) { 2259 if (pTarget->tflags & MPT_TARGET_FLAGS_VALID_INQUIRY) {
2246 if (!(pTarget->tflags & MPT_TARGET_FLAGS_Q_YES)) 2260 if (!(pTarget->tflags & MPT_TARGET_FLAGS_Q_YES))
@@ -2264,10 +2278,10 @@ mptscsih_set_queue_depth(struct scsi_device *device, MPT_SCSI_HOST *hd,
2264 else 2278 else
2265 tagged = MSG_SIMPLE_TAG; 2279 tagged = MSG_SIMPLE_TAG;
2266 2280
2267 scsi_adjust_queue_depth(device, tagged, qdepth); 2281 scsi_adjust_queue_depth(sdev, tagged, qdepth);
2282 return sdev->queue_depth;
2268} 2283}
2269 2284
2270
2271/* 2285/*
2272 * OS entry point to adjust the queue_depths on a per-device basis. 2286 * OS entry point to adjust the queue_depths on a per-device basis.
2273 * Called once per device the bus scan. Use it to force the queue_depth 2287 * Called once per device the bus scan. Use it to force the queue_depth
@@ -2317,7 +2331,7 @@ mptscsih_slave_configure(struct scsi_device *device)
2317 2331
2318 mptscsih_initTarget(hd, device->channel, device->id, device->lun, 2332 mptscsih_initTarget(hd, device->channel, device->id, device->lun,
2319 device->inquiry, device->inquiry_len ); 2333 device->inquiry, device->inquiry_len );
2320 mptscsih_set_queue_depth(device, hd, pTarget, MPT_SCSI_CMD_PER_DEV_HIGH); 2334 mptscsih_change_queue_depth(device, MPT_SCSI_CMD_PER_DEV_HIGH);
2321 2335
2322 dsprintk((MYIOC_s_INFO_FMT 2336 dsprintk((MYIOC_s_INFO_FMT
2323 "Queue depth=%d, tflags=%x\n", 2337 "Queue depth=%d, tflags=%x\n",
@@ -2337,25 +2351,6 @@ slave_configure_exit:
2337 return 0; 2351 return 0;
2338} 2352}
2339 2353
2340ssize_t
2341mptscsih_store_queue_depth(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
2342{
2343 int depth;
2344 struct scsi_device *sdev = to_scsi_device(dev);
2345 MPT_SCSI_HOST *hd = (MPT_SCSI_HOST *) sdev->host->hostdata;
2346 VirtDevice *pTarget;
2347
2348 depth = simple_strtoul(buf, NULL, 0);
2349 if (depth == 0)
2350 return -EINVAL;
2351 pTarget = hd->Targets[sdev->id];
2352 if (pTarget == NULL)
2353 return -EINVAL;
2354 mptscsih_set_queue_depth(sdev, (MPT_SCSI_HOST *) sdev->host->hostdata,
2355 pTarget, depth);
2356 return count;
2357}
2358
2359/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ 2354/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
2360/* 2355/*
2361 * Private routines... 2356 * Private routines...
@@ -5586,7 +5581,7 @@ EXPORT_SYMBOL(mptscsih_taskmgmt_complete);
5586EXPORT_SYMBOL(mptscsih_scandv_complete); 5581EXPORT_SYMBOL(mptscsih_scandv_complete);
5587EXPORT_SYMBOL(mptscsih_event_process); 5582EXPORT_SYMBOL(mptscsih_event_process);
5588EXPORT_SYMBOL(mptscsih_ioc_reset); 5583EXPORT_SYMBOL(mptscsih_ioc_reset);
5589EXPORT_SYMBOL(mptscsih_store_queue_depth); 5584EXPORT_SYMBOL(mptscsih_change_queue_depth);
5590EXPORT_SYMBOL(mptscsih_timer_expired); 5585EXPORT_SYMBOL(mptscsih_timer_expired);
5591 5586
5592/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/ 5587/*=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=*/
diff --git a/drivers/message/fusion/mptscsih.h b/drivers/message/fusion/mptscsih.h
index debb8ac59545..51c0255ac16e 100644
--- a/drivers/message/fusion/mptscsih.h
+++ b/drivers/message/fusion/mptscsih.h
@@ -103,5 +103,5 @@ extern int mptscsih_taskmgmt_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_F
103extern int mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r); 103extern int mptscsih_scandv_complete(MPT_ADAPTER *ioc, MPT_FRAME_HDR *mf, MPT_FRAME_HDR *r);
104extern int mptscsih_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply); 104extern int mptscsih_event_process(MPT_ADAPTER *ioc, EventNotificationReply_t *pEvReply);
105extern int mptscsih_ioc_reset(MPT_ADAPTER *ioc, int post_reset); 105extern int mptscsih_ioc_reset(MPT_ADAPTER *ioc, int post_reset);
106extern ssize_t mptscsih_store_queue_depth(struct device *dev, struct device_attribute *attr, const char *buf, size_t count); 106extern int mptscsih_change_queue_depth(struct scsi_device *sdev, int qdepth);
107extern void mptscsih_timer_expired(unsigned long data); 107extern void mptscsih_timer_expired(unsigned long data);
diff --git a/drivers/message/fusion/mptspi.c b/drivers/message/fusion/mptspi.c
index e0c0ee5bc966..dfa8806b1e13 100644
--- a/drivers/message/fusion/mptspi.c
+++ b/drivers/message/fusion/mptspi.c
@@ -102,19 +102,6 @@ static int mptspiDoneCtx = -1;
102static int mptspiTaskCtx = -1; 102static int mptspiTaskCtx = -1;
103static int mptspiInternalCtx = -1; /* Used only for internal commands */ 103static int mptspiInternalCtx = -1; /* Used only for internal commands */
104 104
105static struct device_attribute mptspi_queue_depth_attr = {
106 .attr = {
107 .name = "queue_depth",
108 .mode = S_IWUSR,
109 },
110 .store = mptscsih_store_queue_depth,
111};
112
113static struct device_attribute *mptspi_dev_attrs[] = {
114 &mptspi_queue_depth_attr,
115 NULL,
116};
117
118static struct scsi_host_template mptspi_driver_template = { 105static struct scsi_host_template mptspi_driver_template = {
119 .proc_name = "mptspi", 106 .proc_name = "mptspi",
120 .proc_info = mptscsih_proc_info, 107 .proc_info = mptscsih_proc_info,
@@ -124,6 +111,7 @@ static struct scsi_host_template mptspi_driver_template = {
124 .slave_alloc = mptscsih_slave_alloc, 111 .slave_alloc = mptscsih_slave_alloc,
125 .slave_configure = mptscsih_slave_configure, 112 .slave_configure = mptscsih_slave_configure,
126 .slave_destroy = mptscsih_slave_destroy, 113 .slave_destroy = mptscsih_slave_destroy,
114 .change_queue_depth = mptscsih_change_queue_depth,
127 .eh_abort_handler = mptscsih_abort, 115 .eh_abort_handler = mptscsih_abort,
128 .eh_device_reset_handler = mptscsih_dev_reset, 116 .eh_device_reset_handler = mptscsih_dev_reset,
129 .eh_bus_reset_handler = mptscsih_bus_reset, 117 .eh_bus_reset_handler = mptscsih_bus_reset,
@@ -135,7 +123,6 @@ static struct scsi_host_template mptspi_driver_template = {
135 .max_sectors = 8192, 123 .max_sectors = 8192,
136 .cmd_per_lun = 7, 124 .cmd_per_lun = 7,
137 .use_clustering = ENABLE_CLUSTERING, 125 .use_clustering = ENABLE_CLUSTERING,
138 .sdev_attrs = mptspi_dev_attrs,
139}; 126};
140 127
141 128
@@ -287,10 +274,6 @@ mptspi_probe(struct pci_dev *pdev, const struct pci_device_id *id)
287 sh->sg_tablesize = numSGE; 274 sh->sg_tablesize = numSGE;
288 } 275 }
289 276
290 /* Set the pci device pointer in Scsi_Host structure.
291 */
292 scsi_set_device(sh, &ioc->pcidev->dev);
293
294 spin_unlock_irqrestore(&ioc->FreeQlock, flags); 277 spin_unlock_irqrestore(&ioc->FreeQlock, flags);
295 278
296 hd = (MPT_SCSI_HOST *) sh->hostdata; 279 hd = (MPT_SCSI_HOST *) sh->hostdata;