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