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