[SCSI] scsi: 2 drivers need MODULE_LICENSE()
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / scsi / scsi_lib.c
CommitLineData
1da177e4
LT
1/*
2 * scsi_lib.c Copyright (C) 1999 Eric Youngdale
3 *
4 * SCSI queueing library.
5 * Initial versions: Eric Youngdale (eric@andante.org).
6 * Based upon conversations with large numbers
7 * of people at Linux Expo.
8 */
9
10#include <linux/bio.h>
11#include <linux/blkdev.h>
12#include <linux/completion.h>
13#include <linux/kernel.h>
14#include <linux/mempool.h>
15#include <linux/slab.h>
16#include <linux/init.h>
17#include <linux/pci.h>
18#include <linux/delay.h>
19
20#include <scsi/scsi.h>
21#include <scsi/scsi_dbg.h>
22#include <scsi/scsi_device.h>
23#include <scsi/scsi_driver.h>
24#include <scsi/scsi_eh.h>
25#include <scsi/scsi_host.h>
26#include <scsi/scsi_request.h>
27
28#include "scsi_priv.h"
29#include "scsi_logging.h"
30
31
32#define SG_MEMPOOL_NR (sizeof(scsi_sg_pools)/sizeof(struct scsi_host_sg_pool))
33#define SG_MEMPOOL_SIZE 32
34
35struct scsi_host_sg_pool {
36 size_t size;
37 char *name;
38 kmem_cache_t *slab;
39 mempool_t *pool;
40};
41
42#if (SCSI_MAX_PHYS_SEGMENTS < 32)
43#error SCSI_MAX_PHYS_SEGMENTS is too small
44#endif
45
46#define SP(x) { x, "sgpool-" #x }
52c1da39 47static struct scsi_host_sg_pool scsi_sg_pools[] = {
1da177e4
LT
48 SP(8),
49 SP(16),
50 SP(32),
51#if (SCSI_MAX_PHYS_SEGMENTS > 32)
52 SP(64),
53#if (SCSI_MAX_PHYS_SEGMENTS > 64)
54 SP(128),
55#if (SCSI_MAX_PHYS_SEGMENTS > 128)
56 SP(256),
57#if (SCSI_MAX_PHYS_SEGMENTS > 256)
58#error SCSI_MAX_PHYS_SEGMENTS is too large
59#endif
60#endif
61#endif
62#endif
63};
64#undef SP
65
66
67/*
68 * Function: scsi_insert_special_req()
69 *
70 * Purpose: Insert pre-formed request into request queue.
71 *
72 * Arguments: sreq - request that is ready to be queued.
73 * at_head - boolean. True if we should insert at head
74 * of queue, false if we should insert at tail.
75 *
76 * Lock status: Assumed that lock is not held upon entry.
77 *
78 * Returns: Nothing
79 *
80 * Notes: This function is called from character device and from
81 * ioctl types of functions where the caller knows exactly
82 * what SCSI command needs to be issued. The idea is that
83 * we merely inject the command into the queue (at the head
84 * for now), and then call the queue request function to actually
85 * process it.
86 */
87int scsi_insert_special_req(struct scsi_request *sreq, int at_head)
88{
89 /*
90 * Because users of this function are apt to reuse requests with no
91 * modification, we have to sanitise the request flags here
92 */
93 sreq->sr_request->flags &= ~REQ_DONTPREP;
94 blk_insert_request(sreq->sr_device->request_queue, sreq->sr_request,
867d1191 95 at_head, sreq);
1da177e4
LT
96 return 0;
97}
98
a1bf9d1d 99static void scsi_run_queue(struct request_queue *q);
e91442b6
JB
100static void scsi_release_buffers(struct scsi_cmnd *cmd);
101
102/*
103 * Function: scsi_unprep_request()
104 *
105 * Purpose: Remove all preparation done for a request, including its
106 * associated scsi_cmnd, so that it can be requeued.
107 *
108 * Arguments: req - request to unprepare
109 *
110 * Lock status: Assumed that no locks are held upon entry.
111 *
112 * Returns: Nothing.
113 */
114static void scsi_unprep_request(struct request *req)
115{
116 struct scsi_cmnd *cmd = req->special;
117
118 req->flags &= ~REQ_DONTPREP;
119 req->special = (req->flags & REQ_SPECIAL) ? cmd->sc_request : NULL;
120
121 scsi_release_buffers(cmd);
122 scsi_put_command(cmd);
123}
a1bf9d1d 124
1da177e4
LT
125/*
126 * Function: scsi_queue_insert()
127 *
128 * Purpose: Insert a command in the midlevel queue.
129 *
130 * Arguments: cmd - command that we are adding to queue.
131 * reason - why we are inserting command to queue.
132 *
133 * Lock status: Assumed that lock is not held upon entry.
134 *
135 * Returns: Nothing.
136 *
137 * Notes: We do this for one of two cases. Either the host is busy
138 * and it cannot accept any more commands for the time being,
139 * or the device returned QUEUE_FULL and can accept no more
140 * commands.
141 * Notes: This could be called either from an interrupt context or a
142 * normal process context.
e91442b6 143 * Notes: Upon return, cmd is a stale pointer.
1da177e4
LT
144 */
145int scsi_queue_insert(struct scsi_cmnd *cmd, int reason)
146{
147 struct Scsi_Host *host = cmd->device->host;
148 struct scsi_device *device = cmd->device;
a1bf9d1d 149 struct request_queue *q = device->request_queue;
e91442b6 150 struct request *req = cmd->request;
a1bf9d1d 151 unsigned long flags;
1da177e4
LT
152
153 SCSI_LOG_MLQUEUE(1,
154 printk("Inserting command %p into mlqueue\n", cmd));
155
156 /*
d8c37e7b 157 * Set the appropriate busy bit for the device/host.
1da177e4
LT
158 *
159 * If the host/device isn't busy, assume that something actually
160 * completed, and that we should be able to queue a command now.
161 *
162 * Note that the prior mid-layer assumption that any host could
163 * always queue at least one command is now broken. The mid-layer
164 * will implement a user specifiable stall (see
165 * scsi_host.max_host_blocked and scsi_device.max_device_blocked)
166 * if a command is requeued with no other commands outstanding
167 * either for the device or for the host.
168 */
169 if (reason == SCSI_MLQUEUE_HOST_BUSY)
170 host->host_blocked = host->max_host_blocked;
171 else if (reason == SCSI_MLQUEUE_DEVICE_BUSY)
172 device->device_blocked = device->max_device_blocked;
173
1da177e4
LT
174 /*
175 * Decrement the counters, since these commands are no longer
176 * active on the host/device.
177 */
178 scsi_device_unbusy(device);
179
180 /*
a1bf9d1d
TH
181 * Requeue this command. It will go before all other commands
182 * that are already in the queue.
1da177e4
LT
183 *
184 * NOTE: there is magic here about the way the queue is plugged if
185 * we have no outstanding commands.
186 *
a1bf9d1d 187 * Although we *don't* plug the queue, we call the request
1da177e4
LT
188 * function. The SCSI request function detects the blocked condition
189 * and plugs the queue appropriately.
a1bf9d1d 190 */
e91442b6 191 scsi_unprep_request(req);
a1bf9d1d 192 spin_lock_irqsave(q->queue_lock, flags);
e91442b6 193 blk_requeue_request(q, req);
a1bf9d1d
TH
194 spin_unlock_irqrestore(q->queue_lock, flags);
195
196 scsi_run_queue(q);
197
1da177e4
LT
198 return 0;
199}
200
201/*
202 * Function: scsi_do_req
203 *
204 * Purpose: Queue a SCSI request
205 *
206 * Arguments: sreq - command descriptor.
207 * cmnd - actual SCSI command to be performed.
208 * buffer - data buffer.
209 * bufflen - size of data buffer.
210 * done - completion function to be run.
211 * timeout - how long to let it run before timeout.
212 * retries - number of retries we allow.
213 *
214 * Lock status: No locks held upon entry.
215 *
216 * Returns: Nothing.
217 *
218 * Notes: This function is only used for queueing requests for things
219 * like ioctls and character device requests - this is because
220 * we essentially just inject a request into the queue for the
221 * device.
222 *
223 * In order to support the scsi_device_quiesce function, we
224 * now inject requests on the *head* of the device queue
225 * rather than the tail.
226 */
227void scsi_do_req(struct scsi_request *sreq, const void *cmnd,
228 void *buffer, unsigned bufflen,
229 void (*done)(struct scsi_cmnd *),
230 int timeout, int retries)
231{
232 /*
233 * If the upper level driver is reusing these things, then
234 * we should release the low-level block now. Another one will
235 * be allocated later when this request is getting queued.
236 */
237 __scsi_release_request(sreq);
238
239 /*
240 * Our own function scsi_done (which marks the host as not busy,
241 * disables the timeout counter, etc) will be called by us or by the
242 * scsi_hosts[host].queuecommand() function needs to also call
243 * the completion function for the high level driver.
244 */
245 memcpy(sreq->sr_cmnd, cmnd, sizeof(sreq->sr_cmnd));
246 sreq->sr_bufflen = bufflen;
247 sreq->sr_buffer = buffer;
248 sreq->sr_allowed = retries;
249 sreq->sr_done = done;
250 sreq->sr_timeout_per_command = timeout;
251
252 if (sreq->sr_cmd_len == 0)
253 sreq->sr_cmd_len = COMMAND_SIZE(sreq->sr_cmnd[0]);
254
255 /*
256 * head injection *required* here otherwise quiesce won't work
257 */
258 scsi_insert_special_req(sreq, 1);
259}
260EXPORT_SYMBOL(scsi_do_req);
261
1da177e4
LT
262/* This is the end routine we get to if a command was never attached
263 * to the request. Simply complete the request without changing
264 * rq_status; this will cause a DRIVER_ERROR. */
265static void scsi_wait_req_end_io(struct request *req)
266{
267 BUG_ON(!req->waiting);
268
269 complete(req->waiting);
270}
271
272void scsi_wait_req(struct scsi_request *sreq, const void *cmnd, void *buffer,
273 unsigned bufflen, int timeout, int retries)
274{
275 DECLARE_COMPLETION(wait);
39216033 276 int write = (sreq->sr_data_direction == DMA_TO_DEVICE);
e537a36d
JB
277 struct request *req;
278
8e640118
JB
279 req = blk_get_request(sreq->sr_device->request_queue, write,
280 __GFP_WAIT);
281 if (bufflen && blk_rq_map_kern(sreq->sr_device->request_queue, req,
282 buffer, bufflen, __GFP_WAIT)) {
283 sreq->sr_result = DRIVER_ERROR << 24;
284 blk_put_request(req);
285 return;
286 }
287
e537a36d
JB
288 req->flags |= REQ_NOMERGE;
289 req->waiting = &wait;
290 req->end_io = scsi_wait_req_end_io;
291 req->cmd_len = COMMAND_SIZE(((u8 *)cmnd)[0]);
292 req->sense = sreq->sr_sense_buffer;
293 req->sense_len = 0;
294 memcpy(req->cmd, cmnd, req->cmd_len);
295 req->timeout = timeout;
296 req->flags |= REQ_BLOCK_PC;
297 req->rq_disk = NULL;
298 blk_insert_request(sreq->sr_device->request_queue, req,
299 sreq->sr_data_direction == DMA_TO_DEVICE, NULL);
1da177e4
LT
300 wait_for_completion(&wait);
301 sreq->sr_request->waiting = NULL;
e537a36d
JB
302 sreq->sr_result = req->errors;
303 if (req->errors)
1da177e4
LT
304 sreq->sr_result |= (DRIVER_ERROR << 24);
305
e537a36d 306 blk_put_request(req);
1da177e4 307}
e537a36d 308
1da177e4
LT
309EXPORT_SYMBOL(scsi_wait_req);
310
39216033 311/**
33aa687d 312 * scsi_execute - insert request and wait for the result
39216033
JB
313 * @sdev: scsi device
314 * @cmd: scsi command
315 * @data_direction: data direction
316 * @buffer: data buffer
317 * @bufflen: len of buffer
318 * @sense: optional sense buffer
319 * @timeout: request timeout in seconds
320 * @retries: number of times to retry request
33aa687d 321 * @flags: or into request flags;
39216033 322 *
ea73a9f2
JB
323 * returns the req->errors value which is the the scsi_cmnd result
324 * field.
39216033 325 **/
33aa687d
JB
326int scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
327 int data_direction, void *buffer, unsigned bufflen,
328 unsigned char *sense, int timeout, int retries, int flags)
39216033
JB
329{
330 struct request *req;
331 int write = (data_direction == DMA_TO_DEVICE);
332 int ret = DRIVER_ERROR << 24;
333
334 req = blk_get_request(sdev->request_queue, write, __GFP_WAIT);
335
336 if (bufflen && blk_rq_map_kern(sdev->request_queue, req,
337 buffer, bufflen, __GFP_WAIT))
338 goto out;
339
340 req->cmd_len = COMMAND_SIZE(cmd[0]);
341 memcpy(req->cmd, cmd, req->cmd_len);
342 req->sense = sense;
343 req->sense_len = 0;
344 req->timeout = timeout;
3173d8c3 345 req->flags |= flags | REQ_BLOCK_PC | REQ_SPECIAL | REQ_QUIET;
39216033
JB
346
347 /*
348 * head injection *required* here otherwise quiesce won't work
349 */
350 blk_execute_rq(req->q, NULL, req, 1);
351
352 ret = req->errors;
353 out:
354 blk_put_request(req);
355
356 return ret;
357}
33aa687d 358EXPORT_SYMBOL(scsi_execute);
39216033 359
ea73a9f2
JB
360
361int scsi_execute_req(struct scsi_device *sdev, const unsigned char *cmd,
362 int data_direction, void *buffer, unsigned bufflen,
363 struct scsi_sense_hdr *sshdr, int timeout, int retries)
364{
365 char *sense = NULL;
1ccb48bb
AM
366 int result;
367
ea73a9f2 368 if (sshdr) {
286f3e13 369 sense = kmalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
ea73a9f2
JB
370 if (!sense)
371 return DRIVER_ERROR << 24;
e514385b 372 memset(sense, 0, SCSI_SENSE_BUFFERSIZE);
ea73a9f2 373 }
1ccb48bb 374 result = scsi_execute(sdev, cmd, data_direction, buffer, bufflen,
ea73a9f2
JB
375 sense, timeout, retries, 0);
376 if (sshdr)
e514385b 377 scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, sshdr);
ea73a9f2
JB
378
379 kfree(sense);
380 return result;
381}
382EXPORT_SYMBOL(scsi_execute_req);
383
1da177e4
LT
384/*
385 * Function: scsi_init_cmd_errh()
386 *
387 * Purpose: Initialize cmd fields related to error handling.
388 *
389 * Arguments: cmd - command that is ready to be queued.
390 *
391 * Returns: Nothing
392 *
393 * Notes: This function has the job of initializing a number of
394 * fields related to error handling. Typically this will
395 * be called once for each command, as required.
396 */
397static int scsi_init_cmd_errh(struct scsi_cmnd *cmd)
398{
1da177e4 399 cmd->serial_number = 0;
1da177e4
LT
400
401 memset(cmd->sense_buffer, 0, sizeof cmd->sense_buffer);
402
403 if (cmd->cmd_len == 0)
404 cmd->cmd_len = COMMAND_SIZE(cmd->cmnd[0]);
405
406 /*
407 * We need saved copies of a number of fields - this is because
408 * error handling may need to overwrite these with different values
409 * to run different commands, and once error handling is complete,
410 * we will need to restore these values prior to running the actual
411 * command.
412 */
413 cmd->old_use_sg = cmd->use_sg;
414 cmd->old_cmd_len = cmd->cmd_len;
415 cmd->sc_old_data_direction = cmd->sc_data_direction;
416 cmd->old_underflow = cmd->underflow;
417 memcpy(cmd->data_cmnd, cmd->cmnd, sizeof(cmd->cmnd));
418 cmd->buffer = cmd->request_buffer;
419 cmd->bufflen = cmd->request_bufflen;
1da177e4
LT
420
421 return 1;
422}
423
424/*
425 * Function: scsi_setup_cmd_retry()
426 *
427 * Purpose: Restore the command state for a retry
428 *
429 * Arguments: cmd - command to be restored
430 *
431 * Returns: Nothing
432 *
433 * Notes: Immediately prior to retrying a command, we need
434 * to restore certain fields that we saved above.
435 */
436void scsi_setup_cmd_retry(struct scsi_cmnd *cmd)
437{
438 memcpy(cmd->cmnd, cmd->data_cmnd, sizeof(cmd->data_cmnd));
439 cmd->request_buffer = cmd->buffer;
440 cmd->request_bufflen = cmd->bufflen;
441 cmd->use_sg = cmd->old_use_sg;
442 cmd->cmd_len = cmd->old_cmd_len;
443 cmd->sc_data_direction = cmd->sc_old_data_direction;
444 cmd->underflow = cmd->old_underflow;
445}
446
447void scsi_device_unbusy(struct scsi_device *sdev)
448{
449 struct Scsi_Host *shost = sdev->host;
450 unsigned long flags;
451
452 spin_lock_irqsave(shost->host_lock, flags);
453 shost->host_busy--;
d3301874 454 if (unlikely((shost->shost_state == SHOST_RECOVERY) &&
1da177e4
LT
455 shost->host_failed))
456 scsi_eh_wakeup(shost);
457 spin_unlock(shost->host_lock);
152587de 458 spin_lock(sdev->request_queue->queue_lock);
1da177e4 459 sdev->device_busy--;
152587de 460 spin_unlock_irqrestore(sdev->request_queue->queue_lock, flags);
1da177e4
LT
461}
462
463/*
464 * Called for single_lun devices on IO completion. Clear starget_sdev_user,
465 * and call blk_run_queue for all the scsi_devices on the target -
466 * including current_sdev first.
467 *
468 * Called with *no* scsi locks held.
469 */
470static void scsi_single_lun_run(struct scsi_device *current_sdev)
471{
472 struct Scsi_Host *shost = current_sdev->host;
473 struct scsi_device *sdev, *tmp;
474 struct scsi_target *starget = scsi_target(current_sdev);
475 unsigned long flags;
476
477 spin_lock_irqsave(shost->host_lock, flags);
478 starget->starget_sdev_user = NULL;
479 spin_unlock_irqrestore(shost->host_lock, flags);
480
481 /*
482 * Call blk_run_queue for all LUNs on the target, starting with
483 * current_sdev. We race with others (to set starget_sdev_user),
484 * but in most cases, we will be first. Ideally, each LU on the
485 * target would get some limited time or requests on the target.
486 */
487 blk_run_queue(current_sdev->request_queue);
488
489 spin_lock_irqsave(shost->host_lock, flags);
490 if (starget->starget_sdev_user)
491 goto out;
492 list_for_each_entry_safe(sdev, tmp, &starget->devices,
493 same_target_siblings) {
494 if (sdev == current_sdev)
495 continue;
496 if (scsi_device_get(sdev))
497 continue;
498
499 spin_unlock_irqrestore(shost->host_lock, flags);
500 blk_run_queue(sdev->request_queue);
501 spin_lock_irqsave(shost->host_lock, flags);
502
503 scsi_device_put(sdev);
504 }
505 out:
506 spin_unlock_irqrestore(shost->host_lock, flags);
507}
508
509/*
510 * Function: scsi_run_queue()
511 *
512 * Purpose: Select a proper request queue to serve next
513 *
514 * Arguments: q - last request's queue
515 *
516 * Returns: Nothing
517 *
518 * Notes: The previous command was completely finished, start
519 * a new one if possible.
520 */
521static void scsi_run_queue(struct request_queue *q)
522{
523 struct scsi_device *sdev = q->queuedata;
524 struct Scsi_Host *shost = sdev->host;
525 unsigned long flags;
526
527 if (sdev->single_lun)
528 scsi_single_lun_run(sdev);
529
530 spin_lock_irqsave(shost->host_lock, flags);
531 while (!list_empty(&shost->starved_list) &&
532 !shost->host_blocked && !shost->host_self_blocked &&
533 !((shost->can_queue > 0) &&
534 (shost->host_busy >= shost->can_queue))) {
535 /*
536 * As long as shost is accepting commands and we have
537 * starved queues, call blk_run_queue. scsi_request_fn
538 * drops the queue_lock and can add us back to the
539 * starved_list.
540 *
541 * host_lock protects the starved_list and starved_entry.
542 * scsi_request_fn must get the host_lock before checking
543 * or modifying starved_list or starved_entry.
544 */
545 sdev = list_entry(shost->starved_list.next,
546 struct scsi_device, starved_entry);
547 list_del_init(&sdev->starved_entry);
548 spin_unlock_irqrestore(shost->host_lock, flags);
549
550 blk_run_queue(sdev->request_queue);
551
552 spin_lock_irqsave(shost->host_lock, flags);
553 if (unlikely(!list_empty(&sdev->starved_entry)))
554 /*
555 * sdev lost a race, and was put back on the
556 * starved list. This is unlikely but without this
557 * in theory we could loop forever.
558 */
559 break;
560 }
561 spin_unlock_irqrestore(shost->host_lock, flags);
562
563 blk_run_queue(q);
564}
565
566/*
567 * Function: scsi_requeue_command()
568 *
569 * Purpose: Handle post-processing of completed commands.
570 *
571 * Arguments: q - queue to operate on
572 * cmd - command that may need to be requeued.
573 *
574 * Returns: Nothing
575 *
576 * Notes: After command completion, there may be blocks left
577 * over which weren't finished by the previous command
578 * this can be for a number of reasons - the main one is
579 * I/O errors in the middle of the request, in which case
580 * we need to request the blocks that come after the bad
581 * sector.
e91442b6 582 * Notes: Upon return, cmd is a stale pointer.
1da177e4
LT
583 */
584static void scsi_requeue_command(struct request_queue *q, struct scsi_cmnd *cmd)
585{
e91442b6 586 struct request *req = cmd->request;
283369cc
TH
587 unsigned long flags;
588
e91442b6 589 scsi_unprep_request(req);
283369cc 590 spin_lock_irqsave(q->queue_lock, flags);
e91442b6 591 blk_requeue_request(q, req);
283369cc 592 spin_unlock_irqrestore(q->queue_lock, flags);
1da177e4
LT
593
594 scsi_run_queue(q);
595}
596
597void scsi_next_command(struct scsi_cmnd *cmd)
598{
599 struct request_queue *q = cmd->device->request_queue;
600
601 scsi_put_command(cmd);
602 scsi_run_queue(q);
603}
604
605void scsi_run_host_queues(struct Scsi_Host *shost)
606{
607 struct scsi_device *sdev;
608
609 shost_for_each_device(sdev, shost)
610 scsi_run_queue(sdev->request_queue);
611}
612
613/*
614 * Function: scsi_end_request()
615 *
616 * Purpose: Post-processing of completed commands (usually invoked at end
617 * of upper level post-processing and scsi_io_completion).
618 *
619 * Arguments: cmd - command that is complete.
620 * uptodate - 1 if I/O indicates success, <= 0 for I/O error.
621 * bytes - number of bytes of completed I/O
622 * requeue - indicates whether we should requeue leftovers.
623 *
624 * Lock status: Assumed that lock is not held upon entry.
625 *
e91442b6 626 * Returns: cmd if requeue required, NULL otherwise.
1da177e4
LT
627 *
628 * Notes: This is called for block device requests in order to
629 * mark some number of sectors as complete.
630 *
631 * We are guaranteeing that the request queue will be goosed
632 * at some point during this call.
e91442b6 633 * Notes: If cmd was requeued, upon return it will be a stale pointer.
1da177e4
LT
634 */
635static struct scsi_cmnd *scsi_end_request(struct scsi_cmnd *cmd, int uptodate,
636 int bytes, int requeue)
637{
638 request_queue_t *q = cmd->device->request_queue;
639 struct request *req = cmd->request;
640 unsigned long flags;
641
642 /*
643 * If there are blocks left over at the end, set up the command
644 * to queue the remainder of them.
645 */
646 if (end_that_request_chunk(req, uptodate, bytes)) {
647 int leftover = (req->hard_nr_sectors << 9);
648
649 if (blk_pc_request(req))
650 leftover = req->data_len;
651
652 /* kill remainder if no retrys */
653 if (!uptodate && blk_noretry_request(req))
654 end_that_request_chunk(req, 0, leftover);
655 else {
e91442b6 656 if (requeue) {
1da177e4
LT
657 /*
658 * Bleah. Leftovers again. Stick the
659 * leftovers in the front of the
660 * queue, and goose the queue again.
661 */
662 scsi_requeue_command(q, cmd);
e91442b6
JB
663 cmd = NULL;
664 }
1da177e4
LT
665 return cmd;
666 }
667 }
668
669 add_disk_randomness(req->rq_disk);
670
671 spin_lock_irqsave(q->queue_lock, flags);
672 if (blk_rq_tagged(req))
673 blk_queue_end_tag(q, req);
674 end_that_request_last(req);
675 spin_unlock_irqrestore(q->queue_lock, flags);
676
677 /*
678 * This will goose the queue request function at the end, so we don't
679 * need to worry about launching another command.
680 */
681 scsi_next_command(cmd);
682 return NULL;
683}
684
685static struct scatterlist *scsi_alloc_sgtable(struct scsi_cmnd *cmd, int gfp_mask)
686{
687 struct scsi_host_sg_pool *sgp;
688 struct scatterlist *sgl;
689
690 BUG_ON(!cmd->use_sg);
691
692 switch (cmd->use_sg) {
693 case 1 ... 8:
694 cmd->sglist_len = 0;
695 break;
696 case 9 ... 16:
697 cmd->sglist_len = 1;
698 break;
699 case 17 ... 32:
700 cmd->sglist_len = 2;
701 break;
702#if (SCSI_MAX_PHYS_SEGMENTS > 32)
703 case 33 ... 64:
704 cmd->sglist_len = 3;
705 break;
706#if (SCSI_MAX_PHYS_SEGMENTS > 64)
707 case 65 ... 128:
708 cmd->sglist_len = 4;
709 break;
710#if (SCSI_MAX_PHYS_SEGMENTS > 128)
711 case 129 ... 256:
712 cmd->sglist_len = 5;
713 break;
714#endif
715#endif
716#endif
717 default:
718 return NULL;
719 }
720
721 sgp = scsi_sg_pools + cmd->sglist_len;
722 sgl = mempool_alloc(sgp->pool, gfp_mask);
1da177e4
LT
723 return sgl;
724}
725
726static void scsi_free_sgtable(struct scatterlist *sgl, int index)
727{
728 struct scsi_host_sg_pool *sgp;
729
a77e3362 730 BUG_ON(index >= SG_MEMPOOL_NR);
1da177e4
LT
731
732 sgp = scsi_sg_pools + index;
733 mempool_free(sgl, sgp->pool);
734}
735
736/*
737 * Function: scsi_release_buffers()
738 *
739 * Purpose: Completion processing for block device I/O requests.
740 *
741 * Arguments: cmd - command that we are bailing.
742 *
743 * Lock status: Assumed that no lock is held upon entry.
744 *
745 * Returns: Nothing
746 *
747 * Notes: In the event that an upper level driver rejects a
748 * command, we must release resources allocated during
749 * the __init_io() function. Primarily this would involve
750 * the scatter-gather table, and potentially any bounce
751 * buffers.
752 */
753static void scsi_release_buffers(struct scsi_cmnd *cmd)
754{
755 struct request *req = cmd->request;
756
757 /*
758 * Free up any indirection buffers we allocated for DMA purposes.
759 */
760 if (cmd->use_sg)
761 scsi_free_sgtable(cmd->request_buffer, cmd->sglist_len);
762 else if (cmd->request_buffer != req->buffer)
763 kfree(cmd->request_buffer);
764
765 /*
766 * Zero these out. They now point to freed memory, and it is
767 * dangerous to hang onto the pointers.
768 */
769 cmd->buffer = NULL;
770 cmd->bufflen = 0;
771 cmd->request_buffer = NULL;
772 cmd->request_bufflen = 0;
773}
774
775/*
776 * Function: scsi_io_completion()
777 *
778 * Purpose: Completion processing for block device I/O requests.
779 *
780 * Arguments: cmd - command that is finished.
781 *
782 * Lock status: Assumed that no lock is held upon entry.
783 *
784 * Returns: Nothing
785 *
786 * Notes: This function is matched in terms of capabilities to
787 * the function that created the scatter-gather list.
788 * In other words, if there are no bounce buffers
789 * (the normal case for most drivers), we don't need
790 * the logic to deal with cleaning up afterwards.
791 *
792 * We must do one of several things here:
793 *
794 * a) Call scsi_end_request. This will finish off the
795 * specified number of sectors. If we are done, the
796 * command block will be released, and the queue
797 * function will be goosed. If we are not done, then
798 * scsi_end_request will directly goose the queue.
799 *
800 * b) We can just use scsi_requeue_command() here. This would
801 * be used if we just wanted to retry, for example.
802 */
803void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes,
804 unsigned int block_bytes)
805{
806 int result = cmd->result;
807 int this_count = cmd->bufflen;
808 request_queue_t *q = cmd->device->request_queue;
809 struct request *req = cmd->request;
810 int clear_errors = 1;
811 struct scsi_sense_hdr sshdr;
812 int sense_valid = 0;
813 int sense_deferred = 0;
814
815 if (blk_complete_barrier_rq(q, req, good_bytes >> 9))
816 return;
817
818 /*
819 * Free up any indirection buffers we allocated for DMA purposes.
820 * For the case of a READ, we need to copy the data out of the
821 * bounce buffer and into the real buffer.
822 */
823 if (cmd->use_sg)
824 scsi_free_sgtable(cmd->buffer, cmd->sglist_len);
825 else if (cmd->buffer != req->buffer) {
826 if (rq_data_dir(req) == READ) {
827 unsigned long flags;
828 char *to = bio_kmap_irq(req->bio, &flags);
829 memcpy(to, cmd->buffer, cmd->bufflen);
830 bio_kunmap_irq(to, &flags);
831 }
832 kfree(cmd->buffer);
833 }
834
835 if (result) {
836 sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
837 if (sense_valid)
838 sense_deferred = scsi_sense_is_deferred(&sshdr);
839 }
840 if (blk_pc_request(req)) { /* SG_IO ioctl from block level */
841 req->errors = result;
842 if (result) {
843 clear_errors = 0;
844 if (sense_valid && req->sense) {
845 /*
846 * SG_IO wants current and deferred errors
847 */
848 int len = 8 + cmd->sense_buffer[7];
849
850 if (len > SCSI_SENSE_BUFFERSIZE)
851 len = SCSI_SENSE_BUFFERSIZE;
852 memcpy(req->sense, cmd->sense_buffer, len);
853 req->sense_len = len;
854 }
855 } else
856 req->data_len = cmd->resid;
857 }
858
859 /*
860 * Zero these out. They now point to freed memory, and it is
861 * dangerous to hang onto the pointers.
862 */
863 cmd->buffer = NULL;
864 cmd->bufflen = 0;
865 cmd->request_buffer = NULL;
866 cmd->request_bufflen = 0;
867
868 /*
869 * Next deal with any sectors which we were able to correctly
870 * handle.
871 */
872 if (good_bytes >= 0) {
873 SCSI_LOG_HLCOMPLETE(1, printk("%ld sectors total, %d bytes done.\n",
874 req->nr_sectors, good_bytes));
875 SCSI_LOG_HLCOMPLETE(1, printk("use_sg is %d\n", cmd->use_sg));
876
877 if (clear_errors)
878 req->errors = 0;
879 /*
880 * If multiple sectors are requested in one buffer, then
881 * they will have been finished off by the first command.
882 * If not, then we have a multi-buffer command.
883 *
884 * If block_bytes != 0, it means we had a medium error
885 * of some sort, and that we want to mark some number of
886 * sectors as not uptodate. Thus we want to inhibit
887 * requeueing right here - we will requeue down below
888 * when we handle the bad sectors.
889 */
1da177e4
LT
890
891 /*
e91442b6
JB
892 * If the command completed without error, then either
893 * finish off the rest of the command, or start a new one.
1da177e4 894 */
e91442b6 895 if (scsi_end_request(cmd, 1, good_bytes, result == 0) == NULL)
1da177e4 896 return;
1da177e4
LT
897 }
898 /*
899 * Now, if we were good little boys and girls, Santa left us a request
900 * sense buffer. We can extract information from this, so we
901 * can choose a block to remap, etc.
902 */
903 if (sense_valid && !sense_deferred) {
904 switch (sshdr.sense_key) {
905 case UNIT_ATTENTION:
906 if (cmd->device->removable) {
907 /* detected disc change. set a bit
908 * and quietly refuse further access.
909 */
910 cmd->device->changed = 1;
e91442b6 911 scsi_end_request(cmd, 0,
1da177e4
LT
912 this_count, 1);
913 return;
914 } else {
915 /*
916 * Must have been a power glitch, or a
917 * bus reset. Could not have been a
918 * media change, so we just retry the
919 * request and see what happens.
920 */
921 scsi_requeue_command(q, cmd);
922 return;
923 }
924 break;
925 case ILLEGAL_REQUEST:
926 /*
927 * If we had an ILLEGAL REQUEST returned, then we may
928 * have performed an unsupported command. The only
929 * thing this should be would be a ten byte read where
930 * only a six byte read was supported. Also, on a
931 * system where READ CAPACITY failed, we may have read
932 * past the end of the disk.
933 */
934 if (cmd->device->use_10_for_rw &&
935 (cmd->cmnd[0] == READ_10 ||
936 cmd->cmnd[0] == WRITE_10)) {
937 cmd->device->use_10_for_rw = 0;
938 /*
939 * This will cause a retry with a 6-byte
940 * command.
941 */
942 scsi_requeue_command(q, cmd);
943 result = 0;
944 } else {
e91442b6 945 scsi_end_request(cmd, 0, this_count, 1);
1da177e4
LT
946 return;
947 }
948 break;
949 case NOT_READY:
950 /*
951 * If the device is in the process of becoming ready,
952 * retry.
953 */
954 if (sshdr.asc == 0x04 && sshdr.ascq == 0x01) {
955 scsi_requeue_command(q, cmd);
956 return;
957 }
3173d8c3
JB
958 if (!(req->flags & REQ_QUIET))
959 dev_printk(KERN_INFO,
960 &cmd->device->sdev_gendev,
961 "Device not ready.\n");
e91442b6 962 scsi_end_request(cmd, 0, this_count, 1);
1da177e4
LT
963 return;
964 case VOLUME_OVERFLOW:
3173d8c3
JB
965 if (!(req->flags & REQ_QUIET)) {
966 dev_printk(KERN_INFO,
967 &cmd->device->sdev_gendev,
968 "Volume overflow, CDB: ");
969 __scsi_print_command(cmd->data_cmnd);
970 scsi_print_sense("", cmd);
971 }
e91442b6 972 scsi_end_request(cmd, 0, block_bytes, 1);
1da177e4
LT
973 return;
974 default:
975 break;
976 }
977 } /* driver byte != 0 */
978 if (host_byte(result) == DID_RESET) {
979 /*
980 * Third party bus reset or reset for error
981 * recovery reasons. Just retry the request
982 * and see what happens.
983 */
984 scsi_requeue_command(q, cmd);
985 return;
986 }
987 if (result) {
3173d8c3
JB
988 if (!(req->flags & REQ_QUIET)) {
989 dev_printk(KERN_INFO, &cmd->device->sdev_gendev,
990 "SCSI error: return code = 0x%x\n", result);
991
992 if (driver_byte(result) & DRIVER_SENSE)
993 scsi_print_sense("", cmd);
994 }
1da177e4
LT
995 /*
996 * Mark a single buffer as not uptodate. Queue the remainder.
997 * We sometimes get this cruft in the event that a medium error
998 * isn't properly reported.
999 */
1000 block_bytes = req->hard_cur_sectors << 9;
1001 if (!block_bytes)
1002 block_bytes = req->data_len;
e91442b6 1003 scsi_end_request(cmd, 0, block_bytes, 1);
1da177e4
LT
1004 }
1005}
1006EXPORT_SYMBOL(scsi_io_completion);
1007
1008/*
1009 * Function: scsi_init_io()
1010 *
1011 * Purpose: SCSI I/O initialize function.
1012 *
1013 * Arguments: cmd - Command descriptor we wish to initialize
1014 *
1015 * Returns: 0 on success
1016 * BLKPREP_DEFER if the failure is retryable
1017 * BLKPREP_KILL if the failure is fatal
1018 */
1019static int scsi_init_io(struct scsi_cmnd *cmd)
1020{
1021 struct request *req = cmd->request;
1022 struct scatterlist *sgpnt;
1023 int count;
1024
1025 /*
1026 * if this is a rq->data based REQ_BLOCK_PC, setup for a non-sg xfer
1027 */
1028 if ((req->flags & REQ_BLOCK_PC) && !req->bio) {
1029 cmd->request_bufflen = req->data_len;
1030 cmd->request_buffer = req->data;
1031 req->buffer = req->data;
1032 cmd->use_sg = 0;
1033 return 0;
1034 }
1035
1036 /*
1037 * we used to not use scatter-gather for single segment request,
1038 * but now we do (it makes highmem I/O easier to support without
1039 * kmapping pages)
1040 */
1041 cmd->use_sg = req->nr_phys_segments;
1042
1043 /*
1044 * if sg table allocation fails, requeue request later.
1045 */
1046 sgpnt = scsi_alloc_sgtable(cmd, GFP_ATOMIC);
beb6617d 1047 if (unlikely(!sgpnt))
1da177e4 1048 return BLKPREP_DEFER;
1da177e4
LT
1049
1050 cmd->request_buffer = (char *) sgpnt;
1051 cmd->request_bufflen = req->nr_sectors << 9;
1052 if (blk_pc_request(req))
1053 cmd->request_bufflen = req->data_len;
1054 req->buffer = NULL;
1055
1056 /*
1057 * Next, walk the list, and fill in the addresses and sizes of
1058 * each segment.
1059 */
1060 count = blk_rq_map_sg(req->q, req, cmd->request_buffer);
1061
1062 /*
1063 * mapped well, send it off
1064 */
1065 if (likely(count <= cmd->use_sg)) {
1066 cmd->use_sg = count;
1067 return 0;
1068 }
1069
1070 printk(KERN_ERR "Incorrect number of segments after building list\n");
1071 printk(KERN_ERR "counted %d, received %d\n", count, cmd->use_sg);
1072 printk(KERN_ERR "req nr_sec %lu, cur_nr_sec %u\n", req->nr_sectors,
1073 req->current_nr_sectors);
1074
1075 /* release the command and kill it */
1076 scsi_release_buffers(cmd);
1077 scsi_put_command(cmd);
1078 return BLKPREP_KILL;
1079}
1080
1081static int scsi_prepare_flush_fn(request_queue_t *q, struct request *rq)
1082{
1083 struct scsi_device *sdev = q->queuedata;
1084 struct scsi_driver *drv;
1085
1086 if (sdev->sdev_state == SDEV_RUNNING) {
1087 drv = *(struct scsi_driver **) rq->rq_disk->private_data;
1088
1089 if (drv->prepare_flush)
1090 return drv->prepare_flush(q, rq);
1091 }
1092
1093 return 0;
1094}
1095
1096static void scsi_end_flush_fn(request_queue_t *q, struct request *rq)
1097{
1098 struct scsi_device *sdev = q->queuedata;
1099 struct request *flush_rq = rq->end_io_data;
1100 struct scsi_driver *drv;
1101
1102 if (flush_rq->errors) {
1103 printk("scsi: barrier error, disabling flush support\n");
1104 blk_queue_ordered(q, QUEUE_ORDERED_NONE);
1105 }
1106
1107 if (sdev->sdev_state == SDEV_RUNNING) {
1108 drv = *(struct scsi_driver **) rq->rq_disk->private_data;
1109 drv->end_flush(q, rq);
1110 }
1111}
1112
1113static int scsi_issue_flush_fn(request_queue_t *q, struct gendisk *disk,
1114 sector_t *error_sector)
1115{
1116 struct scsi_device *sdev = q->queuedata;
1117 struct scsi_driver *drv;
1118
1119 if (sdev->sdev_state != SDEV_RUNNING)
1120 return -ENXIO;
1121
1122 drv = *(struct scsi_driver **) disk->private_data;
1123 if (drv->issue_flush)
1124 return drv->issue_flush(&sdev->sdev_gendev, error_sector);
1125
1126 return -EOPNOTSUPP;
1127}
1128
e537a36d
JB
1129static void scsi_generic_done(struct scsi_cmnd *cmd)
1130{
1131 BUG_ON(!blk_pc_request(cmd->request));
1132 scsi_io_completion(cmd, cmd->result == 0 ? cmd->bufflen : 0, 0);
1133}
1134
1da177e4
LT
1135static int scsi_prep_fn(struct request_queue *q, struct request *req)
1136{
1137 struct scsi_device *sdev = q->queuedata;
1138 struct scsi_cmnd *cmd;
1139 int specials_only = 0;
1140
1141 /*
1142 * Just check to see if the device is online. If it isn't, we
1143 * refuse to process any commands. The device must be brought
1144 * online before trying any recovery commands
1145 */
1146 if (unlikely(!scsi_device_online(sdev))) {
1147 printk(KERN_ERR "scsi%d (%d:%d): rejecting I/O to offline device\n",
1148 sdev->host->host_no, sdev->id, sdev->lun);
6f16b535 1149 goto kill;
1da177e4
LT
1150 }
1151 if (unlikely(sdev->sdev_state != SDEV_RUNNING)) {
1152 /* OK, we're not in a running state don't prep
1153 * user commands */
1154 if (sdev->sdev_state == SDEV_DEL) {
1155 /* Device is fully deleted, no commands
1156 * at all allowed down */
1157 printk(KERN_ERR "scsi%d (%d:%d): rejecting I/O to dead device\n",
1158 sdev->host->host_no, sdev->id, sdev->lun);
6f16b535 1159 goto kill;
1da177e4
LT
1160 }
1161 /* OK, we only allow special commands (i.e. not
1162 * user initiated ones */
1163 specials_only = sdev->sdev_state;
1164 }
1165
1166 /*
1167 * Find the actual device driver associated with this command.
1168 * The SPECIAL requests are things like character device or
1169 * ioctls, which did not originate from ll_rw_blk. Note that
1170 * the special field is also used to indicate the cmd for
1171 * the remainder of a partially fulfilled request that can
1172 * come up when there is a medium error. We have to treat
1173 * these two cases differently. We differentiate by looking
1174 * at request->cmd, as this tells us the real story.
1175 */
e537a36d 1176 if (req->flags & REQ_SPECIAL && req->special) {
1da177e4
LT
1177 struct scsi_request *sreq = req->special;
1178
1179 if (sreq->sr_magic == SCSI_REQ_MAGIC) {
1180 cmd = scsi_get_command(sreq->sr_device, GFP_ATOMIC);
1181 if (unlikely(!cmd))
1182 goto defer;
1183 scsi_init_cmd_from_req(cmd, sreq);
1184 } else
1185 cmd = req->special;
1186 } else if (req->flags & (REQ_CMD | REQ_BLOCK_PC)) {
1187
e537a36d 1188 if(unlikely(specials_only) && !(req->flags & REQ_SPECIAL)) {
1da177e4
LT
1189 if(specials_only == SDEV_QUIESCE ||
1190 specials_only == SDEV_BLOCK)
6f16b535 1191 goto defer;
1da177e4
LT
1192
1193 printk(KERN_ERR "scsi%d (%d:%d): rejecting I/O to device being removed\n",
1194 sdev->host->host_no, sdev->id, sdev->lun);
6f16b535 1195 goto kill;
1da177e4
LT
1196 }
1197
1198
1199 /*
1200 * Now try and find a command block that we can use.
1201 */
1202 if (!req->special) {
1203 cmd = scsi_get_command(sdev, GFP_ATOMIC);
1204 if (unlikely(!cmd))
1205 goto defer;
1206 } else
1207 cmd = req->special;
1208
1209 /* pull a tag out of the request if we have one */
1210 cmd->tag = req->tag;
1211 } else {
1212 blk_dump_rq_flags(req, "SCSI bad req");
6f16b535 1213 goto kill;
1da177e4
LT
1214 }
1215
1216 /* note the overloading of req->special. When the tag
1217 * is active it always means cmd. If the tag goes
1218 * back for re-queueing, it may be reset */
1219 req->special = cmd;
1220 cmd->request = req;
1221
1222 /*
1223 * FIXME: drop the lock here because the functions below
1224 * expect to be called without the queue lock held. Also,
1225 * previously, we dequeued the request before dropping the
1226 * lock. We hope REQ_STARTED prevents anything untoward from
1227 * happening now.
1228 */
1229 if (req->flags & (REQ_CMD | REQ_BLOCK_PC)) {
1230 struct scsi_driver *drv;
1231 int ret;
1232
1233 /*
1234 * This will do a couple of things:
1235 * 1) Fill in the actual SCSI command.
1236 * 2) Fill in any other upper-level specific fields
1237 * (timeout).
1238 *
1239 * If this returns 0, it means that the request failed
1240 * (reading past end of disk, reading offline device,
1241 * etc). This won't actually talk to the device, but
1242 * some kinds of consistency checking may cause the
1243 * request to be rejected immediately.
1244 */
1245
1246 /*
1247 * This sets up the scatter-gather table (allocating if
1248 * required).
1249 */
1250 ret = scsi_init_io(cmd);
6f16b535
MC
1251 switch(ret) {
1252 case BLKPREP_KILL:
1253 /* BLKPREP_KILL return also releases the command */
1254 goto kill;
1255 case BLKPREP_DEFER:
1256 goto defer;
1257 }
1da177e4
LT
1258
1259 /*
1260 * Initialize the actual SCSI command for this request.
1261 */
e537a36d
JB
1262 if (req->rq_disk) {
1263 drv = *(struct scsi_driver **)req->rq_disk->private_data;
1264 if (unlikely(!drv->init_command(cmd))) {
1265 scsi_release_buffers(cmd);
1266 scsi_put_command(cmd);
6f16b535 1267 goto kill;
e537a36d
JB
1268 }
1269 } else {
1270 memcpy(cmd->cmnd, req->cmd, sizeof(cmd->cmnd));
186d330e 1271 cmd->cmd_len = req->cmd_len;
e537a36d
JB
1272 if (rq_data_dir(req) == WRITE)
1273 cmd->sc_data_direction = DMA_TO_DEVICE;
1274 else if (req->data_len)
1275 cmd->sc_data_direction = DMA_FROM_DEVICE;
1276 else
1277 cmd->sc_data_direction = DMA_NONE;
1278
1279 cmd->transfersize = req->data_len;
1280 cmd->allowed = 3;
1281 cmd->timeout_per_command = req->timeout;
1282 cmd->done = scsi_generic_done;
1da177e4
LT
1283 }
1284 }
1285
1286 /*
1287 * The request is now prepped, no need to come back here
1288 */
1289 req->flags |= REQ_DONTPREP;
1290 return BLKPREP_OK;
1291
1292 defer:
1293 /* If we defer, the elv_next_request() returns NULL, but the
1294 * queue must be restarted, so we plug here if no returning
1295 * command will automatically do that. */
1296 if (sdev->device_busy == 0)
1297 blk_plug_device(q);
1298 return BLKPREP_DEFER;
6f16b535
MC
1299 kill:
1300 req->errors = DID_NO_CONNECT << 16;
1301 return BLKPREP_KILL;
1da177e4
LT
1302}
1303
1304/*
1305 * scsi_dev_queue_ready: if we can send requests to sdev, return 1 else
1306 * return 0.
1307 *
1308 * Called with the queue_lock held.
1309 */
1310static inline int scsi_dev_queue_ready(struct request_queue *q,
1311 struct scsi_device *sdev)
1312{
1313 if (sdev->device_busy >= sdev->queue_depth)
1314 return 0;
1315 if (sdev->device_busy == 0 && sdev->device_blocked) {
1316 /*
1317 * unblock after device_blocked iterates to zero
1318 */
1319 if (--sdev->device_blocked == 0) {
1320 SCSI_LOG_MLQUEUE(3,
1321 printk("scsi%d (%d:%d) unblocking device at"
1322 " zero depth\n", sdev->host->host_no,
1323 sdev->id, sdev->lun));
1324 } else {
1325 blk_plug_device(q);
1326 return 0;
1327 }
1328 }
1329 if (sdev->device_blocked)
1330 return 0;
1331
1332 return 1;
1333}
1334
1335/*
1336 * scsi_host_queue_ready: if we can send requests to shost, return 1 else
1337 * return 0. We must end up running the queue again whenever 0 is
1338 * returned, else IO can hang.
1339 *
1340 * Called with host_lock held.
1341 */
1342static inline int scsi_host_queue_ready(struct request_queue *q,
1343 struct Scsi_Host *shost,
1344 struct scsi_device *sdev)
1345{
d3301874 1346 if (shost->shost_state == SHOST_RECOVERY)
1da177e4
LT
1347 return 0;
1348 if (shost->host_busy == 0 && shost->host_blocked) {
1349 /*
1350 * unblock after host_blocked iterates to zero
1351 */
1352 if (--shost->host_blocked == 0) {
1353 SCSI_LOG_MLQUEUE(3,
1354 printk("scsi%d unblocking host at zero depth\n",
1355 shost->host_no));
1356 } else {
1357 blk_plug_device(q);
1358 return 0;
1359 }
1360 }
1361 if ((shost->can_queue > 0 && shost->host_busy >= shost->can_queue) ||
1362 shost->host_blocked || shost->host_self_blocked) {
1363 if (list_empty(&sdev->starved_entry))
1364 list_add_tail(&sdev->starved_entry, &shost->starved_list);
1365 return 0;
1366 }
1367
1368 /* We're OK to process the command, so we can't be starved */
1369 if (!list_empty(&sdev->starved_entry))
1370 list_del_init(&sdev->starved_entry);
1371
1372 return 1;
1373}
1374
1375/*
e91442b6 1376 * Kill a request for a dead device
1da177e4 1377 */
e91442b6 1378static void scsi_kill_request(struct request *req, request_queue_t *q)
1da177e4 1379{
e91442b6 1380 struct scsi_cmnd *cmd = req->special;
1da177e4 1381
788ce43a
JB
1382 blkdev_dequeue_request(req);
1383
e91442b6
JB
1384 if (unlikely(cmd == NULL)) {
1385 printk(KERN_CRIT "impossible request in %s.\n",
1386 __FUNCTION__);
1387 BUG();
1da177e4 1388 }
e91442b6
JB
1389
1390 scsi_init_cmd_errh(cmd);
1391 cmd->result = DID_NO_CONNECT << 16;
1392 atomic_inc(&cmd->device->iorequest_cnt);
1393 __scsi_done(cmd);
1da177e4
LT
1394}
1395
1396/*
1397 * Function: scsi_request_fn()
1398 *
1399 * Purpose: Main strategy routine for SCSI.
1400 *
1401 * Arguments: q - Pointer to actual queue.
1402 *
1403 * Returns: Nothing
1404 *
1405 * Lock status: IO request lock assumed to be held when called.
1406 */
1407static void scsi_request_fn(struct request_queue *q)
1408{
1409 struct scsi_device *sdev = q->queuedata;
1410 struct Scsi_Host *shost;
1411 struct scsi_cmnd *cmd;
1412 struct request *req;
1413
1414 if (!sdev) {
1415 printk("scsi: killing requests for dead queue\n");
e91442b6
JB
1416 while ((req = elv_next_request(q)) != NULL)
1417 scsi_kill_request(req, q);
1da177e4
LT
1418 return;
1419 }
1420
1421 if(!get_device(&sdev->sdev_gendev))
1422 /* We must be tearing the block queue down already */
1423 return;
1424
1425 /*
1426 * To start with, we keep looping until the queue is empty, or until
1427 * the host is no longer able to accept any more requests.
1428 */
1429 shost = sdev->host;
1430 while (!blk_queue_plugged(q)) {
1431 int rtn;
1432 /*
1433 * get next queueable request. We do this early to make sure
1434 * that the request is fully prepared even if we cannot
1435 * accept it.
1436 */
1437 req = elv_next_request(q);
1438 if (!req || !scsi_dev_queue_ready(q, sdev))
1439 break;
1440
1441 if (unlikely(!scsi_device_online(sdev))) {
1442 printk(KERN_ERR "scsi%d (%d:%d): rejecting I/O to offline device\n",
1443 sdev->host->host_no, sdev->id, sdev->lun);
e91442b6 1444 scsi_kill_request(req, q);
1da177e4
LT
1445 continue;
1446 }
1447
1448
1449 /*
1450 * Remove the request from the request list.
1451 */
1452 if (!(blk_queue_tagged(q) && !blk_queue_start_tag(q, req)))
1453 blkdev_dequeue_request(req);
1454 sdev->device_busy++;
1455
1456 spin_unlock(q->queue_lock);
e91442b6
JB
1457 cmd = req->special;
1458 if (unlikely(cmd == NULL)) {
1459 printk(KERN_CRIT "impossible request in %s.\n"
1460 "please mail a stack trace to "
1461 "linux-scsi@vger.kernel.org",
1462 __FUNCTION__);
1463 BUG();
1464 }
1da177e4
LT
1465 spin_lock(shost->host_lock);
1466
1467 if (!scsi_host_queue_ready(q, shost, sdev))
1468 goto not_ready;
1469 if (sdev->single_lun) {
1470 if (scsi_target(sdev)->starget_sdev_user &&
1471 scsi_target(sdev)->starget_sdev_user != sdev)
1472 goto not_ready;
1473 scsi_target(sdev)->starget_sdev_user = sdev;
1474 }
1475 shost->host_busy++;
1476
1477 /*
1478 * XXX(hch): This is rather suboptimal, scsi_dispatch_cmd will
1479 * take the lock again.
1480 */
1481 spin_unlock_irq(shost->host_lock);
1482
1da177e4
LT
1483 /*
1484 * Finally, initialize any error handling parameters, and set up
1485 * the timers for timeouts.
1486 */
1487 scsi_init_cmd_errh(cmd);
1488
1489 /*
1490 * Dispatch the command to the low-level driver.
1491 */
1492 rtn = scsi_dispatch_cmd(cmd);
1493 spin_lock_irq(q->queue_lock);
1494 if(rtn) {
1495 /* we're refusing the command; because of
1496 * the way locks get dropped, we need to
1497 * check here if plugging is required */
1498 if(sdev->device_busy == 0)
1499 blk_plug_device(q);
1500
1501 break;
1502 }
1503 }
1504
1505 goto out;
1506
1507 not_ready:
1508 spin_unlock_irq(shost->host_lock);
1509
1510 /*
1511 * lock q, handle tag, requeue req, and decrement device_busy. We
1512 * must return with queue_lock held.
1513 *
1514 * Decrementing device_busy without checking it is OK, as all such
1515 * cases (host limits or settings) should run the queue at some
1516 * later time.
1517 */
e91442b6 1518 scsi_unprep_request(req);
1da177e4
LT
1519 spin_lock_irq(q->queue_lock);
1520 blk_requeue_request(q, req);
1521 sdev->device_busy--;
1522 if(sdev->device_busy == 0)
1523 blk_plug_device(q);
1524 out:
1525 /* must be careful here...if we trigger the ->remove() function
1526 * we cannot be holding the q lock */
1527 spin_unlock_irq(q->queue_lock);
1528 put_device(&sdev->sdev_gendev);
1529 spin_lock_irq(q->queue_lock);
1530}
1531
1532u64 scsi_calculate_bounce_limit(struct Scsi_Host *shost)
1533{
1534 struct device *host_dev;
1535 u64 bounce_limit = 0xffffffff;
1536
1537 if (shost->unchecked_isa_dma)
1538 return BLK_BOUNCE_ISA;
1539 /*
1540 * Platforms with virtual-DMA translation
1541 * hardware have no practical limit.
1542 */
1543 if (!PCI_DMA_BUS_IS_PHYS)
1544 return BLK_BOUNCE_ANY;
1545
1546 host_dev = scsi_get_device(shost);
1547 if (host_dev && host_dev->dma_mask)
1548 bounce_limit = *host_dev->dma_mask;
1549
1550 return bounce_limit;
1551}
1552EXPORT_SYMBOL(scsi_calculate_bounce_limit);
1553
1554struct request_queue *scsi_alloc_queue(struct scsi_device *sdev)
1555{
1556 struct Scsi_Host *shost = sdev->host;
1557 struct request_queue *q;
1558
152587de 1559 q = blk_init_queue(scsi_request_fn, NULL);
1da177e4
LT
1560 if (!q)
1561 return NULL;
1562
1563 blk_queue_prep_rq(q, scsi_prep_fn);
1564
1565 blk_queue_max_hw_segments(q, shost->sg_tablesize);
1566 blk_queue_max_phys_segments(q, SCSI_MAX_PHYS_SEGMENTS);
1567 blk_queue_max_sectors(q, shost->max_sectors);
1568 blk_queue_bounce_limit(q, scsi_calculate_bounce_limit(shost));
1569 blk_queue_segment_boundary(q, shost->dma_boundary);
1570 blk_queue_issue_flush_fn(q, scsi_issue_flush_fn);
1571
1572 /*
1573 * ordered tags are superior to flush ordering
1574 */
1575 if (shost->ordered_tag)
1576 blk_queue_ordered(q, QUEUE_ORDERED_TAG);
1577 else if (shost->ordered_flush) {
1578 blk_queue_ordered(q, QUEUE_ORDERED_FLUSH);
1579 q->prepare_flush_fn = scsi_prepare_flush_fn;
1580 q->end_flush_fn = scsi_end_flush_fn;
1581 }
1582
1583 if (!shost->use_clustering)
1584 clear_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags);
1585 return q;
1586}
1587
1588void scsi_free_queue(struct request_queue *q)
1589{
1590 blk_cleanup_queue(q);
1591}
1592
1593/*
1594 * Function: scsi_block_requests()
1595 *
1596 * Purpose: Utility function used by low-level drivers to prevent further
1597 * commands from being queued to the device.
1598 *
1599 * Arguments: shost - Host in question
1600 *
1601 * Returns: Nothing
1602 *
1603 * Lock status: No locks are assumed held.
1604 *
1605 * Notes: There is no timer nor any other means by which the requests
1606 * get unblocked other than the low-level driver calling
1607 * scsi_unblock_requests().
1608 */
1609void scsi_block_requests(struct Scsi_Host *shost)
1610{
1611 shost->host_self_blocked = 1;
1612}
1613EXPORT_SYMBOL(scsi_block_requests);
1614
1615/*
1616 * Function: scsi_unblock_requests()
1617 *
1618 * Purpose: Utility function used by low-level drivers to allow further
1619 * commands from being queued to the device.
1620 *
1621 * Arguments: shost - Host in question
1622 *
1623 * Returns: Nothing
1624 *
1625 * Lock status: No locks are assumed held.
1626 *
1627 * Notes: There is no timer nor any other means by which the requests
1628 * get unblocked other than the low-level driver calling
1629 * scsi_unblock_requests().
1630 *
1631 * This is done as an API function so that changes to the
1632 * internals of the scsi mid-layer won't require wholesale
1633 * changes to drivers that use this feature.
1634 */
1635void scsi_unblock_requests(struct Scsi_Host *shost)
1636{
1637 shost->host_self_blocked = 0;
1638 scsi_run_host_queues(shost);
1639}
1640EXPORT_SYMBOL(scsi_unblock_requests);
1641
1642int __init scsi_init_queue(void)
1643{
1644 int i;
1645
1646 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1647 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1648 int size = sgp->size * sizeof(struct scatterlist);
1649
1650 sgp->slab = kmem_cache_create(sgp->name, size, 0,
1651 SLAB_HWCACHE_ALIGN, NULL, NULL);
1652 if (!sgp->slab) {
1653 printk(KERN_ERR "SCSI: can't init sg slab %s\n",
1654 sgp->name);
1655 }
1656
1657 sgp->pool = mempool_create(SG_MEMPOOL_SIZE,
1658 mempool_alloc_slab, mempool_free_slab,
1659 sgp->slab);
1660 if (!sgp->pool) {
1661 printk(KERN_ERR "SCSI: can't init sg mempool %s\n",
1662 sgp->name);
1663 }
1664 }
1665
1666 return 0;
1667}
1668
1669void scsi_exit_queue(void)
1670{
1671 int i;
1672
1673 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1674 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1675 mempool_destroy(sgp->pool);
1676 kmem_cache_destroy(sgp->slab);
1677 }
1678}
1679/**
ea73a9f2 1680 * scsi_mode_sense - issue a mode sense, falling back from 10 to
1da177e4 1681 * six bytes if necessary.
1cf72699 1682 * @sdev: SCSI device to be queried
1da177e4
LT
1683 * @dbd: set if mode sense will allow block descriptors to be returned
1684 * @modepage: mode page being requested
1685 * @buffer: request buffer (may not be smaller than eight bytes)
1686 * @len: length of request buffer.
1687 * @timeout: command timeout
1688 * @retries: number of retries before failing
1689 * @data: returns a structure abstracting the mode header data
1cf72699
JB
1690 * @sense: place to put sense data (or NULL if no sense to be collected).
1691 * must be SCSI_SENSE_BUFFERSIZE big.
1da177e4
LT
1692 *
1693 * Returns zero if unsuccessful, or the header offset (either 4
1694 * or 8 depending on whether a six or ten byte command was
1695 * issued) if successful.
1696 **/
1697int
1cf72699 1698scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
1da177e4 1699 unsigned char *buffer, int len, int timeout, int retries,
ea73a9f2 1700 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr) {
1da177e4
LT
1701 unsigned char cmd[12];
1702 int use_10_for_ms;
1703 int header_length;
1cf72699 1704 int result;
ea73a9f2 1705 struct scsi_sense_hdr my_sshdr;
1da177e4
LT
1706
1707 memset(data, 0, sizeof(*data));
1708 memset(&cmd[0], 0, 12);
1709 cmd[1] = dbd & 0x18; /* allows DBD and LLBA bits */
1710 cmd[2] = modepage;
1711
ea73a9f2
JB
1712 /* caller might not be interested in sense, but we need it */
1713 if (!sshdr)
1714 sshdr = &my_sshdr;
1715
1da177e4 1716 retry:
1cf72699 1717 use_10_for_ms = sdev->use_10_for_ms;
1da177e4
LT
1718
1719 if (use_10_for_ms) {
1720 if (len < 8)
1721 len = 8;
1722
1723 cmd[0] = MODE_SENSE_10;
1724 cmd[8] = len;
1725 header_length = 8;
1726 } else {
1727 if (len < 4)
1728 len = 4;
1729
1730 cmd[0] = MODE_SENSE;
1731 cmd[4] = len;
1732 header_length = 4;
1733 }
1734
1da177e4
LT
1735 memset(buffer, 0, len);
1736
1cf72699 1737 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer, len,
ea73a9f2 1738 sshdr, timeout, retries);
1da177e4
LT
1739
1740 /* This code looks awful: what it's doing is making sure an
1741 * ILLEGAL REQUEST sense return identifies the actual command
1742 * byte as the problem. MODE_SENSE commands can return
1743 * ILLEGAL REQUEST if the code page isn't supported */
1744
1cf72699
JB
1745 if (use_10_for_ms && !scsi_status_is_good(result) &&
1746 (driver_byte(result) & DRIVER_SENSE)) {
ea73a9f2
JB
1747 if (scsi_sense_valid(sshdr)) {
1748 if ((sshdr->sense_key == ILLEGAL_REQUEST) &&
1749 (sshdr->asc == 0x20) && (sshdr->ascq == 0)) {
1da177e4
LT
1750 /*
1751 * Invalid command operation code
1752 */
1cf72699 1753 sdev->use_10_for_ms = 0;
1da177e4
LT
1754 goto retry;
1755 }
1756 }
1757 }
1758
1cf72699 1759 if(scsi_status_is_good(result)) {
1da177e4
LT
1760 data->header_length = header_length;
1761 if(use_10_for_ms) {
1762 data->length = buffer[0]*256 + buffer[1] + 2;
1763 data->medium_type = buffer[2];
1764 data->device_specific = buffer[3];
1765 data->longlba = buffer[4] & 0x01;
1766 data->block_descriptor_length = buffer[6]*256
1767 + buffer[7];
1768 } else {
1769 data->length = buffer[0] + 1;
1770 data->medium_type = buffer[1];
1771 data->device_specific = buffer[2];
1772 data->block_descriptor_length = buffer[3];
1773 }
1774 }
1775
1cf72699 1776 return result;
1da177e4
LT
1777}
1778EXPORT_SYMBOL(scsi_mode_sense);
1779
1780int
1781scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries)
1782{
1da177e4
LT
1783 char cmd[] = {
1784 TEST_UNIT_READY, 0, 0, 0, 0, 0,
1785 };
ea73a9f2 1786 struct scsi_sense_hdr sshdr;
1da177e4
LT
1787 int result;
1788
ea73a9f2 1789 result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, &sshdr,
1cf72699 1790 timeout, retries);
1da177e4 1791
1cf72699 1792 if ((driver_byte(result) & DRIVER_SENSE) && sdev->removable) {
1da177e4 1793
ea73a9f2 1794 if ((scsi_sense_valid(&sshdr)) &&
1da177e4
LT
1795 ((sshdr.sense_key == UNIT_ATTENTION) ||
1796 (sshdr.sense_key == NOT_READY))) {
1797 sdev->changed = 1;
1cf72699 1798 result = 0;
1da177e4
LT
1799 }
1800 }
1da177e4
LT
1801 return result;
1802}
1803EXPORT_SYMBOL(scsi_test_unit_ready);
1804
1805/**
1806 * scsi_device_set_state - Take the given device through the device
1807 * state model.
1808 * @sdev: scsi device to change the state of.
1809 * @state: state to change to.
1810 *
1811 * Returns zero if unsuccessful or an error if the requested
1812 * transition is illegal.
1813 **/
1814int
1815scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state)
1816{
1817 enum scsi_device_state oldstate = sdev->sdev_state;
1818
1819 if (state == oldstate)
1820 return 0;
1821
1822 switch (state) {
1823 case SDEV_CREATED:
1824 /* There are no legal states that come back to
1825 * created. This is the manually initialised start
1826 * state */
1827 goto illegal;
1828
1829 case SDEV_RUNNING:
1830 switch (oldstate) {
1831 case SDEV_CREATED:
1832 case SDEV_OFFLINE:
1833 case SDEV_QUIESCE:
1834 case SDEV_BLOCK:
1835 break;
1836 default:
1837 goto illegal;
1838 }
1839 break;
1840
1841 case SDEV_QUIESCE:
1842 switch (oldstate) {
1843 case SDEV_RUNNING:
1844 case SDEV_OFFLINE:
1845 break;
1846 default:
1847 goto illegal;
1848 }
1849 break;
1850
1851 case SDEV_OFFLINE:
1852 switch (oldstate) {
1853 case SDEV_CREATED:
1854 case SDEV_RUNNING:
1855 case SDEV_QUIESCE:
1856 case SDEV_BLOCK:
1857 break;
1858 default:
1859 goto illegal;
1860 }
1861 break;
1862
1863 case SDEV_BLOCK:
1864 switch (oldstate) {
1865 case SDEV_CREATED:
1866 case SDEV_RUNNING:
1867 break;
1868 default:
1869 goto illegal;
1870 }
1871 break;
1872
1873 case SDEV_CANCEL:
1874 switch (oldstate) {
1875 case SDEV_CREATED:
1876 case SDEV_RUNNING:
1877 case SDEV_OFFLINE:
1878 case SDEV_BLOCK:
1879 break;
1880 default:
1881 goto illegal;
1882 }
1883 break;
1884
1885 case SDEV_DEL:
1886 switch (oldstate) {
1887 case SDEV_CANCEL:
1888 break;
1889 default:
1890 goto illegal;
1891 }
1892 break;
1893
1894 }
1895 sdev->sdev_state = state;
1896 return 0;
1897
1898 illegal:
1899 SCSI_LOG_ERROR_RECOVERY(1,
1900 dev_printk(KERN_ERR, &sdev->sdev_gendev,
1901 "Illegal state transition %s->%s\n",
1902 scsi_device_state_name(oldstate),
1903 scsi_device_state_name(state))
1904 );
1905 return -EINVAL;
1906}
1907EXPORT_SYMBOL(scsi_device_set_state);
1908
1909/**
1910 * scsi_device_quiesce - Block user issued commands.
1911 * @sdev: scsi device to quiesce.
1912 *
1913 * This works by trying to transition to the SDEV_QUIESCE state
1914 * (which must be a legal transition). When the device is in this
1915 * state, only special requests will be accepted, all others will
1916 * be deferred. Since special requests may also be requeued requests,
1917 * a successful return doesn't guarantee the device will be
1918 * totally quiescent.
1919 *
1920 * Must be called with user context, may sleep.
1921 *
1922 * Returns zero if unsuccessful or an error if not.
1923 **/
1924int
1925scsi_device_quiesce(struct scsi_device *sdev)
1926{
1927 int err = scsi_device_set_state(sdev, SDEV_QUIESCE);
1928 if (err)
1929 return err;
1930
1931 scsi_run_queue(sdev->request_queue);
1932 while (sdev->device_busy) {
1933 msleep_interruptible(200);
1934 scsi_run_queue(sdev->request_queue);
1935 }
1936 return 0;
1937}
1938EXPORT_SYMBOL(scsi_device_quiesce);
1939
1940/**
1941 * scsi_device_resume - Restart user issued commands to a quiesced device.
1942 * @sdev: scsi device to resume.
1943 *
1944 * Moves the device from quiesced back to running and restarts the
1945 * queues.
1946 *
1947 * Must be called with user context, may sleep.
1948 **/
1949void
1950scsi_device_resume(struct scsi_device *sdev)
1951{
1952 if(scsi_device_set_state(sdev, SDEV_RUNNING))
1953 return;
1954 scsi_run_queue(sdev->request_queue);
1955}
1956EXPORT_SYMBOL(scsi_device_resume);
1957
1958static void
1959device_quiesce_fn(struct scsi_device *sdev, void *data)
1960{
1961 scsi_device_quiesce(sdev);
1962}
1963
1964void
1965scsi_target_quiesce(struct scsi_target *starget)
1966{
1967 starget_for_each_device(starget, NULL, device_quiesce_fn);
1968}
1969EXPORT_SYMBOL(scsi_target_quiesce);
1970
1971static void
1972device_resume_fn(struct scsi_device *sdev, void *data)
1973{
1974 scsi_device_resume(sdev);
1975}
1976
1977void
1978scsi_target_resume(struct scsi_target *starget)
1979{
1980 starget_for_each_device(starget, NULL, device_resume_fn);
1981}
1982EXPORT_SYMBOL(scsi_target_resume);
1983
1984/**
1985 * scsi_internal_device_block - internal function to put a device
1986 * temporarily into the SDEV_BLOCK state
1987 * @sdev: device to block
1988 *
1989 * Block request made by scsi lld's to temporarily stop all
1990 * scsi commands on the specified device. Called from interrupt
1991 * or normal process context.
1992 *
1993 * Returns zero if successful or error if not
1994 *
1995 * Notes:
1996 * This routine transitions the device to the SDEV_BLOCK state
1997 * (which must be a legal transition). When the device is in this
1998 * state, all commands are deferred until the scsi lld reenables
1999 * the device with scsi_device_unblock or device_block_tmo fires.
2000 * This routine assumes the host_lock is held on entry.
2001 **/
2002int
2003scsi_internal_device_block(struct scsi_device *sdev)
2004{
2005 request_queue_t *q = sdev->request_queue;
2006 unsigned long flags;
2007 int err = 0;
2008
2009 err = scsi_device_set_state(sdev, SDEV_BLOCK);
2010 if (err)
2011 return err;
2012
2013 /*
2014 * The device has transitioned to SDEV_BLOCK. Stop the
2015 * block layer from calling the midlayer with this device's
2016 * request queue.
2017 */
2018 spin_lock_irqsave(q->queue_lock, flags);
2019 blk_stop_queue(q);
2020 spin_unlock_irqrestore(q->queue_lock, flags);
2021
2022 return 0;
2023}
2024EXPORT_SYMBOL_GPL(scsi_internal_device_block);
2025
2026/**
2027 * scsi_internal_device_unblock - resume a device after a block request
2028 * @sdev: device to resume
2029 *
2030 * Called by scsi lld's or the midlayer to restart the device queue
2031 * for the previously suspended scsi device. Called from interrupt or
2032 * normal process context.
2033 *
2034 * Returns zero if successful or error if not.
2035 *
2036 * Notes:
2037 * This routine transitions the device to the SDEV_RUNNING state
2038 * (which must be a legal transition) allowing the midlayer to
2039 * goose the queue for this device. This routine assumes the
2040 * host_lock is held upon entry.
2041 **/
2042int
2043scsi_internal_device_unblock(struct scsi_device *sdev)
2044{
2045 request_queue_t *q = sdev->request_queue;
2046 int err;
2047 unsigned long flags;
2048
2049 /*
2050 * Try to transition the scsi device to SDEV_RUNNING
2051 * and goose the device queue if successful.
2052 */
2053 err = scsi_device_set_state(sdev, SDEV_RUNNING);
2054 if (err)
2055 return err;
2056
2057 spin_lock_irqsave(q->queue_lock, flags);
2058 blk_start_queue(q);
2059 spin_unlock_irqrestore(q->queue_lock, flags);
2060
2061 return 0;
2062}
2063EXPORT_SYMBOL_GPL(scsi_internal_device_unblock);
2064
2065static void
2066device_block(struct scsi_device *sdev, void *data)
2067{
2068 scsi_internal_device_block(sdev);
2069}
2070
2071static int
2072target_block(struct device *dev, void *data)
2073{
2074 if (scsi_is_target_device(dev))
2075 starget_for_each_device(to_scsi_target(dev), NULL,
2076 device_block);
2077 return 0;
2078}
2079
2080void
2081scsi_target_block(struct device *dev)
2082{
2083 if (scsi_is_target_device(dev))
2084 starget_for_each_device(to_scsi_target(dev), NULL,
2085 device_block);
2086 else
2087 device_for_each_child(dev, NULL, target_block);
2088}
2089EXPORT_SYMBOL_GPL(scsi_target_block);
2090
2091static void
2092device_unblock(struct scsi_device *sdev, void *data)
2093{
2094 scsi_internal_device_unblock(sdev);
2095}
2096
2097static int
2098target_unblock(struct device *dev, void *data)
2099{
2100 if (scsi_is_target_device(dev))
2101 starget_for_each_device(to_scsi_target(dev), NULL,
2102 device_unblock);
2103 return 0;
2104}
2105
2106void
2107scsi_target_unblock(struct device *dev)
2108{
2109 if (scsi_is_target_device(dev))
2110 starget_for_each_device(to_scsi_target(dev), NULL,
2111 device_unblock);
2112 else
2113 device_for_each_child(dev, NULL, target_unblock);
2114}
2115EXPORT_SYMBOL_GPL(scsi_target_unblock);