[SCSI] Fix error handling for DIF/DIX
[linux-block.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>
d3f46f39 11#include <linux/bitops.h>
1da177e4
LT
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>
faead26d 20#include <linux/hardirq.h>
c6132da1 21#include <linux/scatterlist.h>
1da177e4
LT
22
23#include <scsi/scsi.h>
beb40487 24#include <scsi/scsi_cmnd.h>
1da177e4
LT
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>
1da177e4
LT
30
31#include "scsi_priv.h"
32#include "scsi_logging.h"
33
34
6391a113 35#define SG_MEMPOOL_NR ARRAY_SIZE(scsi_sg_pools)
5972511b 36#define SG_MEMPOOL_SIZE 2
1da177e4
LT
37
38struct scsi_host_sg_pool {
39 size_t size;
a8474ce2 40 char *name;
e18b890b 41 struct kmem_cache *slab;
1da177e4
LT
42 mempool_t *pool;
43};
44
d3f46f39
JB
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
52c1da39 49static struct scsi_host_sg_pool scsi_sg_pools[] = {
1da177e4
LT
50 SP(8),
51 SP(16),
fd820f40 52#if (SCSI_MAX_SG_SEGMENTS > 32)
d3f46f39 53 SP(32),
fd820f40 54#if (SCSI_MAX_SG_SEGMENTS > 64)
d3f46f39
JB
55 SP(64),
56#if (SCSI_MAX_SG_SEGMENTS > 128)
1da177e4 57 SP(128),
d3f46f39
JB
58#if (SCSI_MAX_SG_SEGMENTS > 256)
59#error SCSI_MAX_SG_SEGMENTS is too large (256 MAX)
fd820f40
FT
60#endif
61#endif
62#endif
d3f46f39
JB
63#endif
64 SP(SCSI_MAX_SG_SEGMENTS)
a8474ce2 65};
1da177e4
LT
66#undef SP
67
7027ad72 68struct kmem_cache *scsi_sdb_cache;
6f9a35e2 69
a1bf9d1d 70static void scsi_run_queue(struct request_queue *q);
e91442b6
JB
71
72/*
73 * Function: scsi_unprep_request()
74 *
75 * Purpose: Remove all preparation done for a request, including its
76 * associated scsi_cmnd, so that it can be requeued.
77 *
78 * Arguments: req - request to unprepare
79 *
80 * Lock status: Assumed that no locks are held upon entry.
81 *
82 * Returns: Nothing.
83 */
84static void scsi_unprep_request(struct request *req)
85{
86 struct scsi_cmnd *cmd = req->special;
87
4aff5e23 88 req->cmd_flags &= ~REQ_DONTPREP;
beb40487 89 req->special = NULL;
e91442b6 90
e91442b6
JB
91 scsi_put_command(cmd);
92}
a1bf9d1d 93
4f5299ac
JB
94/**
95 * __scsi_queue_insert - private queue insertion
96 * @cmd: The SCSI command being requeued
97 * @reason: The reason for the requeue
98 * @unbusy: Whether the queue should be unbusied
1da177e4 99 *
4f5299ac
JB
100 * This is a private queue insertion. The public interface
101 * scsi_queue_insert() always assumes the queue should be unbusied
102 * because it's always called before the completion. This function is
103 * for a requeue after completion, which should only occur in this
104 * file.
1da177e4 105 */
4f5299ac 106static int __scsi_queue_insert(struct scsi_cmnd *cmd, int reason, int unbusy)
1da177e4
LT
107{
108 struct Scsi_Host *host = cmd->device->host;
109 struct scsi_device *device = cmd->device;
f0c0a376 110 struct scsi_target *starget = scsi_target(device);
a1bf9d1d
TH
111 struct request_queue *q = device->request_queue;
112 unsigned long flags;
1da177e4
LT
113
114 SCSI_LOG_MLQUEUE(1,
115 printk("Inserting command %p into mlqueue\n", cmd));
116
117 /*
d8c37e7b 118 * Set the appropriate busy bit for the device/host.
1da177e4
LT
119 *
120 * If the host/device isn't busy, assume that something actually
121 * completed, and that we should be able to queue a command now.
122 *
123 * Note that the prior mid-layer assumption that any host could
124 * always queue at least one command is now broken. The mid-layer
125 * will implement a user specifiable stall (see
126 * scsi_host.max_host_blocked and scsi_device.max_device_blocked)
127 * if a command is requeued with no other commands outstanding
128 * either for the device or for the host.
129 */
f0c0a376
MC
130 switch (reason) {
131 case SCSI_MLQUEUE_HOST_BUSY:
1da177e4 132 host->host_blocked = host->max_host_blocked;
f0c0a376
MC
133 break;
134 case SCSI_MLQUEUE_DEVICE_BUSY:
1da177e4 135 device->device_blocked = device->max_device_blocked;
f0c0a376
MC
136 break;
137 case SCSI_MLQUEUE_TARGET_BUSY:
138 starget->target_blocked = starget->max_target_blocked;
139 break;
140 }
1da177e4 141
1da177e4
LT
142 /*
143 * Decrement the counters, since these commands are no longer
144 * active on the host/device.
145 */
4f5299ac
JB
146 if (unbusy)
147 scsi_device_unbusy(device);
1da177e4
LT
148
149 /*
a1bf9d1d
TH
150 * Requeue this command. It will go before all other commands
151 * that are already in the queue.
1da177e4
LT
152 *
153 * NOTE: there is magic here about the way the queue is plugged if
154 * we have no outstanding commands.
155 *
a1bf9d1d 156 * Although we *don't* plug the queue, we call the request
1da177e4
LT
157 * function. The SCSI request function detects the blocked condition
158 * and plugs the queue appropriately.
a1bf9d1d
TH
159 */
160 spin_lock_irqsave(q->queue_lock, flags);
59897dad 161 blk_requeue_request(q, cmd->request);
a1bf9d1d
TH
162 spin_unlock_irqrestore(q->queue_lock, flags);
163
164 scsi_run_queue(q);
165
1da177e4
LT
166 return 0;
167}
168
4f5299ac
JB
169/*
170 * Function: scsi_queue_insert()
171 *
172 * Purpose: Insert a command in the midlevel queue.
173 *
174 * Arguments: cmd - command that we are adding to queue.
175 * reason - why we are inserting command to queue.
176 *
177 * Lock status: Assumed that lock is not held upon entry.
178 *
179 * Returns: Nothing.
180 *
181 * Notes: We do this for one of two cases. Either the host is busy
182 * and it cannot accept any more commands for the time being,
183 * or the device returned QUEUE_FULL and can accept no more
184 * commands.
185 * Notes: This could be called either from an interrupt context or a
186 * normal process context.
187 */
188int scsi_queue_insert(struct scsi_cmnd *cmd, int reason)
189{
190 return __scsi_queue_insert(cmd, reason, 1);
191}
39216033 192/**
33aa687d 193 * scsi_execute - insert request and wait for the result
39216033
JB
194 * @sdev: scsi device
195 * @cmd: scsi command
196 * @data_direction: data direction
197 * @buffer: data buffer
198 * @bufflen: len of buffer
199 * @sense: optional sense buffer
200 * @timeout: request timeout in seconds
201 * @retries: number of times to retry request
33aa687d 202 * @flags: or into request flags;
f4f4e47e 203 * @resid: optional residual length
39216033 204 *
59c51591 205 * returns the req->errors value which is the scsi_cmnd result
ea73a9f2 206 * field.
eb44820c 207 */
33aa687d
JB
208int scsi_execute(struct scsi_device *sdev, const unsigned char *cmd,
209 int data_direction, void *buffer, unsigned bufflen,
f4f4e47e
FT
210 unsigned char *sense, int timeout, int retries, int flags,
211 int *resid)
39216033
JB
212{
213 struct request *req;
214 int write = (data_direction == DMA_TO_DEVICE);
215 int ret = DRIVER_ERROR << 24;
216
217 req = blk_get_request(sdev->request_queue, write, __GFP_WAIT);
218
219 if (bufflen && blk_rq_map_kern(sdev->request_queue, req,
220 buffer, bufflen, __GFP_WAIT))
221 goto out;
222
223 req->cmd_len = COMMAND_SIZE(cmd[0]);
224 memcpy(req->cmd, cmd, req->cmd_len);
225 req->sense = sense;
226 req->sense_len = 0;
17e01f21 227 req->retries = retries;
39216033 228 req->timeout = timeout;
4aff5e23
JA
229 req->cmd_type = REQ_TYPE_BLOCK_PC;
230 req->cmd_flags |= flags | REQ_QUIET | REQ_PREEMPT;
39216033
JB
231
232 /*
233 * head injection *required* here otherwise quiesce won't work
234 */
235 blk_execute_rq(req->q, NULL, req, 1);
236
bdb2b8ca
AS
237 /*
238 * Some devices (USB mass-storage in particular) may transfer
239 * garbage data together with a residue indicating that the data
240 * is invalid. Prevent the garbage from being misinterpreted
241 * and prevent security leaks by zeroing out the excess data.
242 */
243 if (unlikely(req->data_len > 0 && req->data_len <= bufflen))
244 memset(buffer + (bufflen - req->data_len), 0, req->data_len);
245
f4f4e47e
FT
246 if (resid)
247 *resid = req->data_len;
39216033
JB
248 ret = req->errors;
249 out:
250 blk_put_request(req);
251
252 return ret;
253}
33aa687d 254EXPORT_SYMBOL(scsi_execute);
39216033 255
ea73a9f2
JB
256
257int scsi_execute_req(struct scsi_device *sdev, const unsigned char *cmd,
258 int data_direction, void *buffer, unsigned bufflen,
f4f4e47e
FT
259 struct scsi_sense_hdr *sshdr, int timeout, int retries,
260 int *resid)
ea73a9f2
JB
261{
262 char *sense = NULL;
1ccb48bb 263 int result;
264
ea73a9f2 265 if (sshdr) {
24669f75 266 sense = kzalloc(SCSI_SENSE_BUFFERSIZE, GFP_NOIO);
ea73a9f2
JB
267 if (!sense)
268 return DRIVER_ERROR << 24;
ea73a9f2 269 }
1ccb48bb 270 result = scsi_execute(sdev, cmd, data_direction, buffer, bufflen,
f4f4e47e 271 sense, timeout, retries, 0, resid);
ea73a9f2 272 if (sshdr)
e514385b 273 scsi_normalize_sense(sense, SCSI_SENSE_BUFFERSIZE, sshdr);
ea73a9f2
JB
274
275 kfree(sense);
276 return result;
277}
278EXPORT_SYMBOL(scsi_execute_req);
279
6e68af66
MC
280struct scsi_io_context {
281 void *data;
282 void (*done)(void *data, char *sense, int result, int resid);
283 char sense[SCSI_SENSE_BUFFERSIZE];
284};
285
e18b890b 286static struct kmem_cache *scsi_io_context_cache;
aa7b5cd7 287
e650c305 288static void scsi_end_async(struct request *req, int uptodate)
6e68af66
MC
289{
290 struct scsi_io_context *sioc = req->end_io_data;
291
292 if (sioc->done)
293 sioc->done(sioc->data, sioc->sense, req->errors, req->data_len);
294
aa7b5cd7 295 kmem_cache_free(scsi_io_context_cache, sioc);
6e68af66
MC
296 __blk_put_request(req->q, req);
297}
298
299static int scsi_merge_bio(struct request *rq, struct bio *bio)
300{
301 struct request_queue *q = rq->q;
302
303 bio->bi_flags &= ~(1 << BIO_SEG_VALID);
304 if (rq_data_dir(rq) == WRITE)
305 bio->bi_rw |= (1 << BIO_RW);
306 blk_queue_bounce(q, &bio);
307
3001ca77 308 return blk_rq_append_bio(q, rq, bio);
6e68af66
MC
309}
310
6712ecf8 311static void scsi_bi_endio(struct bio *bio, int error)
6e68af66 312{
6e68af66 313 bio_put(bio);
6e68af66
MC
314}
315
316/**
317 * scsi_req_map_sg - map a scatterlist into a request
318 * @rq: request to fill
eb44820c 319 * @sgl: scatterlist
6e68af66
MC
320 * @nsegs: number of elements
321 * @bufflen: len of buffer
322 * @gfp: memory allocation flags
323 *
324 * scsi_req_map_sg maps a scatterlist into a request so that the
325 * request can be sent to the block layer. We do not trust the scatterlist
326 * sent to use, as some ULDs use that struct to only organize the pages.
327 */
328static int scsi_req_map_sg(struct request *rq, struct scatterlist *sgl,
329 int nsegs, unsigned bufflen, gfp_t gfp)
330{
331 struct request_queue *q = rq->q;
f5235962 332 int nr_pages = (bufflen + sgl[0].offset + PAGE_SIZE - 1) >> PAGE_SHIFT;
bd441dea 333 unsigned int data_len = bufflen, len, bytes, off;
c6132da1 334 struct scatterlist *sg;
6e68af66
MC
335 struct page *page;
336 struct bio *bio = NULL;
337 int i, err, nr_vecs = 0;
338
c6132da1 339 for_each_sg(sgl, sg, nsegs, i) {
45711f1a 340 page = sg_page(sg);
c6132da1
JA
341 off = sg->offset;
342 len = sg->length;
6e68af66 343
bd441dea
MC
344 while (len > 0 && data_len > 0) {
345 /*
346 * sg sends a scatterlist that is larger than
347 * the data_len it wants transferred for certain
348 * IO sizes
349 */
6e68af66 350 bytes = min_t(unsigned int, len, PAGE_SIZE - off);
bd441dea 351 bytes = min(bytes, data_len);
6e68af66
MC
352
353 if (!bio) {
354 nr_vecs = min_t(int, BIO_MAX_PAGES, nr_pages);
355 nr_pages -= nr_vecs;
356
357 bio = bio_alloc(gfp, nr_vecs);
358 if (!bio) {
359 err = -ENOMEM;
360 goto free_bios;
361 }
362 bio->bi_end_io = scsi_bi_endio;
363 }
364
365 if (bio_add_pc_page(q, bio, page, bytes, off) !=
366 bytes) {
367 bio_put(bio);
368 err = -EINVAL;
369 goto free_bios;
370 }
371
372 if (bio->bi_vcnt >= nr_vecs) {
373 err = scsi_merge_bio(rq, bio);
374 if (err) {
6712ecf8 375 bio_endio(bio, 0);
6e68af66
MC
376 goto free_bios;
377 }
378 bio = NULL;
379 }
380
381 page++;
382 len -= bytes;
bd441dea 383 data_len -=bytes;
6e68af66
MC
384 off = 0;
385 }
386 }
387
388 rq->buffer = rq->data = NULL;
bd441dea 389 rq->data_len = bufflen;
6e68af66
MC
390 return 0;
391
392free_bios:
393 while ((bio = rq->bio) != NULL) {
394 rq->bio = bio->bi_next;
395 /*
396 * call endio instead of bio_put incase it was bounced
397 */
6712ecf8 398 bio_endio(bio, 0);
6e68af66
MC
399 }
400
401 return err;
402}
403
404/**
405 * scsi_execute_async - insert request
406 * @sdev: scsi device
407 * @cmd: scsi command
bb1d1073 408 * @cmd_len: length of scsi cdb
eb44820c 409 * @data_direction: DMA_TO_DEVICE, DMA_FROM_DEVICE, or DMA_NONE
6e68af66
MC
410 * @buffer: data buffer (this can be a kernel buffer or scatterlist)
411 * @bufflen: len of buffer
412 * @use_sg: if buffer is a scatterlist this is the number of elements
413 * @timeout: request timeout in seconds
414 * @retries: number of times to retry request
eb44820c
RL
415 * @privdata: data passed to done()
416 * @done: callback function when done
417 * @gfp: memory allocation flags
418 */
6e68af66 419int scsi_execute_async(struct scsi_device *sdev, const unsigned char *cmd,
bb1d1073 420 int cmd_len, int data_direction, void *buffer, unsigned bufflen,
6e68af66
MC
421 int use_sg, int timeout, int retries, void *privdata,
422 void (*done)(void *, char *, int, int), gfp_t gfp)
423{
424 struct request *req;
425 struct scsi_io_context *sioc;
426 int err = 0;
427 int write = (data_direction == DMA_TO_DEVICE);
428
c3762229 429 sioc = kmem_cache_zalloc(scsi_io_context_cache, gfp);
6e68af66
MC
430 if (!sioc)
431 return DRIVER_ERROR << 24;
432
433 req = blk_get_request(sdev->request_queue, write, gfp);
434 if (!req)
435 goto free_sense;
4aff5e23
JA
436 req->cmd_type = REQ_TYPE_BLOCK_PC;
437 req->cmd_flags |= REQ_QUIET;
6e68af66
MC
438
439 if (use_sg)
440 err = scsi_req_map_sg(req, buffer, use_sg, bufflen, gfp);
441 else if (bufflen)
442 err = blk_rq_map_kern(req->q, req, buffer, bufflen, gfp);
443
444 if (err)
445 goto free_req;
446
bb1d1073 447 req->cmd_len = cmd_len;
097b8457 448 memset(req->cmd, 0, BLK_MAX_CDB); /* ATAPI hates garbage after CDB */
6e68af66
MC
449 memcpy(req->cmd, cmd, req->cmd_len);
450 req->sense = sioc->sense;
451 req->sense_len = 0;
452 req->timeout = timeout;
17e01f21 453 req->retries = retries;
6e68af66
MC
454 req->end_io_data = sioc;
455
456 sioc->data = privdata;
457 sioc->done = done;
458
459 blk_execute_rq_nowait(req->q, NULL, req, 1, scsi_end_async);
460 return 0;
461
462free_req:
463 blk_put_request(req);
464free_sense:
6470f2ba 465 kmem_cache_free(scsi_io_context_cache, sioc);
6e68af66
MC
466 return DRIVER_ERROR << 24;
467}
468EXPORT_SYMBOL_GPL(scsi_execute_async);
469
1da177e4
LT
470/*
471 * Function: scsi_init_cmd_errh()
472 *
473 * Purpose: Initialize cmd fields related to error handling.
474 *
475 * Arguments: cmd - command that is ready to be queued.
476 *
1da177e4
LT
477 * Notes: This function has the job of initializing a number of
478 * fields related to error handling. Typically this will
479 * be called once for each command, as required.
480 */
631c228c 481static void scsi_init_cmd_errh(struct scsi_cmnd *cmd)
1da177e4 482{
1da177e4 483 cmd->serial_number = 0;
30b0c37b 484 scsi_set_resid(cmd, 0);
b80ca4f7 485 memset(cmd->sense_buffer, 0, SCSI_SENSE_BUFFERSIZE);
1da177e4 486 if (cmd->cmd_len == 0)
db4742dd 487 cmd->cmd_len = scsi_command_size(cmd->cmnd);
1da177e4
LT
488}
489
490void scsi_device_unbusy(struct scsi_device *sdev)
491{
492 struct Scsi_Host *shost = sdev->host;
f0c0a376 493 struct scsi_target *starget = scsi_target(sdev);
1da177e4
LT
494 unsigned long flags;
495
496 spin_lock_irqsave(shost->host_lock, flags);
497 shost->host_busy--;
f0c0a376 498 starget->target_busy--;
939647ee 499 if (unlikely(scsi_host_in_recovery(shost) &&
ee7863bc 500 (shost->host_failed || shost->host_eh_scheduled)))
1da177e4
LT
501 scsi_eh_wakeup(shost);
502 spin_unlock(shost->host_lock);
152587de 503 spin_lock(sdev->request_queue->queue_lock);
1da177e4 504 sdev->device_busy--;
152587de 505 spin_unlock_irqrestore(sdev->request_queue->queue_lock, flags);
1da177e4
LT
506}
507
508/*
509 * Called for single_lun devices on IO completion. Clear starget_sdev_user,
510 * and call blk_run_queue for all the scsi_devices on the target -
511 * including current_sdev first.
512 *
513 * Called with *no* scsi locks held.
514 */
515static void scsi_single_lun_run(struct scsi_device *current_sdev)
516{
517 struct Scsi_Host *shost = current_sdev->host;
518 struct scsi_device *sdev, *tmp;
519 struct scsi_target *starget = scsi_target(current_sdev);
520 unsigned long flags;
521
522 spin_lock_irqsave(shost->host_lock, flags);
523 starget->starget_sdev_user = NULL;
524 spin_unlock_irqrestore(shost->host_lock, flags);
525
526 /*
527 * Call blk_run_queue for all LUNs on the target, starting with
528 * current_sdev. We race with others (to set starget_sdev_user),
529 * but in most cases, we will be first. Ideally, each LU on the
530 * target would get some limited time or requests on the target.
531 */
532 blk_run_queue(current_sdev->request_queue);
533
534 spin_lock_irqsave(shost->host_lock, flags);
535 if (starget->starget_sdev_user)
536 goto out;
537 list_for_each_entry_safe(sdev, tmp, &starget->devices,
538 same_target_siblings) {
539 if (sdev == current_sdev)
540 continue;
541 if (scsi_device_get(sdev))
542 continue;
543
544 spin_unlock_irqrestore(shost->host_lock, flags);
545 blk_run_queue(sdev->request_queue);
546 spin_lock_irqsave(shost->host_lock, flags);
547
548 scsi_device_put(sdev);
549 }
550 out:
551 spin_unlock_irqrestore(shost->host_lock, flags);
552}
553
9d112517
KU
554static inline int scsi_device_is_busy(struct scsi_device *sdev)
555{
556 if (sdev->device_busy >= sdev->queue_depth || sdev->device_blocked)
557 return 1;
558
559 return 0;
560}
561
f0c0a376
MC
562static inline int scsi_target_is_busy(struct scsi_target *starget)
563{
564 return ((starget->can_queue > 0 &&
565 starget->target_busy >= starget->can_queue) ||
566 starget->target_blocked);
567}
568
9d112517
KU
569static inline int scsi_host_is_busy(struct Scsi_Host *shost)
570{
571 if ((shost->can_queue > 0 && shost->host_busy >= shost->can_queue) ||
572 shost->host_blocked || shost->host_self_blocked)
573 return 1;
574
575 return 0;
576}
577
1da177e4
LT
578/*
579 * Function: scsi_run_queue()
580 *
581 * Purpose: Select a proper request queue to serve next
582 *
583 * Arguments: q - last request's queue
584 *
585 * Returns: Nothing
586 *
587 * Notes: The previous command was completely finished, start
588 * a new one if possible.
589 */
590static void scsi_run_queue(struct request_queue *q)
591{
2a3a59e5 592 struct scsi_device *sdev = q->queuedata;
1da177e4 593 struct Scsi_Host *shost = sdev->host;
2a3a59e5 594 LIST_HEAD(starved_list);
1da177e4
LT
595 unsigned long flags;
596
25d7c363 597 if (scsi_target(sdev)->single_lun)
1da177e4
LT
598 scsi_single_lun_run(sdev);
599
600 spin_lock_irqsave(shost->host_lock, flags);
2a3a59e5
MC
601 list_splice_init(&shost->starved_list, &starved_list);
602
603 while (!list_empty(&starved_list)) {
75ad23bc
NP
604 int flagset;
605
1da177e4
LT
606 /*
607 * As long as shost is accepting commands and we have
608 * starved queues, call blk_run_queue. scsi_request_fn
609 * drops the queue_lock and can add us back to the
610 * starved_list.
611 *
612 * host_lock protects the starved_list and starved_entry.
613 * scsi_request_fn must get the host_lock before checking
614 * or modifying starved_list or starved_entry.
615 */
2a3a59e5 616 if (scsi_host_is_busy(shost))
f0c0a376 617 break;
f0c0a376 618
2a3a59e5
MC
619 sdev = list_entry(starved_list.next,
620 struct scsi_device, starved_entry);
621 list_del_init(&sdev->starved_entry);
f0c0a376
MC
622 if (scsi_target_is_busy(scsi_target(sdev))) {
623 list_move_tail(&sdev->starved_entry,
624 &shost->starved_list);
625 continue;
626 }
627
75ad23bc
NP
628 spin_unlock(shost->host_lock);
629
630 spin_lock(sdev->request_queue->queue_lock);
631 flagset = test_bit(QUEUE_FLAG_REENTER, &q->queue_flags) &&
632 !test_bit(QUEUE_FLAG_REENTER,
633 &sdev->request_queue->queue_flags);
634 if (flagset)
635 queue_flag_set(QUEUE_FLAG_REENTER, sdev->request_queue);
636 __blk_run_queue(sdev->request_queue);
637 if (flagset)
638 queue_flag_clear(QUEUE_FLAG_REENTER, sdev->request_queue);
639 spin_unlock(sdev->request_queue->queue_lock);
04846f25 640
75ad23bc 641 spin_lock(shost->host_lock);
1da177e4 642 }
2a3a59e5
MC
643 /* put any unprocessed entries back */
644 list_splice(&starved_list, &shost->starved_list);
1da177e4
LT
645 spin_unlock_irqrestore(shost->host_lock, flags);
646
647 blk_run_queue(q);
648}
649
650/*
651 * Function: scsi_requeue_command()
652 *
653 * Purpose: Handle post-processing of completed commands.
654 *
655 * Arguments: q - queue to operate on
656 * cmd - command that may need to be requeued.
657 *
658 * Returns: Nothing
659 *
660 * Notes: After command completion, there may be blocks left
661 * over which weren't finished by the previous command
662 * this can be for a number of reasons - the main one is
663 * I/O errors in the middle of the request, in which case
664 * we need to request the blocks that come after the bad
665 * sector.
e91442b6 666 * Notes: Upon return, cmd is a stale pointer.
1da177e4
LT
667 */
668static void scsi_requeue_command(struct request_queue *q, struct scsi_cmnd *cmd)
669{
e91442b6 670 struct request *req = cmd->request;
283369cc
TH
671 unsigned long flags;
672
283369cc 673 spin_lock_irqsave(q->queue_lock, flags);
02bd3499 674 scsi_unprep_request(req);
e91442b6 675 blk_requeue_request(q, req);
283369cc 676 spin_unlock_irqrestore(q->queue_lock, flags);
1da177e4
LT
677
678 scsi_run_queue(q);
679}
680
681void scsi_next_command(struct scsi_cmnd *cmd)
682{
49d7bc64
LT
683 struct scsi_device *sdev = cmd->device;
684 struct request_queue *q = sdev->request_queue;
685
686 /* need to hold a reference on the device before we let go of the cmd */
687 get_device(&sdev->sdev_gendev);
1da177e4
LT
688
689 scsi_put_command(cmd);
690 scsi_run_queue(q);
49d7bc64
LT
691
692 /* ok to remove device now */
693 put_device(&sdev->sdev_gendev);
1da177e4
LT
694}
695
696void scsi_run_host_queues(struct Scsi_Host *shost)
697{
698 struct scsi_device *sdev;
699
700 shost_for_each_device(sdev, shost)
701 scsi_run_queue(sdev->request_queue);
702}
703
704/*
705 * Function: scsi_end_request()
706 *
707 * Purpose: Post-processing of completed commands (usually invoked at end
708 * of upper level post-processing and scsi_io_completion).
709 *
710 * Arguments: cmd - command that is complete.
610d8b0c 711 * error - 0 if I/O indicates success, < 0 for I/O error.
1da177e4
LT
712 * bytes - number of bytes of completed I/O
713 * requeue - indicates whether we should requeue leftovers.
714 *
715 * Lock status: Assumed that lock is not held upon entry.
716 *
e91442b6 717 * Returns: cmd if requeue required, NULL otherwise.
1da177e4
LT
718 *
719 * Notes: This is called for block device requests in order to
720 * mark some number of sectors as complete.
721 *
722 * We are guaranteeing that the request queue will be goosed
723 * at some point during this call.
e91442b6 724 * Notes: If cmd was requeued, upon return it will be a stale pointer.
1da177e4 725 */
610d8b0c 726static struct scsi_cmnd *scsi_end_request(struct scsi_cmnd *cmd, int error,
1da177e4
LT
727 int bytes, int requeue)
728{
165125e1 729 struct request_queue *q = cmd->device->request_queue;
1da177e4 730 struct request *req = cmd->request;
1da177e4
LT
731
732 /*
733 * If there are blocks left over at the end, set up the command
734 * to queue the remainder of them.
735 */
610d8b0c 736 if (blk_end_request(req, error, bytes)) {
1da177e4
LT
737 int leftover = (req->hard_nr_sectors << 9);
738
739 if (blk_pc_request(req))
740 leftover = req->data_len;
741
742 /* kill remainder if no retrys */
4a27446f 743 if (error && scsi_noretry_cmd(cmd))
610d8b0c 744 blk_end_request(req, error, leftover);
1da177e4 745 else {
e91442b6 746 if (requeue) {
1da177e4
LT
747 /*
748 * Bleah. Leftovers again. Stick the
749 * leftovers in the front of the
750 * queue, and goose the queue again.
751 */
752 scsi_requeue_command(q, cmd);
e91442b6
JB
753 cmd = NULL;
754 }
1da177e4
LT
755 return cmd;
756 }
757 }
758
1da177e4
LT
759 /*
760 * This will goose the queue request function at the end, so we don't
761 * need to worry about launching another command.
762 */
763 scsi_next_command(cmd);
764 return NULL;
765}
766
a8474ce2
JA
767static inline unsigned int scsi_sgtable_index(unsigned short nents)
768{
769 unsigned int index;
770
d3f46f39
JB
771 BUG_ON(nents > SCSI_MAX_SG_SEGMENTS);
772
773 if (nents <= 8)
a8474ce2 774 index = 0;
d3f46f39
JB
775 else
776 index = get_count_order(nents) - 3;
1da177e4 777
a8474ce2
JA
778 return index;
779}
780
5ed7959e 781static void scsi_sg_free(struct scatterlist *sgl, unsigned int nents)
a8474ce2
JA
782{
783 struct scsi_host_sg_pool *sgp;
a8474ce2 784
5ed7959e
JA
785 sgp = scsi_sg_pools + scsi_sgtable_index(nents);
786 mempool_free(sgl, sgp->pool);
787}
a8474ce2 788
5ed7959e
JA
789static struct scatterlist *scsi_sg_alloc(unsigned int nents, gfp_t gfp_mask)
790{
791 struct scsi_host_sg_pool *sgp;
a8474ce2 792
5ed7959e
JA
793 sgp = scsi_sg_pools + scsi_sgtable_index(nents);
794 return mempool_alloc(sgp->pool, gfp_mask);
795}
a3bec5c5 796
30b0c37b
BH
797static int scsi_alloc_sgtable(struct scsi_data_buffer *sdb, int nents,
798 gfp_t gfp_mask)
5ed7959e
JA
799{
800 int ret;
a8474ce2 801
30b0c37b 802 BUG_ON(!nents);
a8474ce2 803
30b0c37b
BH
804 ret = __sg_alloc_table(&sdb->table, nents, SCSI_MAX_SG_SEGMENTS,
805 gfp_mask, scsi_sg_alloc);
5ed7959e 806 if (unlikely(ret))
30b0c37b 807 __sg_free_table(&sdb->table, SCSI_MAX_SG_SEGMENTS,
7cedb1f1 808 scsi_sg_free);
45711f1a 809
a8474ce2 810 return ret;
1da177e4
LT
811}
812
30b0c37b 813static void scsi_free_sgtable(struct scsi_data_buffer *sdb)
1da177e4 814{
30b0c37b 815 __sg_free_table(&sdb->table, SCSI_MAX_SG_SEGMENTS, scsi_sg_free);
1da177e4
LT
816}
817
818/*
819 * Function: scsi_release_buffers()
820 *
821 * Purpose: Completion processing for block device I/O requests.
822 *
823 * Arguments: cmd - command that we are bailing.
824 *
825 * Lock status: Assumed that no lock is held upon entry.
826 *
827 * Returns: Nothing
828 *
829 * Notes: In the event that an upper level driver rejects a
830 * command, we must release resources allocated during
831 * the __init_io() function. Primarily this would involve
832 * the scatter-gather table, and potentially any bounce
833 * buffers.
834 */
bb52d82f 835void scsi_release_buffers(struct scsi_cmnd *cmd)
1da177e4 836{
30b0c37b
BH
837 if (cmd->sdb.table.nents)
838 scsi_free_sgtable(&cmd->sdb);
1da177e4 839
30b0c37b 840 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
6f9a35e2
BH
841
842 if (scsi_bidi_cmnd(cmd)) {
843 struct scsi_data_buffer *bidi_sdb =
844 cmd->request->next_rq->special;
845 scsi_free_sgtable(bidi_sdb);
6362abd3 846 kmem_cache_free(scsi_sdb_cache, bidi_sdb);
6f9a35e2
BH
847 cmd->request->next_rq->special = NULL;
848 }
7027ad72
MP
849
850 if (scsi_prot_sg_count(cmd))
851 scsi_free_sgtable(cmd->prot_sdb);
1da177e4 852}
bb52d82f 853EXPORT_SYMBOL(scsi_release_buffers);
1da177e4 854
6f9a35e2
BH
855/*
856 * Bidi commands Must be complete as a whole, both sides at once.
857 * If part of the bytes were written and lld returned
858 * scsi_in()->resid and/or scsi_out()->resid this information will be left
859 * in req->data_len and req->next_rq->data_len. The upper-layer driver can
860 * decide what to do with this information.
861 */
8c5e03d3 862static void scsi_end_bidi_request(struct scsi_cmnd *cmd)
6f9a35e2 863{
b8de1631
KU
864 struct request *req = cmd->request;
865 unsigned int dlen = req->data_len;
866 unsigned int next_dlen = req->next_rq->data_len;
867
868 req->data_len = scsi_out(cmd)->resid;
869 req->next_rq->data_len = scsi_in(cmd)->resid;
870
871 /* The req and req->next_rq have not been completed */
872 BUG_ON(blk_end_bidi_request(req, 0, dlen, next_dlen));
873
6f9a35e2
BH
874 scsi_release_buffers(cmd);
875
876 /*
877 * This will goose the queue request function at the end, so we don't
878 * need to worry about launching another command.
879 */
880 scsi_next_command(cmd);
881}
882
1da177e4
LT
883/*
884 * Function: scsi_io_completion()
885 *
886 * Purpose: Completion processing for block device I/O requests.
887 *
888 * Arguments: cmd - command that is finished.
889 *
890 * Lock status: Assumed that no lock is held upon entry.
891 *
892 * Returns: Nothing
893 *
894 * Notes: This function is matched in terms of capabilities to
895 * the function that created the scatter-gather list.
896 * In other words, if there are no bounce buffers
897 * (the normal case for most drivers), we don't need
898 * the logic to deal with cleaning up afterwards.
899 *
b60af5b0
AS
900 * We must call scsi_end_request(). This will finish off
901 * the specified number of sectors. If we are done, the
902 * command block will be released and the queue function
903 * will be goosed. If we are not done then we have to
904 * figure out what to do next:
1da177e4 905 *
b60af5b0
AS
906 * a) We can call scsi_requeue_command(). The request
907 * will be unprepared and put back on the queue. Then
908 * a new command will be created for it. This should
909 * be used if we made forward progress, or if we want
910 * to switch from READ(10) to READ(6) for example.
1da177e4 911 *
b60af5b0
AS
912 * b) We can call scsi_queue_insert(). The request will
913 * be put back on the queue and retried using the same
914 * command as before, possibly after a delay.
915 *
916 * c) We can call blk_end_request() with -EIO to fail
917 * the remainder of the request.
1da177e4 918 */
03aba2f7 919void scsi_io_completion(struct scsi_cmnd *cmd, unsigned int good_bytes)
1da177e4
LT
920{
921 int result = cmd->result;
44ea91c5 922 int this_count;
165125e1 923 struct request_queue *q = cmd->device->request_queue;
1da177e4 924 struct request *req = cmd->request;
fa8e36c3 925 int error = 0;
1da177e4
LT
926 struct scsi_sense_hdr sshdr;
927 int sense_valid = 0;
928 int sense_deferred = 0;
b60af5b0
AS
929 enum {ACTION_FAIL, ACTION_REPREP, ACTION_RETRY,
930 ACTION_DELAYED_RETRY} action;
931 char *description = NULL;
1da177e4 932
1da177e4
LT
933 if (result) {
934 sense_valid = scsi_command_normalize_sense(cmd, &sshdr);
935 if (sense_valid)
936 sense_deferred = scsi_sense_is_deferred(&sshdr);
937 }
631c228c 938
1da177e4
LT
939 if (blk_pc_request(req)) { /* SG_IO ioctl from block level */
940 req->errors = result;
941 if (result) {
1da177e4
LT
942 if (sense_valid && req->sense) {
943 /*
944 * SG_IO wants current and deferred errors
945 */
946 int len = 8 + cmd->sense_buffer[7];
947
948 if (len > SCSI_SENSE_BUFFERSIZE)
949 len = SCSI_SENSE_BUFFERSIZE;
950 memcpy(req->sense, cmd->sense_buffer, len);
951 req->sense_len = len;
952 }
fa8e36c3
JB
953 if (!sense_deferred)
954 error = -EIO;
b22f687d 955 }
6f9a35e2
BH
956 if (scsi_bidi_cmnd(cmd)) {
957 /* will also release_buffers */
958 scsi_end_bidi_request(cmd);
959 return;
960 }
30b0c37b 961 req->data_len = scsi_get_resid(cmd);
1da177e4
LT
962 }
963
6f9a35e2 964 BUG_ON(blk_bidi_rq(req)); /* bidi not support for !blk_pc_request yet */
30b0c37b
BH
965 scsi_release_buffers(cmd);
966
1da177e4
LT
967 /*
968 * Next deal with any sectors which we were able to correctly
969 * handle.
970 */
d6b0c537
JB
971 SCSI_LOG_HLCOMPLETE(1, printk("%ld sectors total, "
972 "%d bytes done.\n",
973 req->nr_sectors, good_bytes));
d6b0c537 974
d6b0c537
JB
975 /* A number of bytes were successfully read. If there
976 * are leftovers and there is some kind of error
977 * (result != 0), retry the rest.
978 */
fa8e36c3 979 if (scsi_end_request(cmd, error, good_bytes, result == 0) == NULL)
d6b0c537 980 return;
44ea91c5 981 this_count = blk_rq_bytes(req);
03aba2f7 982
3e695f89
MP
983 error = -EIO;
984
b60af5b0
AS
985 if (host_byte(result) == DID_RESET) {
986 /* Third party bus reset or reset for error recovery
987 * reasons. Just retry the command and see what
988 * happens.
989 */
990 action = ACTION_RETRY;
991 } else if (sense_valid && !sense_deferred) {
1da177e4
LT
992 switch (sshdr.sense_key) {
993 case UNIT_ATTENTION:
994 if (cmd->device->removable) {
03aba2f7 995 /* Detected disc change. Set a bit
1da177e4
LT
996 * and quietly refuse further access.
997 */
998 cmd->device->changed = 1;
b60af5b0
AS
999 description = "Media Changed";
1000 action = ACTION_FAIL;
1da177e4 1001 } else {
03aba2f7
LT
1002 /* Must have been a power glitch, or a
1003 * bus reset. Could not have been a
1004 * media change, so we just retry the
b60af5b0 1005 * command and see what happens.
03aba2f7 1006 */
b60af5b0 1007 action = ACTION_RETRY;
1da177e4
LT
1008 }
1009 break;
1010 case ILLEGAL_REQUEST:
03aba2f7
LT
1011 /* If we had an ILLEGAL REQUEST returned, then
1012 * we may have performed an unsupported
1013 * command. The only thing this should be
1014 * would be a ten byte read where only a six
1015 * byte read was supported. Also, on a system
1016 * where READ CAPACITY failed, we may have
1017 * read past the end of the disk.
1018 */
26a68019
JA
1019 if ((cmd->device->use_10_for_rw &&
1020 sshdr.asc == 0x20 && sshdr.ascq == 0x00) &&
1da177e4
LT
1021 (cmd->cmnd[0] == READ_10 ||
1022 cmd->cmnd[0] == WRITE_10)) {
b60af5b0 1023 /* This will issue a new 6-byte command. */
1da177e4 1024 cmd->device->use_10_for_rw = 0;
b60af5b0 1025 action = ACTION_REPREP;
3e695f89
MP
1026 } else if (sshdr.asc == 0x10) /* DIX */ {
1027 description = "Host Data Integrity Failure";
1028 action = ACTION_FAIL;
1029 error = -EILSEQ;
b60af5b0
AS
1030 } else
1031 action = ACTION_FAIL;
1032 break;
511e44f4
MP
1033 case ABORTED_COMMAND:
1034 if (sshdr.asc == 0x10) { /* DIF */
3e695f89 1035 description = "Target Data Integrity Failure";
b60af5b0 1036 action = ACTION_FAIL;
3e695f89 1037 error = -EILSEQ;
b60af5b0
AS
1038 } else
1039 action = ACTION_RETRY;
1da177e4
LT
1040 break;
1041 case NOT_READY:
03aba2f7 1042 /* If the device is in the process of becoming
f3e93f73 1043 * ready, or has a temporary blockage, retry.
1da177e4 1044 */
f3e93f73
JB
1045 if (sshdr.asc == 0x04) {
1046 switch (sshdr.ascq) {
1047 case 0x01: /* becoming ready */
1048 case 0x04: /* format in progress */
1049 case 0x05: /* rebuild in progress */
1050 case 0x06: /* recalculation in progress */
1051 case 0x07: /* operation in progress */
1052 case 0x08: /* Long write in progress */
1053 case 0x09: /* self test in progress */
b60af5b0 1054 action = ACTION_DELAYED_RETRY;
f3e93f73 1055 break;
3dbf6a54
AS
1056 default:
1057 description = "Device not ready";
1058 action = ACTION_FAIL;
1059 break;
f3e93f73 1060 }
b60af5b0
AS
1061 } else {
1062 description = "Device not ready";
1063 action = ACTION_FAIL;
1da177e4 1064 }
b60af5b0 1065 break;
1da177e4 1066 case VOLUME_OVERFLOW:
03aba2f7 1067 /* See SSC3rXX or current. */
b60af5b0
AS
1068 action = ACTION_FAIL;
1069 break;
1da177e4 1070 default:
b60af5b0
AS
1071 description = "Unhandled sense code";
1072 action = ACTION_FAIL;
1da177e4
LT
1073 break;
1074 }
b60af5b0
AS
1075 } else {
1076 description = "Unhandled error code";
1077 action = ACTION_FAIL;
03aba2f7 1078 }
b60af5b0
AS
1079
1080 switch (action) {
1081 case ACTION_FAIL:
1082 /* Give up and fail the remainder of the request */
4aff5e23 1083 if (!(req->cmd_flags & REQ_QUIET)) {
b60af5b0 1084 if (description)
3dbf6a54 1085 scmd_printk(KERN_INFO, cmd, "%s\n",
b60af5b0 1086 description);
a4d04a4c 1087 scsi_print_result(cmd);
3173d8c3
JB
1088 if (driver_byte(result) & DRIVER_SENSE)
1089 scsi_print_sense("", cmd);
1090 }
b60af5b0
AS
1091 blk_end_request(req, -EIO, blk_rq_bytes(req));
1092 scsi_next_command(cmd);
1093 break;
1094 case ACTION_REPREP:
1095 /* Unprep the request and put it back at the head of the queue.
1096 * A new command will be prepared and issued.
1097 */
1098 scsi_requeue_command(q, cmd);
1099 break;
1100 case ACTION_RETRY:
1101 /* Retry the same command immediately */
4f5299ac 1102 __scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY, 0);
b60af5b0
AS
1103 break;
1104 case ACTION_DELAYED_RETRY:
1105 /* Retry the same command after a delay */
4f5299ac 1106 __scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY, 0);
b60af5b0 1107 break;
1da177e4
LT
1108 }
1109}
1da177e4 1110
6f9a35e2
BH
1111static int scsi_init_sgtable(struct request *req, struct scsi_data_buffer *sdb,
1112 gfp_t gfp_mask)
1da177e4 1113{
6f9a35e2 1114 int count;
1da177e4
LT
1115
1116 /*
3b003157 1117 * If sg table allocation fails, requeue request later.
1da177e4 1118 */
30b0c37b
BH
1119 if (unlikely(scsi_alloc_sgtable(sdb, req->nr_phys_segments,
1120 gfp_mask))) {
1da177e4 1121 return BLKPREP_DEFER;
7c72ce81 1122 }
1da177e4 1123
3b003157 1124 req->buffer = NULL;
1da177e4
LT
1125
1126 /*
1127 * Next, walk the list, and fill in the addresses and sizes of
1128 * each segment.
1129 */
30b0c37b
BH
1130 count = blk_rq_map_sg(req->q, req, sdb->table.sgl);
1131 BUG_ON(count > sdb->table.nents);
1132 sdb->table.nents = count;
6b00769f
TH
1133 if (blk_pc_request(req))
1134 sdb->length = req->data_len;
1135 else
1136 sdb->length = req->nr_sectors << 9;
4a03d90e 1137 return BLKPREP_OK;
1da177e4 1138}
6f9a35e2
BH
1139
1140/*
1141 * Function: scsi_init_io()
1142 *
1143 * Purpose: SCSI I/O initialize function.
1144 *
1145 * Arguments: cmd - Command descriptor we wish to initialize
1146 *
1147 * Returns: 0 on success
1148 * BLKPREP_DEFER if the failure is retryable
1149 * BLKPREP_KILL if the failure is fatal
1150 */
1151int scsi_init_io(struct scsi_cmnd *cmd, gfp_t gfp_mask)
1152{
1153 int error = scsi_init_sgtable(cmd->request, &cmd->sdb, gfp_mask);
1154 if (error)
1155 goto err_exit;
1156
1157 if (blk_bidi_rq(cmd->request)) {
1158 struct scsi_data_buffer *bidi_sdb = kmem_cache_zalloc(
6362abd3 1159 scsi_sdb_cache, GFP_ATOMIC);
6f9a35e2
BH
1160 if (!bidi_sdb) {
1161 error = BLKPREP_DEFER;
1162 goto err_exit;
1163 }
1164
1165 cmd->request->next_rq->special = bidi_sdb;
1166 error = scsi_init_sgtable(cmd->request->next_rq, bidi_sdb,
1167 GFP_ATOMIC);
1168 if (error)
1169 goto err_exit;
1170 }
1171
7027ad72
MP
1172 if (blk_integrity_rq(cmd->request)) {
1173 struct scsi_data_buffer *prot_sdb = cmd->prot_sdb;
1174 int ivecs, count;
1175
1176 BUG_ON(prot_sdb == NULL);
1177 ivecs = blk_rq_count_integrity_sg(cmd->request);
1178
1179 if (scsi_alloc_sgtable(prot_sdb, ivecs, gfp_mask)) {
1180 error = BLKPREP_DEFER;
1181 goto err_exit;
1182 }
1183
1184 count = blk_rq_map_integrity_sg(cmd->request,
1185 prot_sdb->table.sgl);
1186 BUG_ON(unlikely(count > ivecs));
1187
1188 cmd->prot_sdb = prot_sdb;
1189 cmd->prot_sdb->table.nents = count;
1190 }
1191
6f9a35e2
BH
1192 return BLKPREP_OK ;
1193
1194err_exit:
1195 scsi_release_buffers(cmd);
1196 if (error == BLKPREP_KILL)
1197 scsi_put_command(cmd);
1198 else /* BLKPREP_DEFER */
1199 scsi_unprep_request(cmd->request);
1200
1201 return error;
1202}
bb52d82f 1203EXPORT_SYMBOL(scsi_init_io);
1da177e4 1204
3b003157
CH
1205static struct scsi_cmnd *scsi_get_cmd_from_req(struct scsi_device *sdev,
1206 struct request *req)
1207{
1208 struct scsi_cmnd *cmd;
1209
1210 if (!req->special) {
1211 cmd = scsi_get_command(sdev, GFP_ATOMIC);
1212 if (unlikely(!cmd))
1213 return NULL;
1214 req->special = cmd;
1215 } else {
1216 cmd = req->special;
1217 }
1218
1219 /* pull a tag out of the request if we have one */
1220 cmd->tag = req->tag;
1221 cmd->request = req;
1222
64a87b24
BH
1223 cmd->cmnd = req->cmd;
1224
3b003157
CH
1225 return cmd;
1226}
1227
7f9a6bc4 1228int scsi_setup_blk_pc_cmnd(struct scsi_device *sdev, struct request *req)
7b16318d 1229{
3b003157 1230 struct scsi_cmnd *cmd;
7f9a6bc4
JB
1231 int ret = scsi_prep_state_check(sdev, req);
1232
1233 if (ret != BLKPREP_OK)
1234 return ret;
3b003157
CH
1235
1236 cmd = scsi_get_cmd_from_req(sdev, req);
1237 if (unlikely(!cmd))
1238 return BLKPREP_DEFER;
1239
1240 /*
1241 * BLOCK_PC requests may transfer data, in which case they must
1242 * a bio attached to them. Or they might contain a SCSI command
1243 * that does not transfer data, in which case they may optionally
1244 * submit a request without an attached bio.
1245 */
1246 if (req->bio) {
1247 int ret;
1248
1249 BUG_ON(!req->nr_phys_segments);
1250
bb52d82f 1251 ret = scsi_init_io(cmd, GFP_ATOMIC);
3b003157
CH
1252 if (unlikely(ret))
1253 return ret;
1254 } else {
1255 BUG_ON(req->data_len);
1256 BUG_ON(req->data);
1257
30b0c37b 1258 memset(&cmd->sdb, 0, sizeof(cmd->sdb));
3b003157
CH
1259 req->buffer = NULL;
1260 }
7b16318d 1261
7b16318d
JB
1262 cmd->cmd_len = req->cmd_len;
1263 if (!req->data_len)
1264 cmd->sc_data_direction = DMA_NONE;
1265 else if (rq_data_dir(req) == WRITE)
1266 cmd->sc_data_direction = DMA_TO_DEVICE;
1267 else
1268 cmd->sc_data_direction = DMA_FROM_DEVICE;
1269
1270 cmd->transfersize = req->data_len;
1271 cmd->allowed = req->retries;
3b003157 1272 return BLKPREP_OK;
7b16318d 1273}
7f9a6bc4 1274EXPORT_SYMBOL(scsi_setup_blk_pc_cmnd);
7b16318d 1275
3b003157
CH
1276/*
1277 * Setup a REQ_TYPE_FS command. These are simple read/write request
1278 * from filesystems that still need to be translated to SCSI CDBs from
1279 * the ULD.
1280 */
7f9a6bc4 1281int scsi_setup_fs_cmnd(struct scsi_device *sdev, struct request *req)
1da177e4 1282{
1da177e4 1283 struct scsi_cmnd *cmd;
7f9a6bc4 1284 int ret = scsi_prep_state_check(sdev, req);
1da177e4 1285
7f9a6bc4
JB
1286 if (ret != BLKPREP_OK)
1287 return ret;
a6a8d9f8
CS
1288
1289 if (unlikely(sdev->scsi_dh_data && sdev->scsi_dh_data->scsi_dh
1290 && sdev->scsi_dh_data->scsi_dh->prep_fn)) {
1291 ret = sdev->scsi_dh_data->scsi_dh->prep_fn(sdev, req);
1292 if (ret != BLKPREP_OK)
1293 return ret;
1294 }
1295
1da177e4 1296 /*
3b003157 1297 * Filesystem requests must transfer data.
1da177e4 1298 */
3b003157
CH
1299 BUG_ON(!req->nr_phys_segments);
1300
1301 cmd = scsi_get_cmd_from_req(sdev, req);
1302 if (unlikely(!cmd))
1303 return BLKPREP_DEFER;
1304
64a87b24 1305 memset(cmd->cmnd, 0, BLK_MAX_CDB);
bb52d82f 1306 return scsi_init_io(cmd, GFP_ATOMIC);
3b003157 1307}
7f9a6bc4 1308EXPORT_SYMBOL(scsi_setup_fs_cmnd);
3b003157 1309
7f9a6bc4 1310int scsi_prep_state_check(struct scsi_device *sdev, struct request *req)
3b003157 1311{
3b003157
CH
1312 int ret = BLKPREP_OK;
1313
1da177e4 1314 /*
3b003157
CH
1315 * If the device is not in running state we will reject some
1316 * or all commands.
1da177e4 1317 */
3b003157
CH
1318 if (unlikely(sdev->sdev_state != SDEV_RUNNING)) {
1319 switch (sdev->sdev_state) {
1320 case SDEV_OFFLINE:
1321 /*
1322 * If the device is offline we refuse to process any
1323 * commands. The device must be brought online
1324 * before trying any recovery commands.
1325 */
1326 sdev_printk(KERN_ERR, sdev,
1327 "rejecting I/O to offline device\n");
1328 ret = BLKPREP_KILL;
1329 break;
1330 case SDEV_DEL:
1331 /*
1332 * If the device is fully deleted, we refuse to
1333 * process any commands as well.
1334 */
9ccfc756 1335 sdev_printk(KERN_ERR, sdev,
3b003157
CH
1336 "rejecting I/O to dead device\n");
1337 ret = BLKPREP_KILL;
1338 break;
1339 case SDEV_QUIESCE:
1340 case SDEV_BLOCK:
6f4267e3 1341 case SDEV_CREATED_BLOCK:
3b003157
CH
1342 /*
1343 * If the devices is blocked we defer normal commands.
1344 */
1345 if (!(req->cmd_flags & REQ_PREEMPT))
1346 ret = BLKPREP_DEFER;
1347 break;
1348 default:
1349 /*
1350 * For any other not fully online state we only allow
1351 * special commands. In particular any user initiated
1352 * command is not allowed.
1353 */
1354 if (!(req->cmd_flags & REQ_PREEMPT))
1355 ret = BLKPREP_KILL;
1356 break;
1da177e4 1357 }
1da177e4 1358 }
7f9a6bc4
JB
1359 return ret;
1360}
1361EXPORT_SYMBOL(scsi_prep_state_check);
1da177e4 1362
7f9a6bc4
JB
1363int scsi_prep_return(struct request_queue *q, struct request *req, int ret)
1364{
1365 struct scsi_device *sdev = q->queuedata;
1da177e4 1366
3b003157
CH
1367 switch (ret) {
1368 case BLKPREP_KILL:
1369 req->errors = DID_NO_CONNECT << 16;
7f9a6bc4
JB
1370 /* release the command and kill it */
1371 if (req->special) {
1372 struct scsi_cmnd *cmd = req->special;
1373 scsi_release_buffers(cmd);
1374 scsi_put_command(cmd);
1375 req->special = NULL;
1376 }
3b003157
CH
1377 break;
1378 case BLKPREP_DEFER:
1da177e4 1379 /*
3b003157
CH
1380 * If we defer, the elv_next_request() returns NULL, but the
1381 * queue must be restarted, so we plug here if no returning
1382 * command will automatically do that.
1da177e4 1383 */
3b003157
CH
1384 if (sdev->device_busy == 0)
1385 blk_plug_device(q);
1386 break;
1387 default:
1388 req->cmd_flags |= REQ_DONTPREP;
1da177e4
LT
1389 }
1390
3b003157 1391 return ret;
1da177e4 1392}
7f9a6bc4
JB
1393EXPORT_SYMBOL(scsi_prep_return);
1394
751bf4d7 1395int scsi_prep_fn(struct request_queue *q, struct request *req)
7f9a6bc4
JB
1396{
1397 struct scsi_device *sdev = q->queuedata;
1398 int ret = BLKPREP_KILL;
1399
1400 if (req->cmd_type == REQ_TYPE_BLOCK_PC)
1401 ret = scsi_setup_blk_pc_cmnd(sdev, req);
1402 return scsi_prep_return(q, req, ret);
1403}
1da177e4
LT
1404
1405/*
1406 * scsi_dev_queue_ready: if we can send requests to sdev, return 1 else
1407 * return 0.
1408 *
1409 * Called with the queue_lock held.
1410 */
1411static inline int scsi_dev_queue_ready(struct request_queue *q,
1412 struct scsi_device *sdev)
1413{
1da177e4
LT
1414 if (sdev->device_busy == 0 && sdev->device_blocked) {
1415 /*
1416 * unblock after device_blocked iterates to zero
1417 */
1418 if (--sdev->device_blocked == 0) {
1419 SCSI_LOG_MLQUEUE(3,
9ccfc756
JB
1420 sdev_printk(KERN_INFO, sdev,
1421 "unblocking device at zero depth\n"));
1da177e4
LT
1422 } else {
1423 blk_plug_device(q);
1424 return 0;
1425 }
1426 }
9d112517 1427 if (scsi_device_is_busy(sdev))
1da177e4
LT
1428 return 0;
1429
1430 return 1;
1431}
1432
f0c0a376
MC
1433
1434/*
1435 * scsi_target_queue_ready: checks if there we can send commands to target
1436 * @sdev: scsi device on starget to check.
1437 *
1438 * Called with the host lock held.
1439 */
1440static inline int scsi_target_queue_ready(struct Scsi_Host *shost,
1441 struct scsi_device *sdev)
1442{
1443 struct scsi_target *starget = scsi_target(sdev);
1444
1445 if (starget->single_lun) {
1446 if (starget->starget_sdev_user &&
1447 starget->starget_sdev_user != sdev)
1448 return 0;
1449 starget->starget_sdev_user = sdev;
1450 }
1451
1452 if (starget->target_busy == 0 && starget->target_blocked) {
1453 /*
1454 * unblock after target_blocked iterates to zero
1455 */
1456 if (--starget->target_blocked == 0) {
1457 SCSI_LOG_MLQUEUE(3, starget_printk(KERN_INFO, starget,
1458 "unblocking target at zero depth\n"));
1459 } else {
1460 blk_plug_device(sdev->request_queue);
1461 return 0;
1462 }
1463 }
1464
1465 if (scsi_target_is_busy(starget)) {
1466 if (list_empty(&sdev->starved_entry)) {
1467 list_add_tail(&sdev->starved_entry,
1468 &shost->starved_list);
1469 return 0;
1470 }
1471 }
1472
1473 /* We're OK to process the command, so we can't be starved */
1474 if (!list_empty(&sdev->starved_entry))
1475 list_del_init(&sdev->starved_entry);
1476 return 1;
1477}
1478
1da177e4
LT
1479/*
1480 * scsi_host_queue_ready: if we can send requests to shost, return 1 else
1481 * return 0. We must end up running the queue again whenever 0 is
1482 * returned, else IO can hang.
1483 *
1484 * Called with host_lock held.
1485 */
1486static inline int scsi_host_queue_ready(struct request_queue *q,
1487 struct Scsi_Host *shost,
1488 struct scsi_device *sdev)
1489{
939647ee 1490 if (scsi_host_in_recovery(shost))
1da177e4
LT
1491 return 0;
1492 if (shost->host_busy == 0 && shost->host_blocked) {
1493 /*
1494 * unblock after host_blocked iterates to zero
1495 */
1496 if (--shost->host_blocked == 0) {
1497 SCSI_LOG_MLQUEUE(3,
1498 printk("scsi%d unblocking host at zero depth\n",
1499 shost->host_no));
1500 } else {
1da177e4
LT
1501 return 0;
1502 }
1503 }
9d112517 1504 if (scsi_host_is_busy(shost)) {
1da177e4
LT
1505 if (list_empty(&sdev->starved_entry))
1506 list_add_tail(&sdev->starved_entry, &shost->starved_list);
1507 return 0;
1508 }
1509
1510 /* We're OK to process the command, so we can't be starved */
1511 if (!list_empty(&sdev->starved_entry))
1512 list_del_init(&sdev->starved_entry);
1513
1514 return 1;
1515}
1516
6c5121b7
KU
1517/*
1518 * Busy state exporting function for request stacking drivers.
1519 *
1520 * For efficiency, no lock is taken to check the busy state of
1521 * shost/starget/sdev, since the returned value is not guaranteed and
1522 * may be changed after request stacking drivers call the function,
1523 * regardless of taking lock or not.
1524 *
1525 * When scsi can't dispatch I/Os anymore and needs to kill I/Os
1526 * (e.g. !sdev), scsi needs to return 'not busy'.
1527 * Otherwise, request stacking drivers may hold requests forever.
1528 */
1529static int scsi_lld_busy(struct request_queue *q)
1530{
1531 struct scsi_device *sdev = q->queuedata;
1532 struct Scsi_Host *shost;
1533 struct scsi_target *starget;
1534
1535 if (!sdev)
1536 return 0;
1537
1538 shost = sdev->host;
1539 starget = scsi_target(sdev);
1540
1541 if (scsi_host_in_recovery(shost) || scsi_host_is_busy(shost) ||
1542 scsi_target_is_busy(starget) || scsi_device_is_busy(sdev))
1543 return 1;
1544
1545 return 0;
1546}
1547
1da177e4 1548/*
e91442b6 1549 * Kill a request for a dead device
1da177e4 1550 */
165125e1 1551static void scsi_kill_request(struct request *req, struct request_queue *q)
1da177e4 1552{
e91442b6 1553 struct scsi_cmnd *cmd = req->special;
e36e0c80 1554 struct scsi_device *sdev = cmd->device;
f0c0a376 1555 struct scsi_target *starget = scsi_target(sdev);
e36e0c80 1556 struct Scsi_Host *shost = sdev->host;
1da177e4 1557
788ce43a
JB
1558 blkdev_dequeue_request(req);
1559
e91442b6
JB
1560 if (unlikely(cmd == NULL)) {
1561 printk(KERN_CRIT "impossible request in %s.\n",
cadbd4a5 1562 __func__);
e91442b6 1563 BUG();
1da177e4 1564 }
e91442b6
JB
1565
1566 scsi_init_cmd_errh(cmd);
1567 cmd->result = DID_NO_CONNECT << 16;
1568 atomic_inc(&cmd->device->iorequest_cnt);
e36e0c80
TH
1569
1570 /*
1571 * SCSI request completion path will do scsi_device_unbusy(),
1572 * bump busy counts. To bump the counters, we need to dance
1573 * with the locks as normal issue path does.
1574 */
1575 sdev->device_busy++;
1576 spin_unlock(sdev->request_queue->queue_lock);
1577 spin_lock(shost->host_lock);
1578 shost->host_busy++;
f0c0a376 1579 starget->target_busy++;
e36e0c80
TH
1580 spin_unlock(shost->host_lock);
1581 spin_lock(sdev->request_queue->queue_lock);
1582
242f9dcb 1583 blk_complete_request(req);
1da177e4
LT
1584}
1585
1aea6434
JA
1586static void scsi_softirq_done(struct request *rq)
1587{
242f9dcb
JA
1588 struct scsi_cmnd *cmd = rq->special;
1589 unsigned long wait_for = (cmd->allowed + 1) * rq->timeout;
1aea6434
JA
1590 int disposition;
1591
1592 INIT_LIST_HEAD(&cmd->eh_entry);
1593
242f9dcb
JA
1594 /*
1595 * Set the serial numbers back to zero
1596 */
1597 cmd->serial_number = 0;
1598
1599 atomic_inc(&cmd->device->iodone_cnt);
1600 if (cmd->result)
1601 atomic_inc(&cmd->device->ioerr_cnt);
1602
1aea6434
JA
1603 disposition = scsi_decide_disposition(cmd);
1604 if (disposition != SUCCESS &&
1605 time_before(cmd->jiffies_at_alloc + wait_for, jiffies)) {
1606 sdev_printk(KERN_ERR, cmd->device,
1607 "timing out command, waited %lus\n",
1608 wait_for/HZ);
1609 disposition = SUCCESS;
1610 }
1611
1612 scsi_log_completion(cmd, disposition);
1613
1614 switch (disposition) {
1615 case SUCCESS:
1616 scsi_finish_command(cmd);
1617 break;
1618 case NEEDS_RETRY:
596f482a 1619 scsi_queue_insert(cmd, SCSI_MLQUEUE_EH_RETRY);
1aea6434
JA
1620 break;
1621 case ADD_TO_MLQUEUE:
1622 scsi_queue_insert(cmd, SCSI_MLQUEUE_DEVICE_BUSY);
1623 break;
1624 default:
1625 if (!scsi_eh_scmd_add(cmd, 0))
1626 scsi_finish_command(cmd);
1627 }
1628}
1629
1da177e4
LT
1630/*
1631 * Function: scsi_request_fn()
1632 *
1633 * Purpose: Main strategy routine for SCSI.
1634 *
1635 * Arguments: q - Pointer to actual queue.
1636 *
1637 * Returns: Nothing
1638 *
1639 * Lock status: IO request lock assumed to be held when called.
1640 */
1641static void scsi_request_fn(struct request_queue *q)
1642{
1643 struct scsi_device *sdev = q->queuedata;
1644 struct Scsi_Host *shost;
1645 struct scsi_cmnd *cmd;
1646 struct request *req;
1647
1648 if (!sdev) {
1649 printk("scsi: killing requests for dead queue\n");
e91442b6
JB
1650 while ((req = elv_next_request(q)) != NULL)
1651 scsi_kill_request(req, q);
1da177e4
LT
1652 return;
1653 }
1654
1655 if(!get_device(&sdev->sdev_gendev))
1656 /* We must be tearing the block queue down already */
1657 return;
1658
1659 /*
1660 * To start with, we keep looping until the queue is empty, or until
1661 * the host is no longer able to accept any more requests.
1662 */
1663 shost = sdev->host;
1664 while (!blk_queue_plugged(q)) {
1665 int rtn;
1666 /*
1667 * get next queueable request. We do this early to make sure
1668 * that the request is fully prepared even if we cannot
1669 * accept it.
1670 */
1671 req = elv_next_request(q);
1672 if (!req || !scsi_dev_queue_ready(q, sdev))
1673 break;
1674
1675 if (unlikely(!scsi_device_online(sdev))) {
9ccfc756
JB
1676 sdev_printk(KERN_ERR, sdev,
1677 "rejecting I/O to offline device\n");
e91442b6 1678 scsi_kill_request(req, q);
1da177e4
LT
1679 continue;
1680 }
1681
1682
1683 /*
1684 * Remove the request from the request list.
1685 */
1686 if (!(blk_queue_tagged(q) && !blk_queue_start_tag(q, req)))
1687 blkdev_dequeue_request(req);
1688 sdev->device_busy++;
1689
1690 spin_unlock(q->queue_lock);
e91442b6
JB
1691 cmd = req->special;
1692 if (unlikely(cmd == NULL)) {
1693 printk(KERN_CRIT "impossible request in %s.\n"
1694 "please mail a stack trace to "
4aff5e23 1695 "linux-scsi@vger.kernel.org\n",
cadbd4a5 1696 __func__);
4aff5e23 1697 blk_dump_rq_flags(req, "foo");
e91442b6
JB
1698 BUG();
1699 }
1da177e4
LT
1700 spin_lock(shost->host_lock);
1701
ecefe8a9
MC
1702 /*
1703 * We hit this when the driver is using a host wide
1704 * tag map. For device level tag maps the queue_depth check
1705 * in the device ready fn would prevent us from trying
1706 * to allocate a tag. Since the map is a shared host resource
1707 * we add the dev to the starved list so it eventually gets
1708 * a run when a tag is freed.
1709 */
6bd522f6 1710 if (blk_queue_tagged(q) && !blk_rq_tagged(req)) {
ecefe8a9
MC
1711 if (list_empty(&sdev->starved_entry))
1712 list_add_tail(&sdev->starved_entry,
1713 &shost->starved_list);
1714 goto not_ready;
1715 }
1716
f0c0a376
MC
1717 if (!scsi_target_queue_ready(shost, sdev))
1718 goto not_ready;
1719
1da177e4
LT
1720 if (!scsi_host_queue_ready(q, shost, sdev))
1721 goto not_ready;
f0c0a376
MC
1722
1723 scsi_target(sdev)->target_busy++;
1da177e4
LT
1724 shost->host_busy++;
1725
1726 /*
1727 * XXX(hch): This is rather suboptimal, scsi_dispatch_cmd will
1728 * take the lock again.
1729 */
1730 spin_unlock_irq(shost->host_lock);
1731
1da177e4
LT
1732 /*
1733 * Finally, initialize any error handling parameters, and set up
1734 * the timers for timeouts.
1735 */
1736 scsi_init_cmd_errh(cmd);
1737
1738 /*
1739 * Dispatch the command to the low-level driver.
1740 */
1741 rtn = scsi_dispatch_cmd(cmd);
1742 spin_lock_irq(q->queue_lock);
1743 if(rtn) {
1744 /* we're refusing the command; because of
1745 * the way locks get dropped, we need to
1746 * check here if plugging is required */
1747 if(sdev->device_busy == 0)
1748 blk_plug_device(q);
1749
1750 break;
1751 }
1752 }
1753
1754 goto out;
1755
1756 not_ready:
1757 spin_unlock_irq(shost->host_lock);
1758
1759 /*
1760 * lock q, handle tag, requeue req, and decrement device_busy. We
1761 * must return with queue_lock held.
1762 *
1763 * Decrementing device_busy without checking it is OK, as all such
1764 * cases (host limits or settings) should run the queue at some
1765 * later time.
1766 */
1767 spin_lock_irq(q->queue_lock);
1768 blk_requeue_request(q, req);
1769 sdev->device_busy--;
1770 if(sdev->device_busy == 0)
1771 blk_plug_device(q);
1772 out:
1773 /* must be careful here...if we trigger the ->remove() function
1774 * we cannot be holding the q lock */
1775 spin_unlock_irq(q->queue_lock);
1776 put_device(&sdev->sdev_gendev);
1777 spin_lock_irq(q->queue_lock);
1778}
1779
1780u64 scsi_calculate_bounce_limit(struct Scsi_Host *shost)
1781{
1782 struct device *host_dev;
1783 u64 bounce_limit = 0xffffffff;
1784
1785 if (shost->unchecked_isa_dma)
1786 return BLK_BOUNCE_ISA;
1787 /*
1788 * Platforms with virtual-DMA translation
1789 * hardware have no practical limit.
1790 */
1791 if (!PCI_DMA_BUS_IS_PHYS)
1792 return BLK_BOUNCE_ANY;
1793
1794 host_dev = scsi_get_device(shost);
1795 if (host_dev && host_dev->dma_mask)
1796 bounce_limit = *host_dev->dma_mask;
1797
1798 return bounce_limit;
1799}
1800EXPORT_SYMBOL(scsi_calculate_bounce_limit);
1801
b58d9154
FT
1802struct request_queue *__scsi_alloc_queue(struct Scsi_Host *shost,
1803 request_fn_proc *request_fn)
1da177e4 1804{
1da177e4 1805 struct request_queue *q;
860ac568 1806 struct device *dev = shost->shost_gendev.parent;
1da177e4 1807
b58d9154 1808 q = blk_init_queue(request_fn, NULL);
1da177e4
LT
1809 if (!q)
1810 return NULL;
1811
a8474ce2
JA
1812 /*
1813 * this limit is imposed by hardware restrictions
1814 */
1da177e4 1815 blk_queue_max_hw_segments(q, shost->sg_tablesize);
d3f46f39 1816 blk_queue_max_phys_segments(q, SCSI_MAX_SG_CHAIN_SEGMENTS);
a8474ce2 1817
1da177e4
LT
1818 blk_queue_max_sectors(q, shost->max_sectors);
1819 blk_queue_bounce_limit(q, scsi_calculate_bounce_limit(shost));
1820 blk_queue_segment_boundary(q, shost->dma_boundary);
99c84dbd 1821 dma_set_seg_boundary(dev, shost->dma_boundary);
1da177e4 1822
860ac568
FT
1823 blk_queue_max_segment_size(q, dma_get_max_seg_size(dev));
1824
75ad23bc 1825 /* New queue, no concurrency on queue_flags */
1da177e4 1826 if (!shost->use_clustering)
75ad23bc 1827 queue_flag_clear_unlocked(QUEUE_FLAG_CLUSTER, q);
465ff318
JB
1828
1829 /*
1830 * set a reasonable default alignment on word boundaries: the
1831 * host and device may alter it using
1832 * blk_queue_update_dma_alignment() later.
1833 */
1834 blk_queue_dma_alignment(q, 0x03);
1835
1da177e4
LT
1836 return q;
1837}
b58d9154
FT
1838EXPORT_SYMBOL(__scsi_alloc_queue);
1839
1840struct request_queue *scsi_alloc_queue(struct scsi_device *sdev)
1841{
1842 struct request_queue *q;
1843
1844 q = __scsi_alloc_queue(sdev->host, scsi_request_fn);
1845 if (!q)
1846 return NULL;
1847
1848 blk_queue_prep_rq(q, scsi_prep_fn);
b58d9154 1849 blk_queue_softirq_done(q, scsi_softirq_done);
242f9dcb 1850 blk_queue_rq_timed_out(q, scsi_times_out);
6c5121b7 1851 blk_queue_lld_busy(q, scsi_lld_busy);
b58d9154
FT
1852 return q;
1853}
1da177e4
LT
1854
1855void scsi_free_queue(struct request_queue *q)
1856{
1857 blk_cleanup_queue(q);
1858}
1859
1860/*
1861 * Function: scsi_block_requests()
1862 *
1863 * Purpose: Utility function used by low-level drivers to prevent further
1864 * commands from being queued to the device.
1865 *
1866 * Arguments: shost - Host in question
1867 *
1868 * Returns: Nothing
1869 *
1870 * Lock status: No locks are assumed held.
1871 *
1872 * Notes: There is no timer nor any other means by which the requests
1873 * get unblocked other than the low-level driver calling
1874 * scsi_unblock_requests().
1875 */
1876void scsi_block_requests(struct Scsi_Host *shost)
1877{
1878 shost->host_self_blocked = 1;
1879}
1880EXPORT_SYMBOL(scsi_block_requests);
1881
1882/*
1883 * Function: scsi_unblock_requests()
1884 *
1885 * Purpose: Utility function used by low-level drivers to allow further
1886 * commands from being queued to the device.
1887 *
1888 * Arguments: shost - Host in question
1889 *
1890 * Returns: Nothing
1891 *
1892 * Lock status: No locks are assumed held.
1893 *
1894 * Notes: There is no timer nor any other means by which the requests
1895 * get unblocked other than the low-level driver calling
1896 * scsi_unblock_requests().
1897 *
1898 * This is done as an API function so that changes to the
1899 * internals of the scsi mid-layer won't require wholesale
1900 * changes to drivers that use this feature.
1901 */
1902void scsi_unblock_requests(struct Scsi_Host *shost)
1903{
1904 shost->host_self_blocked = 0;
1905 scsi_run_host_queues(shost);
1906}
1907EXPORT_SYMBOL(scsi_unblock_requests);
1908
1909int __init scsi_init_queue(void)
1910{
1911 int i;
1912
aa7b5cd7
MC
1913 scsi_io_context_cache = kmem_cache_create("scsi_io_context",
1914 sizeof(struct scsi_io_context),
20c2df83 1915 0, 0, NULL);
aa7b5cd7
MC
1916 if (!scsi_io_context_cache) {
1917 printk(KERN_ERR "SCSI: can't init scsi io context cache\n");
1918 return -ENOMEM;
1919 }
1920
6362abd3
MP
1921 scsi_sdb_cache = kmem_cache_create("scsi_data_buffer",
1922 sizeof(struct scsi_data_buffer),
1923 0, 0, NULL);
1924 if (!scsi_sdb_cache) {
1925 printk(KERN_ERR "SCSI: can't init scsi sdb cache\n");
3d9dd6ee 1926 goto cleanup_io_context;
6f9a35e2
BH
1927 }
1928
1da177e4
LT
1929 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1930 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1931 int size = sgp->size * sizeof(struct scatterlist);
1932
1933 sgp->slab = kmem_cache_create(sgp->name, size, 0,
20c2df83 1934 SLAB_HWCACHE_ALIGN, NULL);
1da177e4
LT
1935 if (!sgp->slab) {
1936 printk(KERN_ERR "SCSI: can't init sg slab %s\n",
1937 sgp->name);
6362abd3 1938 goto cleanup_sdb;
1da177e4
LT
1939 }
1940
93d2341c
MD
1941 sgp->pool = mempool_create_slab_pool(SG_MEMPOOL_SIZE,
1942 sgp->slab);
1da177e4
LT
1943 if (!sgp->pool) {
1944 printk(KERN_ERR "SCSI: can't init sg mempool %s\n",
1945 sgp->name);
6362abd3 1946 goto cleanup_sdb;
1da177e4
LT
1947 }
1948 }
1949
1950 return 0;
3d9dd6ee 1951
6362abd3 1952cleanup_sdb:
3d9dd6ee
FT
1953 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1954 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1955 if (sgp->pool)
1956 mempool_destroy(sgp->pool);
1957 if (sgp->slab)
1958 kmem_cache_destroy(sgp->slab);
1959 }
6362abd3 1960 kmem_cache_destroy(scsi_sdb_cache);
3d9dd6ee
FT
1961cleanup_io_context:
1962 kmem_cache_destroy(scsi_io_context_cache);
1963
1964 return -ENOMEM;
1da177e4
LT
1965}
1966
1967void scsi_exit_queue(void)
1968{
1969 int i;
1970
aa7b5cd7 1971 kmem_cache_destroy(scsi_io_context_cache);
6362abd3 1972 kmem_cache_destroy(scsi_sdb_cache);
aa7b5cd7 1973
1da177e4
LT
1974 for (i = 0; i < SG_MEMPOOL_NR; i++) {
1975 struct scsi_host_sg_pool *sgp = scsi_sg_pools + i;
1976 mempool_destroy(sgp->pool);
1977 kmem_cache_destroy(sgp->slab);
1978 }
1979}
5baba830
JB
1980
1981/**
1982 * scsi_mode_select - issue a mode select
1983 * @sdev: SCSI device to be queried
1984 * @pf: Page format bit (1 == standard, 0 == vendor specific)
1985 * @sp: Save page bit (0 == don't save, 1 == save)
1986 * @modepage: mode page being requested
1987 * @buffer: request buffer (may not be smaller than eight bytes)
1988 * @len: length of request buffer.
1989 * @timeout: command timeout
1990 * @retries: number of retries before failing
1991 * @data: returns a structure abstracting the mode header data
eb44820c 1992 * @sshdr: place to put sense data (or NULL if no sense to be collected).
5baba830
JB
1993 * must be SCSI_SENSE_BUFFERSIZE big.
1994 *
1995 * Returns zero if successful; negative error number or scsi
1996 * status on error
1997 *
1998 */
1999int
2000scsi_mode_select(struct scsi_device *sdev, int pf, int sp, int modepage,
2001 unsigned char *buffer, int len, int timeout, int retries,
2002 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2003{
2004 unsigned char cmd[10];
2005 unsigned char *real_buffer;
2006 int ret;
2007
2008 memset(cmd, 0, sizeof(cmd));
2009 cmd[1] = (pf ? 0x10 : 0) | (sp ? 0x01 : 0);
2010
2011 if (sdev->use_10_for_ms) {
2012 if (len > 65535)
2013 return -EINVAL;
2014 real_buffer = kmalloc(8 + len, GFP_KERNEL);
2015 if (!real_buffer)
2016 return -ENOMEM;
2017 memcpy(real_buffer + 8, buffer, len);
2018 len += 8;
2019 real_buffer[0] = 0;
2020 real_buffer[1] = 0;
2021 real_buffer[2] = data->medium_type;
2022 real_buffer[3] = data->device_specific;
2023 real_buffer[4] = data->longlba ? 0x01 : 0;
2024 real_buffer[5] = 0;
2025 real_buffer[6] = data->block_descriptor_length >> 8;
2026 real_buffer[7] = data->block_descriptor_length;
2027
2028 cmd[0] = MODE_SELECT_10;
2029 cmd[7] = len >> 8;
2030 cmd[8] = len;
2031 } else {
2032 if (len > 255 || data->block_descriptor_length > 255 ||
2033 data->longlba)
2034 return -EINVAL;
2035
2036 real_buffer = kmalloc(4 + len, GFP_KERNEL);
2037 if (!real_buffer)
2038 return -ENOMEM;
2039 memcpy(real_buffer + 4, buffer, len);
2040 len += 4;
2041 real_buffer[0] = 0;
2042 real_buffer[1] = data->medium_type;
2043 real_buffer[2] = data->device_specific;
2044 real_buffer[3] = data->block_descriptor_length;
2045
2046
2047 cmd[0] = MODE_SELECT;
2048 cmd[4] = len;
2049 }
2050
2051 ret = scsi_execute_req(sdev, cmd, DMA_TO_DEVICE, real_buffer, len,
f4f4e47e 2052 sshdr, timeout, retries, NULL);
5baba830
JB
2053 kfree(real_buffer);
2054 return ret;
2055}
2056EXPORT_SYMBOL_GPL(scsi_mode_select);
2057
1da177e4 2058/**
eb44820c 2059 * scsi_mode_sense - issue a mode sense, falling back from 10 to six bytes if necessary.
1cf72699 2060 * @sdev: SCSI device to be queried
1da177e4
LT
2061 * @dbd: set if mode sense will allow block descriptors to be returned
2062 * @modepage: mode page being requested
2063 * @buffer: request buffer (may not be smaller than eight bytes)
2064 * @len: length of request buffer.
2065 * @timeout: command timeout
2066 * @retries: number of retries before failing
2067 * @data: returns a structure abstracting the mode header data
eb44820c 2068 * @sshdr: place to put sense data (or NULL if no sense to be collected).
1cf72699 2069 * must be SCSI_SENSE_BUFFERSIZE big.
1da177e4
LT
2070 *
2071 * Returns zero if unsuccessful, or the header offset (either 4
2072 * or 8 depending on whether a six or ten byte command was
2073 * issued) if successful.
eb44820c 2074 */
1da177e4 2075int
1cf72699 2076scsi_mode_sense(struct scsi_device *sdev, int dbd, int modepage,
1da177e4 2077 unsigned char *buffer, int len, int timeout, int retries,
5baba830
JB
2078 struct scsi_mode_data *data, struct scsi_sense_hdr *sshdr)
2079{
1da177e4
LT
2080 unsigned char cmd[12];
2081 int use_10_for_ms;
2082 int header_length;
1cf72699 2083 int result;
ea73a9f2 2084 struct scsi_sense_hdr my_sshdr;
1da177e4
LT
2085
2086 memset(data, 0, sizeof(*data));
2087 memset(&cmd[0], 0, 12);
2088 cmd[1] = dbd & 0x18; /* allows DBD and LLBA bits */
2089 cmd[2] = modepage;
2090
ea73a9f2
JB
2091 /* caller might not be interested in sense, but we need it */
2092 if (!sshdr)
2093 sshdr = &my_sshdr;
2094
1da177e4 2095 retry:
1cf72699 2096 use_10_for_ms = sdev->use_10_for_ms;
1da177e4
LT
2097
2098 if (use_10_for_ms) {
2099 if (len < 8)
2100 len = 8;
2101
2102 cmd[0] = MODE_SENSE_10;
2103 cmd[8] = len;
2104 header_length = 8;
2105 } else {
2106 if (len < 4)
2107 len = 4;
2108
2109 cmd[0] = MODE_SENSE;
2110 cmd[4] = len;
2111 header_length = 4;
2112 }
2113
1da177e4
LT
2114 memset(buffer, 0, len);
2115
1cf72699 2116 result = scsi_execute_req(sdev, cmd, DMA_FROM_DEVICE, buffer, len,
f4f4e47e 2117 sshdr, timeout, retries, NULL);
1da177e4
LT
2118
2119 /* This code looks awful: what it's doing is making sure an
2120 * ILLEGAL REQUEST sense return identifies the actual command
2121 * byte as the problem. MODE_SENSE commands can return
2122 * ILLEGAL REQUEST if the code page isn't supported */
2123
1cf72699
JB
2124 if (use_10_for_ms && !scsi_status_is_good(result) &&
2125 (driver_byte(result) & DRIVER_SENSE)) {
ea73a9f2
JB
2126 if (scsi_sense_valid(sshdr)) {
2127 if ((sshdr->sense_key == ILLEGAL_REQUEST) &&
2128 (sshdr->asc == 0x20) && (sshdr->ascq == 0)) {
1da177e4
LT
2129 /*
2130 * Invalid command operation code
2131 */
1cf72699 2132 sdev->use_10_for_ms = 0;
1da177e4
LT
2133 goto retry;
2134 }
2135 }
2136 }
2137
1cf72699 2138 if(scsi_status_is_good(result)) {
6d73c851
AV
2139 if (unlikely(buffer[0] == 0x86 && buffer[1] == 0x0b &&
2140 (modepage == 6 || modepage == 8))) {
2141 /* Initio breakage? */
2142 header_length = 0;
2143 data->length = 13;
2144 data->medium_type = 0;
2145 data->device_specific = 0;
2146 data->longlba = 0;
2147 data->block_descriptor_length = 0;
2148 } else if(use_10_for_ms) {
1da177e4
LT
2149 data->length = buffer[0]*256 + buffer[1] + 2;
2150 data->medium_type = buffer[2];
2151 data->device_specific = buffer[3];
2152 data->longlba = buffer[4] & 0x01;
2153 data->block_descriptor_length = buffer[6]*256
2154 + buffer[7];
2155 } else {
2156 data->length = buffer[0] + 1;
2157 data->medium_type = buffer[1];
2158 data->device_specific = buffer[2];
2159 data->block_descriptor_length = buffer[3];
2160 }
6d73c851 2161 data->header_length = header_length;
1da177e4
LT
2162 }
2163
1cf72699 2164 return result;
1da177e4
LT
2165}
2166EXPORT_SYMBOL(scsi_mode_sense);
2167
001aac25
JB
2168/**
2169 * scsi_test_unit_ready - test if unit is ready
2170 * @sdev: scsi device to change the state of.
2171 * @timeout: command timeout
2172 * @retries: number of retries before failing
2173 * @sshdr_external: Optional pointer to struct scsi_sense_hdr for
2174 * returning sense. Make sure that this is cleared before passing
2175 * in.
2176 *
2177 * Returns zero if unsuccessful or an error if TUR failed. For
2178 * removable media, a return of NOT_READY or UNIT_ATTENTION is
2179 * translated to success, with the ->changed flag updated.
2180 **/
1da177e4 2181int
001aac25
JB
2182scsi_test_unit_ready(struct scsi_device *sdev, int timeout, int retries,
2183 struct scsi_sense_hdr *sshdr_external)
1da177e4 2184{
1da177e4
LT
2185 char cmd[] = {
2186 TEST_UNIT_READY, 0, 0, 0, 0, 0,
2187 };
001aac25 2188 struct scsi_sense_hdr *sshdr;
1da177e4 2189 int result;
001aac25
JB
2190
2191 if (!sshdr_external)
2192 sshdr = kzalloc(sizeof(*sshdr), GFP_KERNEL);
2193 else
2194 sshdr = sshdr_external;
2195
2196 /* try to eat the UNIT_ATTENTION if there are enough retries */
2197 do {
2198 result = scsi_execute_req(sdev, cmd, DMA_NONE, NULL, 0, sshdr,
f4f4e47e 2199 timeout, retries, NULL);
32c356d7
JB
2200 if (sdev->removable && scsi_sense_valid(sshdr) &&
2201 sshdr->sense_key == UNIT_ATTENTION)
2202 sdev->changed = 1;
2203 } while (scsi_sense_valid(sshdr) &&
2204 sshdr->sense_key == UNIT_ATTENTION && --retries);
001aac25
JB
2205
2206 if (!sshdr)
2207 /* could not allocate sense buffer, so can't process it */
2208 return result;
1da177e4 2209
32c356d7
JB
2210 if (sdev->removable && scsi_sense_valid(sshdr) &&
2211 (sshdr->sense_key == UNIT_ATTENTION ||
2212 sshdr->sense_key == NOT_READY)) {
2213 sdev->changed = 1;
2214 result = 0;
1da177e4 2215 }
001aac25
JB
2216 if (!sshdr_external)
2217 kfree(sshdr);
1da177e4
LT
2218 return result;
2219}
2220EXPORT_SYMBOL(scsi_test_unit_ready);
2221
2222/**
eb44820c 2223 * scsi_device_set_state - Take the given device through the device state model.
1da177e4
LT
2224 * @sdev: scsi device to change the state of.
2225 * @state: state to change to.
2226 *
2227 * Returns zero if unsuccessful or an error if the requested
2228 * transition is illegal.
eb44820c 2229 */
1da177e4
LT
2230int
2231scsi_device_set_state(struct scsi_device *sdev, enum scsi_device_state state)
2232{
2233 enum scsi_device_state oldstate = sdev->sdev_state;
2234
2235 if (state == oldstate)
2236 return 0;
2237
2238 switch (state) {
2239 case SDEV_CREATED:
6f4267e3
JB
2240 switch (oldstate) {
2241 case SDEV_CREATED_BLOCK:
2242 break;
2243 default:
2244 goto illegal;
2245 }
2246 break;
1da177e4
LT
2247
2248 case SDEV_RUNNING:
2249 switch (oldstate) {
2250 case SDEV_CREATED:
2251 case SDEV_OFFLINE:
2252 case SDEV_QUIESCE:
2253 case SDEV_BLOCK:
2254 break;
2255 default:
2256 goto illegal;
2257 }
2258 break;
2259
2260 case SDEV_QUIESCE:
2261 switch (oldstate) {
2262 case SDEV_RUNNING:
2263 case SDEV_OFFLINE:
2264 break;
2265 default:
2266 goto illegal;
2267 }
2268 break;
2269
2270 case SDEV_OFFLINE:
2271 switch (oldstate) {
2272 case SDEV_CREATED:
2273 case SDEV_RUNNING:
2274 case SDEV_QUIESCE:
2275 case SDEV_BLOCK:
2276 break;
2277 default:
2278 goto illegal;
2279 }
2280 break;
2281
2282 case SDEV_BLOCK:
2283 switch (oldstate) {
1da177e4 2284 case SDEV_RUNNING:
6f4267e3
JB
2285 case SDEV_CREATED_BLOCK:
2286 break;
2287 default:
2288 goto illegal;
2289 }
2290 break;
2291
2292 case SDEV_CREATED_BLOCK:
2293 switch (oldstate) {
2294 case SDEV_CREATED:
1da177e4
LT
2295 break;
2296 default:
2297 goto illegal;
2298 }
2299 break;
2300
2301 case SDEV_CANCEL:
2302 switch (oldstate) {
2303 case SDEV_CREATED:
2304 case SDEV_RUNNING:
9ea72909 2305 case SDEV_QUIESCE:
1da177e4
LT
2306 case SDEV_OFFLINE:
2307 case SDEV_BLOCK:
2308 break;
2309 default:
2310 goto illegal;
2311 }
2312 break;
2313
2314 case SDEV_DEL:
2315 switch (oldstate) {
309bd271
BK
2316 case SDEV_CREATED:
2317 case SDEV_RUNNING:
2318 case SDEV_OFFLINE:
1da177e4
LT
2319 case SDEV_CANCEL:
2320 break;
2321 default:
2322 goto illegal;
2323 }
2324 break;
2325
2326 }
2327 sdev->sdev_state = state;
2328 return 0;
2329
2330 illegal:
2331 SCSI_LOG_ERROR_RECOVERY(1,
9ccfc756
JB
2332 sdev_printk(KERN_ERR, sdev,
2333 "Illegal state transition %s->%s\n",
2334 scsi_device_state_name(oldstate),
2335 scsi_device_state_name(state))
1da177e4
LT
2336 );
2337 return -EINVAL;
2338}
2339EXPORT_SYMBOL(scsi_device_set_state);
2340
a341cd0f
JG
2341/**
2342 * sdev_evt_emit - emit a single SCSI device uevent
2343 * @sdev: associated SCSI device
2344 * @evt: event to emit
2345 *
2346 * Send a single uevent (scsi_event) to the associated scsi_device.
2347 */
2348static void scsi_evt_emit(struct scsi_device *sdev, struct scsi_event *evt)
2349{
2350 int idx = 0;
2351 char *envp[3];
2352
2353 switch (evt->evt_type) {
2354 case SDEV_EVT_MEDIA_CHANGE:
2355 envp[idx++] = "SDEV_MEDIA_CHANGE=1";
2356 break;
2357
2358 default:
2359 /* do nothing */
2360 break;
2361 }
2362
2363 envp[idx++] = NULL;
2364
2365 kobject_uevent_env(&sdev->sdev_gendev.kobj, KOBJ_CHANGE, envp);
2366}
2367
2368/**
2369 * sdev_evt_thread - send a uevent for each scsi event
2370 * @work: work struct for scsi_device
2371 *
2372 * Dispatch queued events to their associated scsi_device kobjects
2373 * as uevents.
2374 */
2375void scsi_evt_thread(struct work_struct *work)
2376{
2377 struct scsi_device *sdev;
2378 LIST_HEAD(event_list);
2379
2380 sdev = container_of(work, struct scsi_device, event_work);
2381
2382 while (1) {
2383 struct scsi_event *evt;
2384 struct list_head *this, *tmp;
2385 unsigned long flags;
2386
2387 spin_lock_irqsave(&sdev->list_lock, flags);
2388 list_splice_init(&sdev->event_list, &event_list);
2389 spin_unlock_irqrestore(&sdev->list_lock, flags);
2390
2391 if (list_empty(&event_list))
2392 break;
2393
2394 list_for_each_safe(this, tmp, &event_list) {
2395 evt = list_entry(this, struct scsi_event, node);
2396 list_del(&evt->node);
2397 scsi_evt_emit(sdev, evt);
2398 kfree(evt);
2399 }
2400 }
2401}
2402
2403/**
2404 * sdev_evt_send - send asserted event to uevent thread
2405 * @sdev: scsi_device event occurred on
2406 * @evt: event to send
2407 *
2408 * Assert scsi device event asynchronously.
2409 */
2410void sdev_evt_send(struct scsi_device *sdev, struct scsi_event *evt)
2411{
2412 unsigned long flags;
2413
4d1566ed
KS
2414#if 0
2415 /* FIXME: currently this check eliminates all media change events
2416 * for polled devices. Need to update to discriminate between AN
2417 * and polled events */
a341cd0f
JG
2418 if (!test_bit(evt->evt_type, sdev->supported_events)) {
2419 kfree(evt);
2420 return;
2421 }
4d1566ed 2422#endif
a341cd0f
JG
2423
2424 spin_lock_irqsave(&sdev->list_lock, flags);
2425 list_add_tail(&evt->node, &sdev->event_list);
2426 schedule_work(&sdev->event_work);
2427 spin_unlock_irqrestore(&sdev->list_lock, flags);
2428}
2429EXPORT_SYMBOL_GPL(sdev_evt_send);
2430
2431/**
2432 * sdev_evt_alloc - allocate a new scsi event
2433 * @evt_type: type of event to allocate
2434 * @gfpflags: GFP flags for allocation
2435 *
2436 * Allocates and returns a new scsi_event.
2437 */
2438struct scsi_event *sdev_evt_alloc(enum scsi_device_event evt_type,
2439 gfp_t gfpflags)
2440{
2441 struct scsi_event *evt = kzalloc(sizeof(struct scsi_event), gfpflags);
2442 if (!evt)
2443 return NULL;
2444
2445 evt->evt_type = evt_type;
2446 INIT_LIST_HEAD(&evt->node);
2447
2448 /* evt_type-specific initialization, if any */
2449 switch (evt_type) {
2450 case SDEV_EVT_MEDIA_CHANGE:
2451 default:
2452 /* do nothing */
2453 break;
2454 }
2455
2456 return evt;
2457}
2458EXPORT_SYMBOL_GPL(sdev_evt_alloc);
2459
2460/**
2461 * sdev_evt_send_simple - send asserted event to uevent thread
2462 * @sdev: scsi_device event occurred on
2463 * @evt_type: type of event to send
2464 * @gfpflags: GFP flags for allocation
2465 *
2466 * Assert scsi device event asynchronously, given an event type.
2467 */
2468void sdev_evt_send_simple(struct scsi_device *sdev,
2469 enum scsi_device_event evt_type, gfp_t gfpflags)
2470{
2471 struct scsi_event *evt = sdev_evt_alloc(evt_type, gfpflags);
2472 if (!evt) {
2473 sdev_printk(KERN_ERR, sdev, "event %d eaten due to OOM\n",
2474 evt_type);
2475 return;
2476 }
2477
2478 sdev_evt_send(sdev, evt);
2479}
2480EXPORT_SYMBOL_GPL(sdev_evt_send_simple);
2481
1da177e4
LT
2482/**
2483 * scsi_device_quiesce - Block user issued commands.
2484 * @sdev: scsi device to quiesce.
2485 *
2486 * This works by trying to transition to the SDEV_QUIESCE state
2487 * (which must be a legal transition). When the device is in this
2488 * state, only special requests will be accepted, all others will
2489 * be deferred. Since special requests may also be requeued requests,
2490 * a successful return doesn't guarantee the device will be
2491 * totally quiescent.
2492 *
2493 * Must be called with user context, may sleep.
2494 *
2495 * Returns zero if unsuccessful or an error if not.
eb44820c 2496 */
1da177e4
LT
2497int
2498scsi_device_quiesce(struct scsi_device *sdev)
2499{
2500 int err = scsi_device_set_state(sdev, SDEV_QUIESCE);
2501 if (err)
2502 return err;
2503
2504 scsi_run_queue(sdev->request_queue);
2505 while (sdev->device_busy) {
2506 msleep_interruptible(200);
2507 scsi_run_queue(sdev->request_queue);
2508 }
2509 return 0;
2510}
2511EXPORT_SYMBOL(scsi_device_quiesce);
2512
2513/**
2514 * scsi_device_resume - Restart user issued commands to a quiesced device.
2515 * @sdev: scsi device to resume.
2516 *
2517 * Moves the device from quiesced back to running and restarts the
2518 * queues.
2519 *
2520 * Must be called with user context, may sleep.
eb44820c 2521 */
1da177e4
LT
2522void
2523scsi_device_resume(struct scsi_device *sdev)
2524{
2525 if(scsi_device_set_state(sdev, SDEV_RUNNING))
2526 return;
2527 scsi_run_queue(sdev->request_queue);
2528}
2529EXPORT_SYMBOL(scsi_device_resume);
2530
2531static void
2532device_quiesce_fn(struct scsi_device *sdev, void *data)
2533{
2534 scsi_device_quiesce(sdev);
2535}
2536
2537void
2538scsi_target_quiesce(struct scsi_target *starget)
2539{
2540 starget_for_each_device(starget, NULL, device_quiesce_fn);
2541}
2542EXPORT_SYMBOL(scsi_target_quiesce);
2543
2544static void
2545device_resume_fn(struct scsi_device *sdev, void *data)
2546{
2547 scsi_device_resume(sdev);
2548}
2549
2550void
2551scsi_target_resume(struct scsi_target *starget)
2552{
2553 starget_for_each_device(starget, NULL, device_resume_fn);
2554}
2555EXPORT_SYMBOL(scsi_target_resume);
2556
2557/**
eb44820c 2558 * scsi_internal_device_block - internal function to put a device temporarily into the SDEV_BLOCK state
1da177e4
LT
2559 * @sdev: device to block
2560 *
2561 * Block request made by scsi lld's to temporarily stop all
2562 * scsi commands on the specified device. Called from interrupt
2563 * or normal process context.
2564 *
2565 * Returns zero if successful or error if not
2566 *
2567 * Notes:
2568 * This routine transitions the device to the SDEV_BLOCK state
2569 * (which must be a legal transition). When the device is in this
2570 * state, all commands are deferred until the scsi lld reenables
2571 * the device with scsi_device_unblock or device_block_tmo fires.
2572 * This routine assumes the host_lock is held on entry.
eb44820c 2573 */
1da177e4
LT
2574int
2575scsi_internal_device_block(struct scsi_device *sdev)
2576{
165125e1 2577 struct request_queue *q = sdev->request_queue;
1da177e4
LT
2578 unsigned long flags;
2579 int err = 0;
2580
2581 err = scsi_device_set_state(sdev, SDEV_BLOCK);
6f4267e3
JB
2582 if (err) {
2583 err = scsi_device_set_state(sdev, SDEV_CREATED_BLOCK);
2584
2585 if (err)
2586 return err;
2587 }
1da177e4
LT
2588
2589 /*
2590 * The device has transitioned to SDEV_BLOCK. Stop the
2591 * block layer from calling the midlayer with this device's
2592 * request queue.
2593 */
2594 spin_lock_irqsave(q->queue_lock, flags);
2595 blk_stop_queue(q);
2596 spin_unlock_irqrestore(q->queue_lock, flags);
2597
2598 return 0;
2599}
2600EXPORT_SYMBOL_GPL(scsi_internal_device_block);
2601
2602/**
2603 * scsi_internal_device_unblock - resume a device after a block request
2604 * @sdev: device to resume
2605 *
2606 * Called by scsi lld's or the midlayer to restart the device queue
2607 * for the previously suspended scsi device. Called from interrupt or
2608 * normal process context.
2609 *
2610 * Returns zero if successful or error if not.
2611 *
2612 * Notes:
2613 * This routine transitions the device to the SDEV_RUNNING state
2614 * (which must be a legal transition) allowing the midlayer to
2615 * goose the queue for this device. This routine assumes the
2616 * host_lock is held upon entry.
eb44820c 2617 */
1da177e4
LT
2618int
2619scsi_internal_device_unblock(struct scsi_device *sdev)
2620{
165125e1 2621 struct request_queue *q = sdev->request_queue;
1da177e4
LT
2622 int err;
2623 unsigned long flags;
2624
2625 /*
2626 * Try to transition the scsi device to SDEV_RUNNING
2627 * and goose the device queue if successful.
2628 */
2629 err = scsi_device_set_state(sdev, SDEV_RUNNING);
6f4267e3
JB
2630 if (err) {
2631 err = scsi_device_set_state(sdev, SDEV_CREATED);
2632
2633 if (err)
2634 return err;
2635 }
1da177e4
LT
2636
2637 spin_lock_irqsave(q->queue_lock, flags);
2638 blk_start_queue(q);
2639 spin_unlock_irqrestore(q->queue_lock, flags);
2640
2641 return 0;
2642}
2643EXPORT_SYMBOL_GPL(scsi_internal_device_unblock);
2644
2645static void
2646device_block(struct scsi_device *sdev, void *data)
2647{
2648 scsi_internal_device_block(sdev);
2649}
2650
2651static int
2652target_block(struct device *dev, void *data)
2653{
2654 if (scsi_is_target_device(dev))
2655 starget_for_each_device(to_scsi_target(dev), NULL,
2656 device_block);
2657 return 0;
2658}
2659
2660void
2661scsi_target_block(struct device *dev)
2662{
2663 if (scsi_is_target_device(dev))
2664 starget_for_each_device(to_scsi_target(dev), NULL,
2665 device_block);
2666 else
2667 device_for_each_child(dev, NULL, target_block);
2668}
2669EXPORT_SYMBOL_GPL(scsi_target_block);
2670
2671static void
2672device_unblock(struct scsi_device *sdev, void *data)
2673{
2674 scsi_internal_device_unblock(sdev);
2675}
2676
2677static int
2678target_unblock(struct device *dev, void *data)
2679{
2680 if (scsi_is_target_device(dev))
2681 starget_for_each_device(to_scsi_target(dev), NULL,
2682 device_unblock);
2683 return 0;
2684}
2685
2686void
2687scsi_target_unblock(struct device *dev)
2688{
2689 if (scsi_is_target_device(dev))
2690 starget_for_each_device(to_scsi_target(dev), NULL,
2691 device_unblock);
2692 else
2693 device_for_each_child(dev, NULL, target_unblock);
2694}
2695EXPORT_SYMBOL_GPL(scsi_target_unblock);
cdb8c2a6
GL
2696
2697/**
2698 * scsi_kmap_atomic_sg - find and atomically map an sg-elemnt
eb44820c 2699 * @sgl: scatter-gather list
cdb8c2a6
GL
2700 * @sg_count: number of segments in sg
2701 * @offset: offset in bytes into sg, on return offset into the mapped area
2702 * @len: bytes to map, on return number of bytes mapped
2703 *
2704 * Returns virtual address of the start of the mapped page
2705 */
c6132da1 2706void *scsi_kmap_atomic_sg(struct scatterlist *sgl, int sg_count,
cdb8c2a6
GL
2707 size_t *offset, size_t *len)
2708{
2709 int i;
2710 size_t sg_len = 0, len_complete = 0;
c6132da1 2711 struct scatterlist *sg;
cdb8c2a6
GL
2712 struct page *page;
2713
22cfefb5
AM
2714 WARN_ON(!irqs_disabled());
2715
c6132da1 2716 for_each_sg(sgl, sg, sg_count, i) {
cdb8c2a6 2717 len_complete = sg_len; /* Complete sg-entries */
c6132da1 2718 sg_len += sg->length;
cdb8c2a6
GL
2719 if (sg_len > *offset)
2720 break;
2721 }
2722
2723 if (unlikely(i == sg_count)) {
169e1a2a
AM
2724 printk(KERN_ERR "%s: Bytes in sg: %zu, requested offset %zu, "
2725 "elements %d\n",
cadbd4a5 2726 __func__, sg_len, *offset, sg_count);
cdb8c2a6
GL
2727 WARN_ON(1);
2728 return NULL;
2729 }
2730
2731 /* Offset starting from the beginning of first page in this sg-entry */
c6132da1 2732 *offset = *offset - len_complete + sg->offset;
cdb8c2a6
GL
2733
2734 /* Assumption: contiguous pages can be accessed as "page + i" */
45711f1a 2735 page = nth_page(sg_page(sg), (*offset >> PAGE_SHIFT));
cdb8c2a6
GL
2736 *offset &= ~PAGE_MASK;
2737
2738 /* Bytes in this sg-entry from *offset to the end of the page */
2739 sg_len = PAGE_SIZE - *offset;
2740 if (*len > sg_len)
2741 *len = sg_len;
2742
2743 return kmap_atomic(page, KM_BIO_SRC_IRQ);
2744}
2745EXPORT_SYMBOL(scsi_kmap_atomic_sg);
2746
2747/**
eb44820c 2748 * scsi_kunmap_atomic_sg - atomically unmap a virtual address, previously mapped with scsi_kmap_atomic_sg
cdb8c2a6
GL
2749 * @virt: virtual address to be unmapped
2750 */
2751void scsi_kunmap_atomic_sg(void *virt)
2752{
2753 kunmap_atomic(virt, KM_BIO_SRC_IRQ);
2754}
2755EXPORT_SYMBOL(scsi_kunmap_atomic_sg);