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