Merge git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6
[wrt350n-kernel.git] / drivers / scsi / scsi_lib.c
blobbcad2a9c9f7949b19ab7213bb930cf1c1e9253ef
1 /*
2 * scsi_lib.c Copyright (C) 1999 Eric Youngdale
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 */
10 #include <linux/bio.h>
11 #include <linux/bitops.h>
12 #include <linux/blkdev.h>
13 #include <linux/completion.h>
14 #include <linux/kernel.h>
15 #include <linux/mempool.h>
16 #include <linux/slab.h>
17 #include <linux/init.h>
18 #include <linux/pci.h>
19 #include <linux/delay.h>
20 #include <linux/hardirq.h>
21 #include <linux/scatterlist.h>
23 #include <scsi/scsi.h>
24 #include <scsi/scsi_cmnd.h>
25 #include <scsi/scsi_dbg.h>
26 #include <scsi/scsi_device.h>
27 #include <scsi/scsi_driver.h>
28 #include <scsi/scsi_eh.h>
29 #include <scsi/scsi_host.h>
31 #include "scsi_priv.h"
32 #include "scsi_logging.h"
35 #define SG_MEMPOOL_NR ARRAY_SIZE(scsi_sg_pools)
36 #define SG_MEMPOOL_SIZE 2
38 struct scsi_host_sg_pool {
39 size_t size;
40 char *name;
41 struct kmem_cache *slab;
42 mempool_t *pool;
45 #define SP(x) { x, "sgpool-" __stringify(x) }
46 #if (SCSI_MAX_SG_SEGMENTS < 32)
47 #error SCSI_MAX_SG_SEGMENTS is too small (must be 32 or greater)
48 #endif
49 static struct scsi_host_sg_pool scsi_sg_pools[] = {
50 SP(8),
51 SP(16),
52 #if (SCSI_MAX_SG_SEGMENTS > 32)
53 SP(32),
54 #if (SCSI_MAX_SG_SEGMENTS > 64)
55 SP(64),
56 #if (SCSI_MAX_SG_SEGMENTS > 128)
57 SP(128),
58 #if (SCSI_MAX_SG_SEGMENTS > 256)
59 #error SCSI_MAX_SG_SEGMENTS is too large (256 MAX)
60 #endif
61 #endif
62 #endif
63 #endif
64 SP(SCSI_MAX_SG_SEGMENTS)
66 #undef SP
68 static struct kmem_cache *scsi_bidi_sdb_cache;
70 static void scsi_run_queue(struct request_queue *q);
73 * Function: scsi_unprep_request()
75 * Purpose: Remove all preparation done for a request, including its
76 * associated scsi_cmnd, so that it can be requeued.
78 * Arguments: req - request to unprepare
80 * Lock status: Assumed that no locks are held upon entry.
82 * Returns: Nothing.
84 static void scsi_unprep_request(struct request *req)
86 struct scsi_cmnd *cmd = req->special;
88 req->cmd_flags &= ~REQ_DONTPREP;
89 req->special = NULL;
91 scsi_put_command(cmd);
95 * Function: scsi_queue_insert()
97 * Purpose: Insert a command in the midlevel queue.
99 * Arguments: cmd - command that we are adding to queue.
100 * reason - why we are inserting command to queue.
102 * Lock status: Assumed that lock is not held upon entry.
104 * Returns: Nothing.
106 * Notes: We do this for one of two cases. Either the host is busy
107 * and it cannot accept any more commands for the time being,
108 * or the device returned QUEUE_FULL and can accept no more
109 * commands.
110 * Notes: This could be called either from an interrupt context or a
111 * normal process context.
113 int scsi_queue_insert(struct scsi_cmnd *cmd, int reason)
115 struct Scsi_Host *host = cmd->device->host;
116 struct scsi_device *device = cmd->device;
117 struct request_queue *q = device->request_queue;
118 unsigned long flags;
120 SCSI_LOG_MLQUEUE(1,
121 printk("Inserting command %p into mlqueue\n", cmd));
124 * Set the appropriate busy bit for the device/host.
126 * If the host/device isn't busy, assume that something actually
127 * completed, and that we should be able to queue a command now.
129 * Note that the prior mid-layer assumption that any host could
130 * always queue at least one command is now broken. The mid-layer
131 * will implement a user specifiable stall (see
132 * scsi_host.max_host_blocked and scsi_device.max_device_blocked)
133 * if a command is requeued with no other commands outstanding
134 * either for the device or for the host.
136 if (reason == SCSI_MLQUEUE_HOST_BUSY)
137 host->host_blocked = host->max_host_blocked;
138 else if (reason == SCSI_MLQUEUE_DEVICE_BUSY)
139 device->device_blocked = device->max_device_blocked;
142 * Decrement the counters, since these commands are no longer
143 * active on the host/device.
145 scsi_device_unbusy(device);
148 * Requeue this command. It will go before all other commands
149 * that are already in the queue.
151 * NOTE: there is magic here about the way the queue is plugged if
152 * we have no outstanding commands.
154 * Although we *don't* plug the queue, we call the request
155 * function. The SCSI request function detects the blocked condition
156 * and plugs the queue appropriately.
158 spin_lock_irqsave(q->queue_lock, flags);
159 blk_requeue_request(q, cmd->request);
160 spin_unlock_irqrestore(q->queue_lock, flags);
162 scsi_run_queue(q);
164 return 0;
168 * scsi_execute - insert request and wait for the result
169 * @sdev: scsi device
170 * @cmd: scsi command
171 * @data_direction: data direction
172 * @buffer: data buffer
173 * @bufflen: len of buffer
174 * @sense: optional sense buffer
175 * @timeout: request timeout in seconds
176 * @retries: number of times to retry request
177 * @flags: or into request flags;
179 * returns the req->errors value which is the scsi_cmnd result
180 * field.
182 int scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
183 int data_direction, void *buffer, unsigned bufflen,
184 unsigned char *sense, int timeout, int retries, int flags)
186 struct request *req;
187 int write = (data_direction == DMA_TO_DEVICE);
188 int ret = DRIVER_ERROR << 24;
190 req = blk_get_request(sdev->request_queue, write, __GFP_WAIT);
192 if (bufflen && blk_rq_map_kern(sdev->request_queue, req,
193 buffer, bufflen, __GFP_WAIT))
194 goto out;
196 req->cmd_len = COMMAND_SIZE(cmd[0]);
197 memcpy(req->cmd, cmd, req->cmd_len);
198 req->sense = sense;
199 req->sense_len = 0;
200 req->retries = retries;
201 req->timeout = timeout;
202 req->cmd_type = REQ_TYPE_BLOCK_PC;
203 req->cmd_flags |= flags | REQ_QUIET | REQ_PREEMPT;
206 * head injection *required* here otherwise quiesce won't work
208 blk_execute_rq(req->q, NULL, req, 1);
210 ret = req->errors;
211 out:
212 blk_put_request(req);
214 return ret;
216 EXPORT_SYMBOL(scsi_execute);
219 int scsi_execute_req(struct scsi_device *sdev, const unsigned char *cmd,
220 int data_direction, void *buffer, unsigned bufflen,
221 struct scsi_sense_hdr *sshdr, int timeout, int retries)
223 char *sense = NULL;
224 int result;
226 if (sshdr) {
227 sense = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
228 if (!sense)
229 return DRIVER_ERROR << 24;
231 result = scsi_execute(sdev, cmd, data_direction, buffer, bufflen,
232 sense, timeout, retries, 0);
233 if (sshdr)
234 scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, sshdr);
236 kfree(sense);
237 return result;
239 EXPORT_SYMBOL(scsi_execute_req);
241 struct scsi_io_context {
242 void *data;
243 void (*done)(void *data, char *sense, int result, int resid);
244 char sense[SCSI_SENSE_BUFFERSIZE];
247 static struct kmem_cache *scsi_io_context_cache;
249 static void scsi_end_async(struct request *req, int uptodate)
251 struct scsi_io_context *sioc = req->end_io_data;
253 if (sioc->done)
254 sioc->done(sioc->data, sioc->sense, req->errors, req->data_len);
256 kmem_cache_free(scsi_io_context_cache, sioc);
257 __blk_put_request(req->q, req);
260 static int scsi_merge_bio(struct request *rq, struct bio *bio)
262 struct request_queue *q = rq->q;
264 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
265 if (rq_data_dir(rq) == WRITE)
266 bio->bi_rw |= (1 << BIO_RW);
267 blk_queue_bounce(q, &bio);
269 return blk_rq_append_bio(q, rq, bio);
272 static void scsi_bi_endio(struct bio *bio, int error)
274 bio_put(bio);
278 * scsi_req_map_sg - map a scatterlist into a request
279 * @rq: request to fill
280 * @sgl: scatterlist
281 * @nsegs: number of elements
282 * @bufflen: len of buffer
283 * @gfp: memory allocation flags
285 * scsi_req_map_sg maps a scatterlist into a request so that the
286 * request can be sent to the block layer. We do not trust the scatterlist
287 * sent to use, as some ULDs use that struct to only organize the pages.
289 static int scsi_req_map_sg(struct request *rq, struct scatterlist *sgl,
290 int nsegs, unsigned bufflen, gfp_t gfp)
292 struct request_queue *q = rq->q;
293 int nr_pages = (bufflen + sgl[0].offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
294 unsigned int data_len = bufflen, len, bytes, off;
295 struct scatterlist *sg;
296 struct page *page;
297 struct bio *bio = NULL;
298 int i, err, nr_vecs = 0;
300 for_each_sg(sgl, sg, nsegs, i) {
301 page = sg_page(sg);
302 off = sg->offset;
303 len = sg->length;
305 while (len > 0 && data_len > 0) {
307 * sg sends a scatterlist that is larger than
308 * the data_len it wants transferred for certain
309 * IO sizes
311 bytes = min_t(unsigned int, len, PAGE_SIZE - off);
312 bytes = min(bytes, data_len);
314 if (!bio) {
315 nr_vecs = min_t(int, BIO_MAX_PAGES, nr_pages);
316 nr_pages -= nr_vecs;
318 bio = bio_alloc(gfp, nr_vecs);
319 if (!bio) {
320 err = -ENOMEM;
321 goto free_bios;
323 bio->bi_end_io = scsi_bi_endio;
326 if (bio_add_pc_page(q, bio, page, bytes, off) !=
327 bytes) {
328 bio_put(bio);
329 err = -EINVAL;
330 goto free_bios;
333 if (bio->bi_vcnt >= nr_vecs) {
334 err = scsi_merge_bio(rq, bio);
335 if (err) {
336 bio_endio(bio, 0);
337 goto free_bios;
339 bio = NULL;
342 page++;
343 len -= bytes;
344 data_len -=bytes;
345 off = 0;
349 rq->buffer = rq->data = NULL;
350 rq->data_len = bufflen;
351 return 0;
353 free_bios:
354 while ((bio = rq->bio) != NULL) {
355 rq->bio = bio->bi_next;
357 * call endio instead of bio_put incase it was bounced
359 bio_endio(bio, 0);
362 return err;
366 * scsi_execute_async - insert request
367 * @sdev: scsi device
368 * @cmd: scsi command
369 * @cmd_len: length of scsi cdb
370 * @data_direction: DMA_TO_DEVICE, DMA_FROM_DEVICE, or DMA_NONE
371 * @buffer: data buffer (this can be a kernel buffer or scatterlist)
372 * @bufflen: len of buffer
373 * @use_sg: if buffer is a scatterlist this is the number of elements
374 * @timeout: request timeout in seconds
375 * @retries: number of times to retry request
376 * @privdata: data passed to done()
377 * @done: callback function when done
378 * @gfp: memory allocation flags
380 int scsi_execute_async(struct scsi_device *sdev, const unsigned char *cmd,
381 int cmd_len, int data_direction, void *buffer, unsigned bufflen,
382 int use_sg, int timeout, int retries, void *privdata,
383 void (*done)(void *, char *, int, int), gfp_t gfp)
385 struct request *req;
386 struct scsi_io_context *sioc;
387 int err = 0;
388 int write = (data_direction == DMA_TO_DEVICE);
390 sioc = kmem_cache_zalloc(scsi_io_context_cache, gfp);
391 if (!sioc)
392 return DRIVER_ERROR << 24;
394 req = blk_get_request(sdev->request_queue, write, gfp);
395 if (!req)
396 goto free_sense;
397 req->cmd_type = REQ_TYPE_BLOCK_PC;
398 req->cmd_flags |= REQ_QUIET;
400 if (use_sg)
401 err = scsi_req_map_sg(req, buffer, use_sg, bufflen, gfp);
402 else if (bufflen)
403 err = blk_rq_map_kern(req->q, req, buffer, bufflen, gfp);
405 if (err)
406 goto free_req;
408 req->cmd_len = cmd_len;
409 memset(req->cmd, 0, BLK_MAX_CDB); /* ATAPI hates garbage after CDB */
410 memcpy(req->cmd, cmd, req->cmd_len);
411 req->sense = sioc->sense;
412 req->sense_len = 0;
413 req->timeout = timeout;
414 req->retries = retries;
415 req->end_io_data = sioc;
417 sioc->data = privdata;
418 sioc->done = done;
420 blk_execute_rq_nowait(req->q, NULL, req, 1, scsi_end_async);
421 return 0;
423 free_req:
424 blk_put_request(req);
425 free_sense:
426 kmem_cache_free(scsi_io_context_cache, sioc);
427 return DRIVER_ERROR << 24;
429 EXPORT_SYMBOL_GPL(scsi_execute_async);
432 * Function: scsi_init_cmd_errh()
434 * Purpose: Initialize cmd fields related to error handling.
436 * Arguments: cmd - command that is ready to be queued.
438 * Notes: This function has the job of initializing a number of
439 * fields related to error handling. Typically this will
440 * be called once for each command, as required.
442 static void scsi_init_cmd_errh(struct scsi_cmnd *cmd)
444 cmd->serial_number = 0;
445 scsi_set_resid(cmd, 0);
446 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
447 if (cmd->cmd_len == 0)
448 cmd->cmd_len = COMMAND_SIZE(cmd->cmnd[0]);
451 void scsi_device_unbusy(struct scsi_device *sdev)
453 struct Scsi_Host *shost = sdev->host;
454 unsigned long flags;
456 spin_lock_irqsave(shost->host_lock, flags);
457 shost->host_busy--;
458 if (unlikely(scsi_host_in_recovery(shost) &&
459 (shost->host_failed || shost->host_eh_scheduled)))
460 scsi_eh_wakeup(shost);
461 spin_unlock(shost->host_lock);
462 spin_lock(sdev->request_queue->queue_lock);
463 sdev->device_busy--;
464 spin_unlock_irqrestore(sdev->request_queue->queue_lock, flags);
468 * Called for single_lun devices on IO completion. Clear starget_sdev_user,
469 * and call blk_run_queue for all the scsi_devices on the target -
470 * including current_sdev first.
472 * Called with *no* scsi locks held.
474 static void scsi_single_lun_run(struct scsi_device *current_sdev)
476 struct Scsi_Host *shost = current_sdev->host;
477 struct scsi_device *sdev, *tmp;
478 struct scsi_target *starget = scsi_target(current_sdev);
479 unsigned long flags;
481 spin_lock_irqsave(shost->host_lock, flags);
482 starget->starget_sdev_user = NULL;
483 spin_unlock_irqrestore(shost->host_lock, flags);
486 * Call blk_run_queue for all LUNs on the target, starting with
487 * current_sdev. We race with others (to set starget_sdev_user),
488 * but in most cases, we will be first. Ideally, each LU on the
489 * target would get some limited time or requests on the target.
491 blk_run_queue(current_sdev->request_queue);
493 spin_lock_irqsave(shost->host_lock, flags);
494 if (starget->starget_sdev_user)
495 goto out;
496 list_for_each_entry_safe(sdev, tmp, &starget->devices,
497 same_target_siblings) {
498 if (sdev == current_sdev)
499 continue;
500 if (scsi_device_get(sdev))
501 continue;
503 spin_unlock_irqrestore(shost->host_lock, flags);
504 blk_run_queue(sdev->request_queue);
505 spin_lock_irqsave(shost->host_lock, flags);
507 scsi_device_put(sdev);
509 out:
510 spin_unlock_irqrestore(shost->host_lock, flags);
514 * Function: scsi_run_queue()
516 * Purpose: Select a proper request queue to serve next
518 * Arguments: q - last request's queue
520 * Returns: Nothing
522 * Notes: The previous command was completely finished, start
523 * a new one if possible.
525 static void scsi_run_queue(struct request_queue *q)
527 struct scsi_device *sdev = q->queuedata;
528 struct Scsi_Host *shost = sdev->host;
529 unsigned long flags;
531 if (scsi_target(sdev)->single_lun)
532 scsi_single_lun_run(sdev);
534 spin_lock_irqsave(shost->host_lock, flags);
535 while (!list_empty(&shost->starved_list) &&
536 !shost->host_blocked && !shost->host_self_blocked &&
537 !((shost->can_queue > 0) &&
538 (shost->host_busy >= shost->can_queue))) {
540 * As long as shost is accepting commands and we have
541 * starved queues, call blk_run_queue. scsi_request_fn
542 * drops the queue_lock and can add us back to the
543 * starved_list.
545 * host_lock protects the starved_list and starved_entry.
546 * scsi_request_fn must get the host_lock before checking
547 * or modifying starved_list or starved_entry.
549 sdev = list_entry(shost->starved_list.next,
550 struct scsi_device, starved_entry);
551 list_del_init(&sdev->starved_entry);
552 spin_unlock_irqrestore(shost->host_lock, flags);
555 if (test_bit(QUEUE_FLAG_REENTER, &q->queue_flags) &&
556 !test_and_set_bit(QUEUE_FLAG_REENTER,
557 &sdev->request_queue->queue_flags)) {
558 blk_run_queue(sdev->request_queue);
559 clear_bit(QUEUE_FLAG_REENTER,
560 &sdev->request_queue->queue_flags);
561 } else
562 blk_run_queue(sdev->request_queue);
564 spin_lock_irqsave(shost->host_lock, flags);
565 if (unlikely(!list_empty(&sdev->starved_entry)))
567 * sdev lost a race, and was put back on the
568 * starved list. This is unlikely but without this
569 * in theory we could loop forever.
571 break;
573 spin_unlock_irqrestore(shost->host_lock, flags);
575 blk_run_queue(q);
579 * Function: scsi_requeue_command()
581 * Purpose: Handle post-processing of completed commands.
583 * Arguments: q - queue to operate on
584 * cmd - command that may need to be requeued.
586 * Returns: Nothing
588 * Notes: After command completion, there may be blocks left
589 * over which weren't finished by the previous command
590 * this can be for a number of reasons - the main one is
591 * I/O errors in the middle of the request, in which case
592 * we need to request the blocks that come after the bad
593 * sector.
594 * Notes: Upon return, cmd is a stale pointer.
596 static void scsi_requeue_command(struct request_queue *q, struct scsi_cmnd *cmd)
598 struct request *req = cmd->request;
599 unsigned long flags;
601 scsi_unprep_request(req);
602 spin_lock_irqsave(q->queue_lock, flags);
603 blk_requeue_request(q, req);
604 spin_unlock_irqrestore(q->queue_lock, flags);
606 scsi_run_queue(q);
609 void scsi_next_command(struct scsi_cmnd *cmd)
611 struct scsi_device *sdev = cmd->device;
612 struct request_queue *q = sdev->request_queue;
614 /* need to hold a reference on the device before we let go of the cmd */
615 get_device(&sdev->sdev_gendev);
617 scsi_put_command(cmd);
618 scsi_run_queue(q);
620 /* ok to remove device now */
621 put_device(&sdev->sdev_gendev);
624 void scsi_run_host_queues(struct Scsi_Host *shost)
626 struct scsi_device *sdev;
628 shost_for_each_device(sdev, shost)
629 scsi_run_queue(sdev->request_queue);
633 * Function: scsi_end_request()
635 * Purpose: Post-processing of completed commands (usually invoked at end
636 * of upper level post-processing and scsi_io_completion).
638 * Arguments: cmd - command that is complete.
639 * error - 0 if I/O indicates success, < 0 for I/O error.
640 * bytes - number of bytes of completed I/O
641 * requeue - indicates whether we should requeue leftovers.
643 * Lock status: Assumed that lock is not held upon entry.
645 * Returns: cmd if requeue required, NULL otherwise.
647 * Notes: This is called for block device requests in order to
648 * mark some number of sectors as complete.
650 * We are guaranteeing that the request queue will be goosed
651 * at some point during this call.
652 * Notes: If cmd was requeued, upon return it will be a stale pointer.
654 static struct scsi_cmnd *scsi_end_request(struct scsi_cmnd *cmd, int error,
655 int bytes, int requeue)
657 struct request_queue *q = cmd->device->request_queue;
658 struct request *req = cmd->request;
661 * If there are blocks left over at the end, set up the command
662 * to queue the remainder of them.
664 if (blk_end_request(req, error, bytes)) {
665 int leftover = (req->hard_nr_sectors << 9);
667 if (blk_pc_request(req))
668 leftover = req->data_len;
670 /* kill remainder if no retrys */
671 if (error && blk_noretry_request(req))
672 blk_end_request(req, error, leftover);
673 else {
674 if (requeue) {
676 * Bleah. Leftovers again. Stick the
677 * leftovers in the front of the
678 * queue, and goose the queue again.
680 scsi_requeue_command(q, cmd);
681 cmd = NULL;
683 return cmd;
688 * This will goose the queue request function at the end, so we don't
689 * need to worry about launching another command.
691 scsi_next_command(cmd);
692 return NULL;
695 static inline unsigned int scsi_sgtable_index(unsigned short nents)
697 unsigned int index;
699 BUG_ON(nents > SCSI_MAX_SG_SEGMENTS);
701 if (nents <= 8)
702 index = 0;
703 else
704 index = get_count_order(nents) - 3;
706 return index;
709 static void scsi_sg_free(struct scatterlist *sgl, unsigned int nents)
711 struct scsi_host_sg_pool *sgp;
713 sgp = scsi_sg_pools + scsi_sgtable_index(nents);
714 mempool_free(sgl, sgp->pool);
717 static struct scatterlist *scsi_sg_alloc(unsigned int nents, gfp_t gfp_mask)
719 struct scsi_host_sg_pool *sgp;
721 sgp = scsi_sg_pools + scsi_sgtable_index(nents);
722 return mempool_alloc(sgp->pool, gfp_mask);
725 static int scsi_alloc_sgtable(struct scsi_data_buffer *sdb, int nents,
726 gfp_t gfp_mask)
728 int ret;
730 BUG_ON(!nents);
732 ret = __sg_alloc_table(&sdb->table, nents, SCSI_MAX_SG_SEGMENTS,
733 gfp_mask, scsi_sg_alloc);
734 if (unlikely(ret))
735 __sg_free_table(&sdb->table, SCSI_MAX_SG_SEGMENTS,
736 scsi_sg_free);
738 return ret;
741 static void scsi_free_sgtable(struct scsi_data_buffer *sdb)
743 __sg_free_table(&sdb->table, SCSI_MAX_SG_SEGMENTS, scsi_sg_free);
747 * Function: scsi_release_buffers()
749 * Purpose: Completion processing for block device I/O requests.
751 * Arguments: cmd - command that we are bailing.
753 * Lock status: Assumed that no lock is held upon entry.
755 * Returns: Nothing
757 * Notes: In the event that an upper level driver rejects a
758 * command, we must release resources allocated during
759 * the __init_io() function. Primarily this would involve
760 * the scatter-gather table, and potentially any bounce
761 * buffers.
763 void scsi_release_buffers(struct scsi_cmnd *cmd)
765 if (cmd->sdb.table.nents)
766 scsi_free_sgtable(&cmd->sdb);
768 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
770 if (scsi_bidi_cmnd(cmd)) {
771 struct scsi_data_buffer *bidi_sdb =
772 cmd->request->next_rq->special;
773 scsi_free_sgtable(bidi_sdb);
774 kmem_cache_free(scsi_bidi_sdb_cache, bidi_sdb);
775 cmd->request->next_rq->special = NULL;
778 EXPORT_SYMBOL(scsi_release_buffers);
781 * Bidi commands Must be complete as a whole, both sides at once.
782 * If part of the bytes were written and lld returned
783 * scsi_in()->resid and/or scsi_out()->resid this information will be left
784 * in req->data_len and req->next_rq->data_len. The upper-layer driver can
785 * decide what to do with this information.
787 void scsi_end_bidi_request(struct scsi_cmnd *cmd)
789 struct request *req = cmd->request;
790 unsigned int dlen = req->data_len;
791 unsigned int next_dlen = req->next_rq->data_len;
793 req->data_len = scsi_out(cmd)->resid;
794 req->next_rq->data_len = scsi_in(cmd)->resid;
796 /* The req and req->next_rq have not been completed */
797 BUG_ON(blk_end_bidi_request(req, 0, dlen, next_dlen));
799 scsi_release_buffers(cmd);
802 * This will goose the queue request function at the end, so we don't
803 * need to worry about launching another command.
805 scsi_next_command(cmd);
809 * Function: scsi_io_completion()
811 * Purpose: Completion processing for block device I/O requests.
813 * Arguments: cmd - command that is finished.
815 * Lock status: Assumed that no lock is held upon entry.
817 * Returns: Nothing
819 * Notes: This function is matched in terms of capabilities to
820 * the function that created the scatter-gather list.
821 * In other words, if there are no bounce buffers
822 * (the normal case for most drivers), we don't need
823 * the logic to deal with cleaning up afterwards.
825 * We must do one of several things here:
827 * a) Call scsi_end_request. This will finish off the
828 * specified number of sectors. If we are done, the
829 * command block will be released, and the queue
830 * function will be goosed. If we are not done, then
831 * scsi_end_request will directly goose the queue.
833 * b) We can just use scsi_requeue_command() here. This would
834 * be used if we just wanted to retry, for example.
836 void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
838 int result = cmd->result;
839 int this_count = scsi_bufflen(cmd);
840 struct request_queue *q = cmd->device->request_queue;
841 struct request *req = cmd->request;
842 int clear_errors = 1;
843 struct scsi_sense_hdr sshdr;
844 int sense_valid = 0;
845 int sense_deferred = 0;
847 if (result) {
848 sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
849 if (sense_valid)
850 sense_deferred = scsi_sense_is_deferred(&sshdr);
853 if (blk_pc_request(req)) { /* SG_IO ioctl from block level */
854 req->errors = result;
855 if (result) {
856 clear_errors = 0;
857 if (sense_valid && req->sense) {
859 * SG_IO wants current and deferred errors
861 int len = 8 + cmd->sense_buffer[7];
863 if (len > SCSI_SENSE_BUFFERSIZE)
864 len = SCSI_SENSE_BUFFERSIZE;
865 memcpy(req->sense, cmd->sense_buffer, len);
866 req->sense_len = len;
869 if (scsi_bidi_cmnd(cmd)) {
870 /* will also release_buffers */
871 scsi_end_bidi_request(cmd);
872 return;
874 req->data_len = scsi_get_resid(cmd);
877 BUG_ON(blk_bidi_rq(req)); /* bidi not support for !blk_pc_request yet */
878 scsi_release_buffers(cmd);
881 * Next deal with any sectors which we were able to correctly
882 * handle.
884 SCSI_LOG_HLCOMPLETE(1, printk("%ld sectors total, "
885 "%d bytes done.\n",
886 req->nr_sectors, good_bytes));
888 if (clear_errors)
889 req->errors = 0;
891 /* A number of bytes were successfully read. If there
892 * are leftovers and there is some kind of error
893 * (result != 0), retry the rest.
895 if (scsi_end_request(cmd, 0, good_bytes, result == 0) == NULL)
896 return;
898 /* good_bytes = 0, or (inclusive) there were leftovers and
899 * result = 0, so scsi_end_request couldn't retry.
901 if (sense_valid && !sense_deferred) {
902 switch (sshdr.sense_key) {
903 case UNIT_ATTENTION:
904 if (cmd->device->removable) {
905 /* Detected disc change. Set a bit
906 * and quietly refuse further access.
908 cmd->device->changed = 1;
909 scsi_end_request(cmd, -EIO, this_count, 1);
910 return;
911 } else {
912 /* Must have been a power glitch, or a
913 * bus reset. Could not have been a
914 * media change, so we just retry the
915 * request and see what happens.
917 scsi_requeue_command(q, cmd);
918 return;
920 break;
921 case ILLEGAL_REQUEST:
922 /* If we had an ILLEGAL REQUEST returned, then
923 * we may have performed an unsupported
924 * command. The only thing this should be
925 * would be a ten byte read where only a six
926 * byte read was supported. Also, on a system
927 * where READ CAPACITY failed, we may have
928 * read past the end of the disk.
930 if ((cmd->device->use_10_for_rw &&
931 sshdr.asc == 0x20 && sshdr.ascq == 0x00) &&
932 (cmd->cmnd[0] == READ_10 ||
933 cmd->cmnd[0] == WRITE_10)) {
934 cmd->device->use_10_for_rw = 0;
935 /* This will cause a retry with a
936 * 6-byte command.
938 scsi_requeue_command(q, cmd);
939 return;
940 } else {
941 scsi_end_request(cmd, -EIO, this_count, 1);
942 return;
944 break;
945 case NOT_READY:
946 /* If the device is in the process of becoming
947 * ready, or has a temporary blockage, retry.
949 if (sshdr.asc == 0x04) {
950 switch (sshdr.ascq) {
951 case 0x01: /* becoming ready */
952 case 0x04: /* format in progress */
953 case 0x05: /* rebuild in progress */
954 case 0x06: /* recalculation in progress */
955 case 0x07: /* operation in progress */
956 case 0x08: /* Long write in progress */
957 case 0x09: /* self test in progress */
958 scsi_requeue_command(q, cmd);
959 return;
960 default:
961 break;
964 if (!(req->cmd_flags & REQ_QUIET))
965 scsi_cmd_print_sense_hdr(cmd,
966 "Device not ready",
967 &sshdr);
969 scsi_end_request(cmd, -EIO, this_count, 1);
970 return;
971 case VOLUME_OVERFLOW:
972 if (!(req->cmd_flags & REQ_QUIET)) {
973 scmd_printk(KERN_INFO, cmd,
974 "Volume overflow, CDB: ");
975 __scsi_print_command(cmd->cmnd);
976 scsi_print_sense("", cmd);
978 /* See SSC3rXX or current. */
979 scsi_end_request(cmd, -EIO, this_count, 1);
980 return;
981 default:
982 break;
985 if (host_byte(result) == DID_RESET) {
986 /* Third party bus reset or reset for error recovery
987 * reasons. Just retry the request and see what
988 * happens.
990 scsi_requeue_command(q, cmd);
991 return;
993 if (result) {
994 if (!(req->cmd_flags & REQ_QUIET)) {
995 scsi_print_result(cmd);
996 if (driver_byte(result) & DRIVER_SENSE)
997 scsi_print_sense("", cmd);
1000 scsi_end_request(cmd, -EIO, this_count, !result);
1003 static int scsi_init_sgtable(struct request *req, struct scsi_data_buffer *sdb,
1004 gfp_t gfp_mask)
1006 int count;
1009 * If sg table allocation fails, requeue request later.
1011 if (unlikely(scsi_alloc_sgtable(sdb, req->nr_phys_segments,
1012 gfp_mask))) {
1013 return BLKPREP_DEFER;
1016 req->buffer = NULL;
1017 <<<<<<< HEAD:drivers/scsi/scsi_lib.c
1018 if (blk_pc_request(req))
1019 sdb->length = req->data_len;
1020 else
1021 sdb->length = req->nr_sectors << 9;
1022 =======
1023 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/scsi/scsi_lib.c
1026 * Next, walk the list, and fill in the addresses and sizes of
1027 * each segment.
1029 count = blk_rq_map_sg(req->q, req, sdb->table.sgl);
1030 BUG_ON(count > sdb->table.nents);
1031 sdb->table.nents = count;
1032 <<<<<<< HEAD:drivers/scsi/scsi_lib.c
1033 =======
1034 if (blk_pc_request(req))
1035 sdb->length = req->data_len;
1036 else
1037 sdb->length = req->nr_sectors << 9;
1038 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a:drivers/scsi/scsi_lib.c
1039 return BLKPREP_OK;
1043 * Function: scsi_init_io()
1045 * Purpose: SCSI I/O initialize function.
1047 * Arguments: cmd - Command descriptor we wish to initialize
1049 * Returns: 0 on success
1050 * BLKPREP_DEFER if the failure is retryable
1051 * BLKPREP_KILL if the failure is fatal
1053 int scsi_init_io(struct scsi_cmnd *cmd, gfp_t gfp_mask)
1055 int error = scsi_init_sgtable(cmd->request, &cmd->sdb, gfp_mask);
1056 if (error)
1057 goto err_exit;
1059 if (blk_bidi_rq(cmd->request)) {
1060 struct scsi_data_buffer *bidi_sdb = kmem_cache_zalloc(
1061 scsi_bidi_sdb_cache, GFP_ATOMIC);
1062 if (!bidi_sdb) {
1063 error = BLKPREP_DEFER;
1064 goto err_exit;
1067 cmd->request->next_rq->special = bidi_sdb;
1068 error = scsi_init_sgtable(cmd->request->next_rq, bidi_sdb,
1069 GFP_ATOMIC);
1070 if (error)
1071 goto err_exit;
1074 return BLKPREP_OK ;
1076 err_exit:
1077 scsi_release_buffers(cmd);
1078 if (error == BLKPREP_KILL)
1079 scsi_put_command(cmd);
1080 else /* BLKPREP_DEFER */
1081 scsi_unprep_request(cmd->request);
1083 return error;
1085 EXPORT_SYMBOL(scsi_init_io);
1087 static struct scsi_cmnd *scsi_get_cmd_from_req(struct scsi_device *sdev,
1088 struct request *req)
1090 struct scsi_cmnd *cmd;
1092 if (!req->special) {
1093 cmd = scsi_get_command(sdev, GFP_ATOMIC);
1094 if (unlikely(!cmd))
1095 return NULL;
1096 req->special = cmd;
1097 } else {
1098 cmd = req->special;
1101 /* pull a tag out of the request if we have one */
1102 cmd->tag = req->tag;
1103 cmd->request = req;
1105 return cmd;
1108 int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req)
1110 struct scsi_cmnd *cmd;
1111 int ret = scsi_prep_state_check(sdev, req);
1113 if (ret != BLKPREP_OK)
1114 return ret;
1116 cmd = scsi_get_cmd_from_req(sdev, req);
1117 if (unlikely(!cmd))
1118 return BLKPREP_DEFER;
1121 * BLOCK_PC requests may transfer data, in which case they must
1122 * a bio attached to them. Or they might contain a SCSI command
1123 * that does not transfer data, in which case they may optionally
1124 * submit a request without an attached bio.
1126 if (req->bio) {
1127 int ret;
1129 BUG_ON(!req->nr_phys_segments);
1131 ret = scsi_init_io(cmd, GFP_ATOMIC);
1132 if (unlikely(ret))
1133 return ret;
1134 } else {
1135 BUG_ON(req->data_len);
1136 BUG_ON(req->data);
1138 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
1139 req->buffer = NULL;
1142 BUILD_BUG_ON(sizeof(req->cmd) > sizeof(cmd->cmnd));
1143 memcpy(cmd->cmnd, req->cmd, sizeof(cmd->cmnd));
1144 cmd->cmd_len = req->cmd_len;
1145 if (!req->data_len)
1146 cmd->sc_data_direction = DMA_NONE;
1147 else if (rq_data_dir(req) == WRITE)
1148 cmd->sc_data_direction = DMA_TO_DEVICE;
1149 else
1150 cmd->sc_data_direction = DMA_FROM_DEVICE;
1152 cmd->transfersize = req->data_len;
1153 cmd->allowed = req->retries;
1154 cmd->timeout_per_command = req->timeout;
1155 return BLKPREP_OK;
1157 EXPORT_SYMBOL(scsi_setup_blk_pc_cmnd);
1160 * Setup a REQ_TYPE_FS command. These are simple read/write request
1161 * from filesystems that still need to be translated to SCSI CDBs from
1162 * the ULD.
1164 int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req)
1166 struct scsi_cmnd *cmd;
1167 int ret = scsi_prep_state_check(sdev, req);
1169 if (ret != BLKPREP_OK)
1170 return ret;
1172 * Filesystem requests must transfer data.
1174 BUG_ON(!req->nr_phys_segments);
1176 cmd = scsi_get_cmd_from_req(sdev, req);
1177 if (unlikely(!cmd))
1178 return BLKPREP_DEFER;
1180 return scsi_init_io(cmd, GFP_ATOMIC);
1182 EXPORT_SYMBOL(scsi_setup_fs_cmnd);
1184 int scsi_prep_state_check(struct scsi_device *sdev, struct request *req)
1186 int ret = BLKPREP_OK;
1189 * If the device is not in running state we will reject some
1190 * or all commands.
1192 if (unlikely(sdev->sdev_state != SDEV_RUNNING)) {
1193 switch (sdev->sdev_state) {
1194 case SDEV_OFFLINE:
1196 * If the device is offline we refuse to process any
1197 * commands. The device must be brought online
1198 * before trying any recovery commands.
1200 sdev_printk(KERN_ERR, sdev,
1201 "rejecting I/O to offline device\n");
1202 ret = BLKPREP_KILL;
1203 break;
1204 case SDEV_DEL:
1206 * If the device is fully deleted, we refuse to
1207 * process any commands as well.
1209 sdev_printk(KERN_ERR, sdev,
1210 "rejecting I/O to dead device\n");
1211 ret = BLKPREP_KILL;
1212 break;
1213 case SDEV_QUIESCE:
1214 case SDEV_BLOCK:
1216 * If the devices is blocked we defer normal commands.
1218 if (!(req->cmd_flags & REQ_PREEMPT))
1219 ret = BLKPREP_DEFER;
1220 break;
1221 default:
1223 * For any other not fully online state we only allow
1224 * special commands. In particular any user initiated
1225 * command is not allowed.
1227 if (!(req->cmd_flags & REQ_PREEMPT))
1228 ret = BLKPREP_KILL;
1229 break;
1232 return ret;
1234 EXPORT_SYMBOL(scsi_prep_state_check);
1236 int scsi_prep_return(struct request_queue *q, struct request *req, int ret)
1238 struct scsi_device *sdev = q->queuedata;
1240 switch (ret) {
1241 case BLKPREP_KILL:
1242 req->errors = DID_NO_CONNECT << 16;
1243 /* release the command and kill it */
1244 if (req->special) {
1245 struct scsi_cmnd *cmd = req->special;
1246 scsi_release_buffers(cmd);
1247 scsi_put_command(cmd);
1248 req->special = NULL;
1250 break;
1251 case BLKPREP_DEFER:
1253 * If we defer, the elv_next_request() returns NULL, but the
1254 * queue must be restarted, so we plug here if no returning
1255 * command will automatically do that.
1257 if (sdev->device_busy == 0)
1258 blk_plug_device(q);
1259 break;
1260 default:
1261 req->cmd_flags |= REQ_DONTPREP;
1264 return ret;
1266 EXPORT_SYMBOL(scsi_prep_return);
1268 int scsi_prep_fn(struct request_queue *q, struct request *req)
1270 struct scsi_device *sdev = q->queuedata;
1271 int ret = BLKPREP_KILL;
1273 if (req->cmd_type == REQ_TYPE_BLOCK_PC)
1274 ret = scsi_setup_blk_pc_cmnd(sdev, req);
1275 return scsi_prep_return(q, req, ret);
1279 * scsi_dev_queue_ready: if we can send requests to sdev, return 1 else
1280 * return 0.
1282 * Called with the queue_lock held.
1284 static inline int scsi_dev_queue_ready(struct request_queue *q,
1285 struct scsi_device *sdev)
1287 if (sdev->device_busy >= sdev->queue_depth)
1288 return 0;
1289 if (sdev->device_busy == 0 && sdev->device_blocked) {
1291 * unblock after device_blocked iterates to zero
1293 if (--sdev->device_blocked == 0) {
1294 SCSI_LOG_MLQUEUE(3,
1295 sdev_printk(KERN_INFO, sdev,
1296 "unblocking device at zero depth\n"));
1297 } else {
1298 blk_plug_device(q);
1299 return 0;
1302 if (sdev->device_blocked)
1303 return 0;
1305 return 1;
1309 * scsi_host_queue_ready: if we can send requests to shost, return 1 else
1310 * return 0. We must end up running the queue again whenever 0 is
1311 * returned, else IO can hang.
1313 * Called with host_lock held.
1315 static inline int scsi_host_queue_ready(struct request_queue *q,
1316 struct Scsi_Host *shost,
1317 struct scsi_device *sdev)
1319 if (scsi_host_in_recovery(shost))
1320 return 0;
1321 if (shost->host_busy == 0 && shost->host_blocked) {
1323 * unblock after host_blocked iterates to zero
1325 if (--shost->host_blocked == 0) {
1326 SCSI_LOG_MLQUEUE(3,
1327 printk("scsi%d unblocking host at zero depth\n",
1328 shost->host_no));
1329 } else {
1330 blk_plug_device(q);
1331 return 0;
1334 if ((shost->can_queue > 0 && shost->host_busy >= shost->can_queue) ||
1335 shost->host_blocked || shost->host_self_blocked) {
1336 if (list_empty(&sdev->starved_entry))
1337 list_add_tail(&sdev->starved_entry, &shost->starved_list);
1338 return 0;
1341 /* We're OK to process the command, so we can't be starved */
1342 if (!list_empty(&sdev->starved_entry))
1343 list_del_init(&sdev->starved_entry);
1345 return 1;
1349 * Kill a request for a dead device
1351 static void scsi_kill_request(struct request *req, struct request_queue *q)
1353 struct scsi_cmnd *cmd = req->special;
1354 struct scsi_device *sdev = cmd->device;
1355 struct Scsi_Host *shost = sdev->host;
1357 blkdev_dequeue_request(req);
1359 if (unlikely(cmd == NULL)) {
1360 printk(KERN_CRIT "impossible request in %s.\n",
1361 __FUNCTION__);
1362 BUG();
1365 scsi_init_cmd_errh(cmd);
1366 cmd->result = DID_NO_CONNECT << 16;
1367 atomic_inc(&cmd->device->iorequest_cnt);
1370 * SCSI request completion path will do scsi_device_unbusy(),
1371 * bump busy counts. To bump the counters, we need to dance
1372 * with the locks as normal issue path does.
1374 sdev->device_busy++;
1375 spin_unlock(sdev->request_queue->queue_lock);
1376 spin_lock(shost->host_lock);
1377 shost->host_busy++;
1378 spin_unlock(shost->host_lock);
1379 spin_lock(sdev->request_queue->queue_lock);
1381 __scsi_done(cmd);
1384 static void scsi_softirq_done(struct request *rq)
1386 struct scsi_cmnd *cmd = rq->completion_data;
1387 unsigned long wait_for = (cmd->allowed + 1) * cmd->timeout_per_command;
1388 int disposition;
1390 INIT_LIST_HEAD(&cmd->eh_entry);
1392 disposition = scsi_decide_disposition(cmd);
1393 if (disposition != SUCCESS &&
1394 time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) {
1395 sdev_printk(KERN_ERR, cmd->device,
1396 "timing out command, waited %lus\n",
1397 wait_for/HZ);
1398 disposition = SUCCESS;
1401 scsi_log_completion(cmd, disposition);
1403 switch (disposition) {
1404 case SUCCESS:
1405 scsi_finish_command(cmd);
1406 break;
1407 case NEEDS_RETRY:
1408 scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY);
1409 break;
1410 case ADD_TO_MLQUEUE:
1411 scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY);
1412 break;
1413 default:
1414 if (!scsi_eh_scmd_add(cmd, 0))
1415 scsi_finish_command(cmd);
1420 * Function: scsi_request_fn()
1422 * Purpose: Main strategy routine for SCSI.
1424 * Arguments: q - Pointer to actual queue.
1426 * Returns: Nothing
1428 * Lock status: IO request lock assumed to be held when called.
1430 static void scsi_request_fn(struct request_queue *q)
1432 struct scsi_device *sdev = q->queuedata;
1433 struct Scsi_Host *shost;
1434 struct scsi_cmnd *cmd;
1435 struct request *req;
1437 if (!sdev) {
1438 printk("scsi: killing requests for dead queue\n");
1439 while ((req = elv_next_request(q)) != NULL)
1440 scsi_kill_request(req, q);
1441 return;
1444 if(!get_device(&sdev->sdev_gendev))
1445 /* We must be tearing the block queue down already */
1446 return;
1449 * To start with, we keep looping until the queue is empty, or until
1450 * the host is no longer able to accept any more requests.
1452 shost = sdev->host;
1453 while (!blk_queue_plugged(q)) {
1454 int rtn;
1456 * get next queueable request. We do this early to make sure
1457 * that the request is fully prepared even if we cannot
1458 * accept it.
1460 req = elv_next_request(q);
1461 if (!req || !scsi_dev_queue_ready(q, sdev))
1462 break;
1464 if (unlikely(!scsi_device_online(sdev))) {
1465 sdev_printk(KERN_ERR, sdev,
1466 "rejecting I/O to offline device\n");
1467 scsi_kill_request(req, q);
1468 continue;
1473 * Remove the request from the request list.
1475 if (!(blk_queue_tagged(q) && !blk_queue_start_tag(q, req)))
1476 blkdev_dequeue_request(req);
1477 sdev->device_busy++;
1479 spin_unlock(q->queue_lock);
1480 cmd = req->special;
1481 if (unlikely(cmd == NULL)) {
1482 printk(KERN_CRIT "impossible request in %s.\n"
1483 "please mail a stack trace to "
1484 "linux-scsi@vger.kernel.org\n",
1485 __FUNCTION__);
1486 blk_dump_rq_flags(req, "foo");
1487 BUG();
1489 spin_lock(shost->host_lock);
1491 if (!scsi_host_queue_ready(q, shost, sdev))
1492 goto not_ready;
1493 if (scsi_target(sdev)->single_lun) {
1494 if (scsi_target(sdev)->starget_sdev_user &&
1495 scsi_target(sdev)->starget_sdev_user != sdev)
1496 goto not_ready;
1497 scsi_target(sdev)->starget_sdev_user = sdev;
1499 shost->host_busy++;
1502 * XXX(hch): This is rather suboptimal, scsi_dispatch_cmd will
1503 * take the lock again.
1505 spin_unlock_irq(shost->host_lock);
1508 * Finally, initialize any error handling parameters, and set up
1509 * the timers for timeouts.
1511 scsi_init_cmd_errh(cmd);
1514 * Dispatch the command to the low-level driver.
1516 rtn = scsi_dispatch_cmd(cmd);
1517 spin_lock_irq(q->queue_lock);
1518 if(rtn) {
1519 /* we're refusing the command; because of
1520 * the way locks get dropped, we need to
1521 * check here if plugging is required */
1522 if(sdev->device_busy == 0)
1523 blk_plug_device(q);
1525 break;
1529 goto out;
1531 not_ready:
1532 spin_unlock_irq(shost->host_lock);
1535 * lock q, handle tag, requeue req, and decrement device_busy. We
1536 * must return with queue_lock held.
1538 * Decrementing device_busy without checking it is OK, as all such
1539 * cases (host limits or settings) should run the queue at some
1540 * later time.
1542 spin_lock_irq(q->queue_lock);
1543 blk_requeue_request(q, req);
1544 sdev->device_busy--;
1545 if(sdev->device_busy == 0)
1546 blk_plug_device(q);
1547 out:
1548 /* must be careful here...if we trigger the ->remove() function
1549 * we cannot be holding the q lock */
1550 spin_unlock_irq(q->queue_lock);
1551 put_device(&sdev->sdev_gendev);
1552 spin_lock_irq(q->queue_lock);
1555 u64 scsi_calculate_bounce_limit(struct Scsi_Host *shost)
1557 struct device *host_dev;
1558 u64 bounce_limit = 0xffffffff;
1560 if (shost->unchecked_isa_dma)
1561 return BLK_BOUNCE_ISA;
1563 * Platforms with virtual-DMA translation
1564 * hardware have no practical limit.
1566 if (!PCI_DMA_BUS_IS_PHYS)
1567 return BLK_BOUNCE_ANY;
1569 host_dev = scsi_get_device(shost);
1570 if (host_dev && host_dev->dma_mask)
1571 bounce_limit = *host_dev->dma_mask;
1573 return bounce_limit;
1575 EXPORT_SYMBOL(scsi_calculate_bounce_limit);
1577 struct request_queue *__scsi_alloc_queue(struct Scsi_Host *shost,
1578 request_fn_proc *request_fn)
1580 struct request_queue *q;
1581 struct device *dev = shost->shost_gendev.parent;
1583 q = blk_init_queue(request_fn, NULL);
1584 if (!q)
1585 return NULL;
1588 * this limit is imposed by hardware restrictions
1590 blk_queue_max_hw_segments(q, shost->sg_tablesize);
1591 blk_queue_max_phys_segments(q, SCSI_MAX_SG_CHAIN_SEGMENTS);
1593 blk_queue_max_sectors(q, shost->max_sectors);
1594 blk_queue_bounce_limit(q, scsi_calculate_bounce_limit(shost));
1595 blk_queue_segment_boundary(q, shost->dma_boundary);
1596 dma_set_seg_boundary(dev, shost->dma_boundary);
1598 blk_queue_max_segment_size(q, dma_get_max_seg_size(dev));
1600 if (!shost->use_clustering)
1601 clear_bit(QUEUE_FLAG_CLUSTER, &q->queue_flags);
1604 * set a reasonable default alignment on word boundaries: the
1605 * host and device may alter it using
1606 * blk_queue_update_dma_alignment() later.
1608 blk_queue_dma_alignment(q, 0x03);
1610 return q;
1612 EXPORT_SYMBOL(__scsi_alloc_queue);
1614 struct request_queue *scsi_alloc_queue(struct scsi_device *sdev)
1616 struct request_queue *q;
1618 q = __scsi_alloc_queue(sdev->host, scsi_request_fn);
1619 if (!q)
1620 return NULL;
1622 blk_queue_prep_rq(q, scsi_prep_fn);
1623 blk_queue_softirq_done(q, scsi_softirq_done);
1624 return q;
1627 void scsi_free_queue(struct request_queue *q)
1629 blk_cleanup_queue(q);
1633 * Function: scsi_block_requests()
1635 * Purpose: Utility function used by low-level drivers to prevent further
1636 * commands from being queued to the device.
1638 * Arguments: shost - Host in question
1640 * Returns: Nothing
1642 * Lock status: No locks are assumed held.
1644 * Notes: There is no timer nor any other means by which the requests
1645 * get unblocked other than the low-level driver calling
1646 * scsi_unblock_requests().
1648 void scsi_block_requests(struct Scsi_Host *shost)
1650 shost->host_self_blocked = 1;
1652 EXPORT_SYMBOL(scsi_block_requests);
1655 * Function: scsi_unblock_requests()
1657 * Purpose: Utility function used by low-level drivers to allow further
1658 * commands from being queued to the device.
1660 * Arguments: shost - Host in question
1662 * Returns: Nothing
1664 * Lock status: No locks are assumed held.
1666 * Notes: There is no timer nor any other means by which the requests
1667 * get unblocked other than the low-level driver calling
1668 * scsi_unblock_requests().
1670 * This is done as an API function so that changes to the
1671 * internals of the scsi mid-layer won't require wholesale
1672 * changes to drivers that use this feature.
1674 void scsi_unblock_requests(struct Scsi_Host *shost)
1676 shost->host_self_blocked = 0;
1677 scsi_run_host_queues(shost);
1679 EXPORT_SYMBOL(scsi_unblock_requests);
1681 int __init scsi_init_queue(void)
1683 int i;
1685 scsi_io_context_cache = kmem_cache_create("scsi_io_context",
1686 sizeof(struct scsi_io_context),
1687 0, 0, NULL);
1688 if (!scsi_io_context_cache) {
1689 printk(KERN_ERR "SCSI: can't init scsi io context cache\n");
1690 return -ENOMEM;
1693 scsi_bidi_sdb_cache = kmem_cache_create("scsi_bidi_sdb",
1694 sizeof(struct scsi_data_buffer),
1695 0, 0, NULL);
1696 if (!scsi_bidi_sdb_cache) {
1697 printk(KERN_ERR "SCSI: can't init scsi bidi sdb cache\n");
1698 goto cleanup_io_context;
1701 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1702 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1703 int size = sgp->size * sizeof(struct scatterlist);
1705 sgp->slab = kmem_cache_create(sgp->name, size, 0,
1706 SLAB_HWCACHE_ALIGN, NULL);
1707 if (!sgp->slab) {
1708 printk(KERN_ERR "SCSI: can't init sg slab %s\n",
1709 sgp->name);
1710 goto cleanup_bidi_sdb;
1713 sgp->pool = mempool_create_slab_pool(SG_MEMPOOL_SIZE,
1714 sgp->slab);
1715 if (!sgp->pool) {
1716 printk(KERN_ERR "SCSI: can't init sg mempool %s\n",
1717 sgp->name);
1718 goto cleanup_bidi_sdb;
1722 return 0;
1724 cleanup_bidi_sdb:
1725 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1726 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1727 if (sgp->pool)
1728 mempool_destroy(sgp->pool);
1729 if (sgp->slab)
1730 kmem_cache_destroy(sgp->slab);
1732 kmem_cache_destroy(scsi_bidi_sdb_cache);
1733 cleanup_io_context:
1734 kmem_cache_destroy(scsi_io_context_cache);
1736 return -ENOMEM;
1739 void scsi_exit_queue(void)
1741 int i;
1743 kmem_cache_destroy(scsi_io_context_cache);
1744 kmem_cache_destroy(scsi_bidi_sdb_cache);
1746 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1747 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1748 mempool_destroy(sgp->pool);
1749 kmem_cache_destroy(sgp->slab);
1754 * scsi_mode_select - issue a mode select
1755 * @sdev: SCSI device to be queried
1756 * @pf: Page format bit (1 == standard, 0 == vendor specific)
1757 * @sp: Save page bit (0 == don't save, 1 == save)
1758 * @modepage: mode page being requested
1759 * @buffer: request buffer (may not be smaller than eight bytes)
1760 * @len: length of request buffer.
1761 * @timeout: command timeout
1762 * @retries: number of retries before failing
1763 * @data: returns a structure abstracting the mode header data
1764 * @sshdr: place to put sense data (or NULL if no sense to be collected).
1765 * must be SCSI_SENSE_BUFFERSIZE big.
1767 * Returns zero if successful; negative error number or scsi
1768 * status on error
1772 scsi_mode_select(struct scsi_device *sdev, int pf, int sp, int modepage,
1773 unsigned char *buffer, int len, int timeout, int retries,
1774 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
1776 unsigned char cmd[10];
1777 unsigned char *real_buffer;
1778 int ret;
1780 memset(cmd, 0, sizeof(cmd));
1781 cmd[1] = (pf ? 0x10 : 0) | (sp ? 0x01 : 0);
1783 if (sdev->use_10_for_ms) {
1784 if (len > 65535)
1785 return -EINVAL;
1786 real_buffer = kmalloc(8 + len, GFP_KERNEL);
1787 if (!real_buffer)
1788 return -ENOMEM;
1789 memcpy(real_buffer + 8, buffer, len);
1790 len += 8;
1791 real_buffer[0] = 0;
1792 real_buffer[1] = 0;
1793 real_buffer[2] = data->medium_type;
1794 real_buffer[3] = data->device_specific;
1795 real_buffer[4] = data->longlba ? 0x01 : 0;
1796 real_buffer[5] = 0;
1797 real_buffer[6] = data->block_descriptor_length >> 8;
1798 real_buffer[7] = data->block_descriptor_length;
1800 cmd[0] = MODE_SELECT_10;
1801 cmd[7] = len >> 8;
1802 cmd[8] = len;
1803 } else {
1804 if (len > 255 || data->block_descriptor_length > 255 ||
1805 data->longlba)
1806 return -EINVAL;
1808 real_buffer = kmalloc(4 + len, GFP_KERNEL);
1809 if (!real_buffer)
1810 return -ENOMEM;
1811 memcpy(real_buffer + 4, buffer, len);
1812 len += 4;
1813 real_buffer[0] = 0;
1814 real_buffer[1] = data->medium_type;
1815 real_buffer[2] = data->device_specific;
1816 real_buffer[3] = data->block_descriptor_length;
1819 cmd[0] = MODE_SELECT;
1820 cmd[4] = len;
1823 ret = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, real_buffer, len,
1824 sshdr, timeout, retries);
1825 kfree(real_buffer);
1826 return ret;
1828 EXPORT_SYMBOL_GPL(scsi_mode_select);
1831 * scsi_mode_sense - issue a mode sense, falling back from 10 to six bytes if necessary.
1832 * @sdev: SCSI device to be queried
1833 * @dbd: set if mode sense will allow block descriptors to be returned
1834 * @modepage: mode page being requested
1835 * @buffer: request buffer (may not be smaller than eight bytes)
1836 * @len: length of request buffer.
1837 * @timeout: command timeout
1838 * @retries: number of retries before failing
1839 * @data: returns a structure abstracting the mode header data
1840 * @sshdr: place to put sense data (or NULL if no sense to be collected).
1841 * must be SCSI_SENSE_BUFFERSIZE big.
1843 * Returns zero if unsuccessful, or the header offset (either 4
1844 * or 8 depending on whether a six or ten byte command was
1845 * issued) if successful.
1848 scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
1849 unsigned char *buffer, int len, int timeout, int retries,
1850 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
1852 unsigned char cmd[12];
1853 int use_10_for_ms;
1854 int header_length;
1855 int result;
1856 struct scsi_sense_hdr my_sshdr;
1858 memset(data, 0, sizeof(*data));
1859 memset(&cmd[0], 0, 12);
1860 cmd[1] = dbd & 0x18; /* allows DBD and LLBA bits */
1861 cmd[2] = modepage;
1863 /* caller might not be interested in sense, but we need it */
1864 if (!sshdr)
1865 sshdr = &my_sshdr;
1867 retry:
1868 use_10_for_ms = sdev->use_10_for_ms;
1870 if (use_10_for_ms) {
1871 if (len < 8)
1872 len = 8;
1874 cmd[0] = MODE_SENSE_10;
1875 cmd[8] = len;
1876 header_length = 8;
1877 } else {
1878 if (len < 4)
1879 len = 4;
1881 cmd[0] = MODE_SENSE;
1882 cmd[4] = len;
1883 header_length = 4;
1886 memset(buffer, 0, len);
1888 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer, len,
1889 sshdr, timeout, retries);
1891 /* This code looks awful: what it's doing is making sure an
1892 * ILLEGAL REQUEST sense return identifies the actual command
1893 * byte as the problem. MODE_SENSE commands can return
1894 * ILLEGAL REQUEST if the code page isn't supported */
1896 if (use_10_for_ms && !scsi_status_is_good(result) &&
1897 (driver_byte(result) & DRIVER_SENSE)) {
1898 if (scsi_sense_valid(sshdr)) {
1899 if ((sshdr->sense_key == ILLEGAL_REQUEST) &&
1900 (sshdr->asc == 0x20) && (sshdr->ascq == 0)) {
1902 * Invalid command operation code
1904 sdev->use_10_for_ms = 0;
1905 goto retry;
1910 if(scsi_status_is_good(result)) {
1911 if (unlikely(buffer[0] == 0x86 && buffer[1] == 0x0b &&
1912 (modepage == 6 || modepage == 8))) {
1913 /* Initio breakage? */
1914 header_length = 0;
1915 data->length = 13;
1916 data->medium_type = 0;
1917 data->device_specific = 0;
1918 data->longlba = 0;
1919 data->block_descriptor_length = 0;
1920 } else if(use_10_for_ms) {
1921 data->length = buffer[0]*256 + buffer[1] + 2;
1922 data->medium_type = buffer[2];
1923 data->device_specific = buffer[3];
1924 data->longlba = buffer[4] & 0x01;
1925 data->block_descriptor_length = buffer[6]*256
1926 + buffer[7];
1927 } else {
1928 data->length = buffer[0] + 1;
1929 data->medium_type = buffer[1];
1930 data->device_specific = buffer[2];
1931 data->block_descriptor_length = buffer[3];
1933 data->header_length = header_length;
1936 return result;
1938 EXPORT_SYMBOL(scsi_mode_sense);
1941 * scsi_test_unit_ready - test if unit is ready
1942 * @sdev: scsi device to change the state of.
1943 * @timeout: command timeout
1944 * @retries: number of retries before failing
1945 * @sshdr_external: Optional pointer to struct scsi_sense_hdr for
1946 * returning sense. Make sure that this is cleared before passing
1947 * in.
1949 * Returns zero if unsuccessful or an error if TUR failed. For
1950 * removable media, a return of NOT_READY or UNIT_ATTENTION is
1951 * translated to success, with the ->changed flag updated.
1954 scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries,
1955 struct scsi_sense_hdr *sshdr_external)
1957 char cmd[] = {
1958 TEST_UNIT_READY, 0, 0, 0, 0, 0,
1960 struct scsi_sense_hdr *sshdr;
1961 int result;
1963 if (!sshdr_external)
1964 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
1965 else
1966 sshdr = sshdr_external;
1968 /* try to eat the UNIT_ATTENTION if there are enough retries */
1969 do {
1970 result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, sshdr,
1971 timeout, retries);
1972 } while ((driver_byte(result) & DRIVER_SENSE) &&
1973 sshdr && sshdr->sense_key == UNIT_ATTENTION &&
1974 --retries);
1976 if (!sshdr)
1977 /* could not allocate sense buffer, so can't process it */
1978 return result;
1980 if ((driver_byte(result) & DRIVER_SENSE) && sdev->removable) {
1982 if ((scsi_sense_valid(sshdr)) &&
1983 ((sshdr->sense_key == UNIT_ATTENTION) ||
1984 (sshdr->sense_key == NOT_READY))) {
1985 sdev->changed = 1;
1986 result = 0;
1989 if (!sshdr_external)
1990 kfree(sshdr);
1991 return result;
1993 EXPORT_SYMBOL(scsi_test_unit_ready);
1996 * scsi_device_set_state - Take the given device through the device state model.
1997 * @sdev: scsi device to change the state of.
1998 * @state: state to change to.
2000 * Returns zero if unsuccessful or an error if the requested
2001 * transition is illegal.
2004 scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state)
2006 enum scsi_device_state oldstate = sdev->sdev_state;
2008 if (state == oldstate)
2009 return 0;
2011 switch (state) {
2012 case SDEV_CREATED:
2013 /* There are no legal states that come back to
2014 * created. This is the manually initialised start
2015 * state */
2016 goto illegal;
2018 case SDEV_RUNNING:
2019 switch (oldstate) {
2020 case SDEV_CREATED:
2021 case SDEV_OFFLINE:
2022 case SDEV_QUIESCE:
2023 case SDEV_BLOCK:
2024 break;
2025 default:
2026 goto illegal;
2028 break;
2030 case SDEV_QUIESCE:
2031 switch (oldstate) {
2032 case SDEV_RUNNING:
2033 case SDEV_OFFLINE:
2034 break;
2035 default:
2036 goto illegal;
2038 break;
2040 case SDEV_OFFLINE:
2041 switch (oldstate) {
2042 case SDEV_CREATED:
2043 case SDEV_RUNNING:
2044 case SDEV_QUIESCE:
2045 case SDEV_BLOCK:
2046 break;
2047 default:
2048 goto illegal;
2050 break;
2052 case SDEV_BLOCK:
2053 switch (oldstate) {
2054 case SDEV_CREATED:
2055 case SDEV_RUNNING:
2056 break;
2057 default:
2058 goto illegal;
2060 break;
2062 case SDEV_CANCEL:
2063 switch (oldstate) {
2064 case SDEV_CREATED:
2065 case SDEV_RUNNING:
2066 case SDEV_QUIESCE:
2067 case SDEV_OFFLINE:
2068 case SDEV_BLOCK:
2069 break;
2070 default:
2071 goto illegal;
2073 break;
2075 case SDEV_DEL:
2076 switch (oldstate) {
2077 case SDEV_CREATED:
2078 case SDEV_RUNNING:
2079 case SDEV_OFFLINE:
2080 case SDEV_CANCEL:
2081 break;
2082 default:
2083 goto illegal;
2085 break;
2088 sdev->sdev_state = state;
2089 return 0;
2091 illegal:
2092 SCSI_LOG_ERROR_RECOVERY(1,
2093 sdev_printk(KERN_ERR, sdev,
2094 "Illegal state transition %s->%s\n",
2095 scsi_device_state_name(oldstate),
2096 scsi_device_state_name(state))
2098 return -EINVAL;
2100 EXPORT_SYMBOL(scsi_device_set_state);
2103 * sdev_evt_emit - emit a single SCSI device uevent
2104 * @sdev: associated SCSI device
2105 * @evt: event to emit
2107 * Send a single uevent (scsi_event) to the associated scsi_device.
2109 static void scsi_evt_emit(struct scsi_device *sdev, struct scsi_event *evt)
2111 int idx = 0;
2112 char *envp[3];
2114 switch (evt->evt_type) {
2115 case SDEV_EVT_MEDIA_CHANGE:
2116 envp[idx++] = "SDEV_MEDIA_CHANGE=1";
2117 break;
2119 default:
2120 /* do nothing */
2121 break;
2124 envp[idx++] = NULL;
2126 kobject_uevent_env(&sdev->sdev_gendev.kobj, KOBJ_CHANGE, envp);
2130 * sdev_evt_thread - send a uevent for each scsi event
2131 * @work: work struct for scsi_device
2133 * Dispatch queued events to their associated scsi_device kobjects
2134 * as uevents.
2136 void scsi_evt_thread(struct work_struct *work)
2138 struct scsi_device *sdev;
2139 LIST_HEAD(event_list);
2141 sdev = container_of(work, struct scsi_device, event_work);
2143 while (1) {
2144 struct scsi_event *evt;
2145 struct list_head *this, *tmp;
2146 unsigned long flags;
2148 spin_lock_irqsave(&sdev->list_lock, flags);
2149 list_splice_init(&sdev->event_list, &event_list);
2150 spin_unlock_irqrestore(&sdev->list_lock, flags);
2152 if (list_empty(&event_list))
2153 break;
2155 list_for_each_safe(this, tmp, &event_list) {
2156 evt = list_entry(this, struct scsi_event, node);
2157 list_del(&evt->node);
2158 scsi_evt_emit(sdev, evt);
2159 kfree(evt);
2165 * sdev_evt_send - send asserted event to uevent thread
2166 * @sdev: scsi_device event occurred on
2167 * @evt: event to send
2169 * Assert scsi device event asynchronously.
2171 void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt)
2173 unsigned long flags;
2175 if (!test_bit(evt->evt_type, sdev->supported_events)) {
2176 kfree(evt);
2177 return;
2180 spin_lock_irqsave(&sdev->list_lock, flags);
2181 list_add_tail(&evt->node, &sdev->event_list);
2182 schedule_work(&sdev->event_work);
2183 spin_unlock_irqrestore(&sdev->list_lock, flags);
2185 EXPORT_SYMBOL_GPL(sdev_evt_send);
2188 * sdev_evt_alloc - allocate a new scsi event
2189 * @evt_type: type of event to allocate
2190 * @gfpflags: GFP flags for allocation
2192 * Allocates and returns a new scsi_event.
2194 struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type,
2195 gfp_t gfpflags)
2197 struct scsi_event *evt = kzalloc(sizeof(struct scsi_event), gfpflags);
2198 if (!evt)
2199 return NULL;
2201 evt->evt_type = evt_type;
2202 INIT_LIST_HEAD(&evt->node);
2204 /* evt_type-specific initialization, if any */
2205 switch (evt_type) {
2206 case SDEV_EVT_MEDIA_CHANGE:
2207 default:
2208 /* do nothing */
2209 break;
2212 return evt;
2214 EXPORT_SYMBOL_GPL(sdev_evt_alloc);
2217 * sdev_evt_send_simple - send asserted event to uevent thread
2218 * @sdev: scsi_device event occurred on
2219 * @evt_type: type of event to send
2220 * @gfpflags: GFP flags for allocation
2222 * Assert scsi device event asynchronously, given an event type.
2224 void sdev_evt_send_simple(struct scsi_device *sdev,
2225 enum scsi_device_event evt_type, gfp_t gfpflags)
2227 struct scsi_event *evt = sdev_evt_alloc(evt_type, gfpflags);
2228 if (!evt) {
2229 sdev_printk(KERN_ERR, sdev, "event %d eaten due to OOM\n",
2230 evt_type);
2231 return;
2234 sdev_evt_send(sdev, evt);
2236 EXPORT_SYMBOL_GPL(sdev_evt_send_simple);
2239 * scsi_device_quiesce - Block user issued commands.
2240 * @sdev: scsi device to quiesce.
2242 * This works by trying to transition to the SDEV_QUIESCE state
2243 * (which must be a legal transition). When the device is in this
2244 * state, only special requests will be accepted, all others will
2245 * be deferred. Since special requests may also be requeued requests,
2246 * a successful return doesn't guarantee the device will be
2247 * totally quiescent.
2249 * Must be called with user context, may sleep.
2251 * Returns zero if unsuccessful or an error if not.
2254 scsi_device_quiesce(struct scsi_device *sdev)
2256 int err = scsi_device_set_state(sdev, SDEV_QUIESCE);
2257 if (err)
2258 return err;
2260 scsi_run_queue(sdev->request_queue);
2261 while (sdev->device_busy) {
2262 msleep_interruptible(200);
2263 scsi_run_queue(sdev->request_queue);
2265 return 0;
2267 EXPORT_SYMBOL(scsi_device_quiesce);
2270 * scsi_device_resume - Restart user issued commands to a quiesced device.
2271 * @sdev: scsi device to resume.
2273 * Moves the device from quiesced back to running and restarts the
2274 * queues.
2276 * Must be called with user context, may sleep.
2278 void
2279 scsi_device_resume(struct scsi_device *sdev)
2281 if(scsi_device_set_state(sdev, SDEV_RUNNING))
2282 return;
2283 scsi_run_queue(sdev->request_queue);
2285 EXPORT_SYMBOL(scsi_device_resume);
2287 static void
2288 device_quiesce_fn(struct scsi_device *sdev, void *data)
2290 scsi_device_quiesce(sdev);
2293 void
2294 scsi_target_quiesce(struct scsi_target *starget)
2296 starget_for_each_device(starget, NULL, device_quiesce_fn);
2298 EXPORT_SYMBOL(scsi_target_quiesce);
2300 static void
2301 device_resume_fn(struct scsi_device *sdev, void *data)
2303 scsi_device_resume(sdev);
2306 void
2307 scsi_target_resume(struct scsi_target *starget)
2309 starget_for_each_device(starget, NULL, device_resume_fn);
2311 EXPORT_SYMBOL(scsi_target_resume);
2314 * scsi_internal_device_block - internal function to put a device temporarily into the SDEV_BLOCK state
2315 * @sdev: device to block
2317 * Block request made by scsi lld's to temporarily stop all
2318 * scsi commands on the specified device. Called from interrupt
2319 * or normal process context.
2321 * Returns zero if successful or error if not
2323 * Notes:
2324 * This routine transitions the device to the SDEV_BLOCK state
2325 * (which must be a legal transition). When the device is in this
2326 * state, all commands are deferred until the scsi lld reenables
2327 * the device with scsi_device_unblock or device_block_tmo fires.
2328 * This routine assumes the host_lock is held on entry.
2331 scsi_internal_device_block(struct scsi_device *sdev)
2333 struct request_queue *q = sdev->request_queue;
2334 unsigned long flags;
2335 int err = 0;
2337 err = scsi_device_set_state(sdev, SDEV_BLOCK);
2338 if (err)
2339 return err;
2342 * The device has transitioned to SDEV_BLOCK. Stop the
2343 * block layer from calling the midlayer with this device's
2344 * request queue.
2346 spin_lock_irqsave(q->queue_lock, flags);
2347 blk_stop_queue(q);
2348 spin_unlock_irqrestore(q->queue_lock, flags);
2350 return 0;
2352 EXPORT_SYMBOL_GPL(scsi_internal_device_block);
2355 * scsi_internal_device_unblock - resume a device after a block request
2356 * @sdev: device to resume
2358 * Called by scsi lld's or the midlayer to restart the device queue
2359 * for the previously suspended scsi device. Called from interrupt or
2360 * normal process context.
2362 * Returns zero if successful or error if not.
2364 * Notes:
2365 * This routine transitions the device to the SDEV_RUNNING state
2366 * (which must be a legal transition) allowing the midlayer to
2367 * goose the queue for this device. This routine assumes the
2368 * host_lock is held upon entry.
2371 scsi_internal_device_unblock(struct scsi_device *sdev)
2373 struct request_queue *q = sdev->request_queue;
2374 int err;
2375 unsigned long flags;
2378 * Try to transition the scsi device to SDEV_RUNNING
2379 * and goose the device queue if successful.
2381 err = scsi_device_set_state(sdev, SDEV_RUNNING);
2382 if (err)
2383 return err;
2385 spin_lock_irqsave(q->queue_lock, flags);
2386 blk_start_queue(q);
2387 spin_unlock_irqrestore(q->queue_lock, flags);
2389 return 0;
2391 EXPORT_SYMBOL_GPL(scsi_internal_device_unblock);
2393 static void
2394 device_block(struct scsi_device *sdev, void *data)
2396 scsi_internal_device_block(sdev);
2399 static int
2400 target_block(struct device *dev, void *data)
2402 if (scsi_is_target_device(dev))
2403 starget_for_each_device(to_scsi_target(dev), NULL,
2404 device_block);
2405 return 0;
2408 void
2409 scsi_target_block(struct device *dev)
2411 if (scsi_is_target_device(dev))
2412 starget_for_each_device(to_scsi_target(dev), NULL,
2413 device_block);
2414 else
2415 device_for_each_child(dev, NULL, target_block);
2417 EXPORT_SYMBOL_GPL(scsi_target_block);
2419 static void
2420 device_unblock(struct scsi_device *sdev, void *data)
2422 scsi_internal_device_unblock(sdev);
2425 static int
2426 target_unblock(struct device *dev, void *data)
2428 if (scsi_is_target_device(dev))
2429 starget_for_each_device(to_scsi_target(dev), NULL,
2430 device_unblock);
2431 return 0;
2434 void
2435 scsi_target_unblock(struct device *dev)
2437 if (scsi_is_target_device(dev))
2438 starget_for_each_device(to_scsi_target(dev), NULL,
2439 device_unblock);
2440 else
2441 device_for_each_child(dev, NULL, target_unblock);
2443 EXPORT_SYMBOL_GPL(scsi_target_unblock);
2446 * scsi_kmap_atomic_sg - find and atomically map an sg-elemnt
2447 * @sgl: scatter-gather list
2448 * @sg_count: number of segments in sg
2449 * @offset: offset in bytes into sg, on return offset into the mapped area
2450 * @len: bytes to map, on return number of bytes mapped
2452 * Returns virtual address of the start of the mapped page
2454 void *scsi_kmap_atomic_sg(struct scatterlist *sgl, int sg_count,
2455 size_t *offset, size_t *len)
2457 int i;
2458 size_t sg_len = 0, len_complete = 0;
2459 struct scatterlist *sg;
2460 struct page *page;
2462 WARN_ON(!irqs_disabled());
2464 for_each_sg(sgl, sg, sg_count, i) {
2465 len_complete = sg_len; /* Complete sg-entries */
2466 sg_len += sg->length;
2467 if (sg_len > *offset)
2468 break;
2471 if (unlikely(i == sg_count)) {
2472 printk(KERN_ERR "%s: Bytes in sg: %zu, requested offset %zu, "
2473 "elements %d\n",
2474 __FUNCTION__, sg_len, *offset, sg_count);
2475 WARN_ON(1);
2476 return NULL;
2479 /* Offset starting from the beginning of first page in this sg-entry */
2480 *offset = *offset - len_complete + sg->offset;
2482 /* Assumption: contiguous pages can be accessed as "page + i" */
2483 page = nth_page(sg_page(sg), (*offset >> PAGE_SHIFT));
2484 *offset &= ~PAGE_MASK;
2486 /* Bytes in this sg-entry from *offset to the end of the page */
2487 sg_len = PAGE_SIZE - *offset;
2488 if (*len > sg_len)
2489 *len = sg_len;
2491 return kmap_atomic(page, KM_BIO_SRC_IRQ);
2493 EXPORT_SYMBOL(scsi_kmap_atomic_sg);
2496 * scsi_kunmap_atomic_sg - atomically unmap a virtual address, previously mapped with scsi_kmap_atomic_sg
2497 * @virt: virtual address to be unmapped
2499 void scsi_kunmap_atomic_sg(void *virt)
2501 kunmap_atomic(virt, KM_BIO_SRC_IRQ);
2503 EXPORT_SYMBOL(scsi_kunmap_atomic_sg);