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