Merge tag 'pinctrl-v3.20-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw...
[deliverable/linux.git] / drivers / scsi / scsi_scan.c
1 /*
2 * scsi_scan.c
3 *
4 * Copyright (C) 2000 Eric Youngdale,
5 * Copyright (C) 2002 Patrick Mansfield
6 *
7 * The general scanning/probing algorithm is as follows, exceptions are
8 * made to it depending on device specific flags, compilation options, and
9 * global variable (boot or module load time) settings.
10 *
11 * A specific LUN is scanned via an INQUIRY command; if the LUN has a
12 * device attached, a scsi_device is allocated and setup for it.
13 *
14 * For every id of every channel on the given host:
15 *
16 * Scan LUN 0; if the target responds to LUN 0 (even if there is no
17 * device or storage attached to LUN 0):
18 *
19 * If LUN 0 has a device attached, allocate and setup a
20 * scsi_device for it.
21 *
22 * If target is SCSI-3 or up, issue a REPORT LUN, and scan
23 * all of the LUNs returned by the REPORT LUN; else,
24 * sequentially scan LUNs up until some maximum is reached,
25 * or a LUN is seen that cannot have a device attached to it.
26 */
27
28 #include <linux/module.h>
29 #include <linux/moduleparam.h>
30 #include <linux/init.h>
31 #include <linux/blkdev.h>
32 #include <linux/delay.h>
33 #include <linux/kthread.h>
34 #include <linux/spinlock.h>
35 #include <linux/async.h>
36 #include <linux/slab.h>
37 #include <asm/unaligned.h>
38
39 #include <scsi/scsi.h>
40 #include <scsi/scsi_cmnd.h>
41 #include <scsi/scsi_device.h>
42 #include <scsi/scsi_driver.h>
43 #include <scsi/scsi_devinfo.h>
44 #include <scsi/scsi_host.h>
45 #include <scsi/scsi_transport.h>
46 #include <scsi/scsi_eh.h>
47
48 #include "scsi_priv.h"
49 #include "scsi_logging.h"
50
51 #define ALLOC_FAILURE_MSG KERN_ERR "%s: Allocation failure during" \
52 " SCSI scanning, some SCSI devices might not be configured\n"
53
54 /*
55 * Default timeout
56 */
57 #define SCSI_TIMEOUT (2*HZ)
58
59 /*
60 * Prefix values for the SCSI id's (stored in sysfs name field)
61 */
62 #define SCSI_UID_SER_NUM 'S'
63 #define SCSI_UID_UNKNOWN 'Z'
64
65 /*
66 * Return values of some of the scanning functions.
67 *
68 * SCSI_SCAN_NO_RESPONSE: no valid response received from the target, this
69 * includes allocation or general failures preventing IO from being sent.
70 *
71 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is available
72 * on the given LUN.
73 *
74 * SCSI_SCAN_LUN_PRESENT: target responded, and a device is available on a
75 * given LUN.
76 */
77 #define SCSI_SCAN_NO_RESPONSE 0
78 #define SCSI_SCAN_TARGET_PRESENT 1
79 #define SCSI_SCAN_LUN_PRESENT 2
80
81 static const char *scsi_null_device_strs = "nullnullnullnull";
82
83 #define MAX_SCSI_LUNS 512
84
85 static u64 max_scsi_luns = MAX_SCSI_LUNS;
86
87 module_param_named(max_luns, max_scsi_luns, ullong, S_IRUGO|S_IWUSR);
88 MODULE_PARM_DESC(max_luns,
89 "last scsi LUN (should be between 1 and 2^64-1)");
90
91 #ifdef CONFIG_SCSI_SCAN_ASYNC
92 #define SCSI_SCAN_TYPE_DEFAULT "async"
93 #else
94 #define SCSI_SCAN_TYPE_DEFAULT "sync"
95 #endif
96
97 char scsi_scan_type[6] = SCSI_SCAN_TYPE_DEFAULT;
98
99 module_param_string(scan, scsi_scan_type, sizeof(scsi_scan_type), S_IRUGO);
100 MODULE_PARM_DESC(scan, "sync, async or none");
101
102 static unsigned int scsi_inq_timeout = SCSI_TIMEOUT/HZ + 18;
103
104 module_param_named(inq_timeout, scsi_inq_timeout, uint, S_IRUGO|S_IWUSR);
105 MODULE_PARM_DESC(inq_timeout,
106 "Timeout (in seconds) waiting for devices to answer INQUIRY."
107 " Default is 20. Some devices may need more; most need less.");
108
109 /* This lock protects only this list */
110 static DEFINE_SPINLOCK(async_scan_lock);
111 static LIST_HEAD(scanning_hosts);
112
113 struct async_scan_data {
114 struct list_head list;
115 struct Scsi_Host *shost;
116 struct completion prev_finished;
117 };
118
119 /**
120 * scsi_complete_async_scans - Wait for asynchronous scans to complete
121 *
122 * When this function returns, any host which started scanning before
123 * this function was called will have finished its scan. Hosts which
124 * started scanning after this function was called may or may not have
125 * finished.
126 */
127 int scsi_complete_async_scans(void)
128 {
129 struct async_scan_data *data;
130
131 do {
132 if (list_empty(&scanning_hosts))
133 return 0;
134 /* If we can't get memory immediately, that's OK. Just
135 * sleep a little. Even if we never get memory, the async
136 * scans will finish eventually.
137 */
138 data = kmalloc(sizeof(*data), GFP_KERNEL);
139 if (!data)
140 msleep(1);
141 } while (!data);
142
143 data->shost = NULL;
144 init_completion(&data->prev_finished);
145
146 spin_lock(&async_scan_lock);
147 /* Check that there's still somebody else on the list */
148 if (list_empty(&scanning_hosts))
149 goto done;
150 list_add_tail(&data->list, &scanning_hosts);
151 spin_unlock(&async_scan_lock);
152
153 printk(KERN_INFO "scsi: waiting for bus probes to complete ...\n");
154 wait_for_completion(&data->prev_finished);
155
156 spin_lock(&async_scan_lock);
157 list_del(&data->list);
158 if (!list_empty(&scanning_hosts)) {
159 struct async_scan_data *next = list_entry(scanning_hosts.next,
160 struct async_scan_data, list);
161 complete(&next->prev_finished);
162 }
163 done:
164 spin_unlock(&async_scan_lock);
165
166 kfree(data);
167 return 0;
168 }
169
170 /**
171 * scsi_unlock_floptical - unlock device via a special MODE SENSE command
172 * @sdev: scsi device to send command to
173 * @result: area to store the result of the MODE SENSE
174 *
175 * Description:
176 * Send a vendor specific MODE SENSE (not a MODE SELECT) command.
177 * Called for BLIST_KEY devices.
178 **/
179 static void scsi_unlock_floptical(struct scsi_device *sdev,
180 unsigned char *result)
181 {
182 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
183
184 sdev_printk(KERN_NOTICE, sdev, "unlocking floptical drive\n");
185 scsi_cmd[0] = MODE_SENSE;
186 scsi_cmd[1] = 0;
187 scsi_cmd[2] = 0x2e;
188 scsi_cmd[3] = 0;
189 scsi_cmd[4] = 0x2a; /* size */
190 scsi_cmd[5] = 0;
191 scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE, result, 0x2a, NULL,
192 SCSI_TIMEOUT, 3, NULL);
193 }
194
195 /**
196 * scsi_alloc_sdev - allocate and setup a scsi_Device
197 * @starget: which target to allocate a &scsi_device for
198 * @lun: which lun
199 * @hostdata: usually NULL and set by ->slave_alloc instead
200 *
201 * Description:
202 * Allocate, initialize for io, and return a pointer to a scsi_Device.
203 * Stores the @shost, @channel, @id, and @lun in the scsi_Device, and
204 * adds scsi_Device to the appropriate list.
205 *
206 * Return value:
207 * scsi_Device pointer, or NULL on failure.
208 **/
209 static struct scsi_device *scsi_alloc_sdev(struct scsi_target *starget,
210 u64 lun, void *hostdata)
211 {
212 struct scsi_device *sdev;
213 int display_failure_msg = 1, ret;
214 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
215 extern void scsi_evt_thread(struct work_struct *work);
216 extern void scsi_requeue_run_queue(struct work_struct *work);
217
218 sdev = kzalloc(sizeof(*sdev) + shost->transportt->device_size,
219 GFP_ATOMIC);
220 if (!sdev)
221 goto out;
222
223 sdev->vendor = scsi_null_device_strs;
224 sdev->model = scsi_null_device_strs;
225 sdev->rev = scsi_null_device_strs;
226 sdev->host = shost;
227 sdev->queue_ramp_up_period = SCSI_DEFAULT_RAMP_UP_PERIOD;
228 sdev->id = starget->id;
229 sdev->lun = lun;
230 sdev->channel = starget->channel;
231 sdev->sdev_state = SDEV_CREATED;
232 INIT_LIST_HEAD(&sdev->siblings);
233 INIT_LIST_HEAD(&sdev->same_target_siblings);
234 INIT_LIST_HEAD(&sdev->cmd_list);
235 INIT_LIST_HEAD(&sdev->starved_entry);
236 INIT_LIST_HEAD(&sdev->event_list);
237 spin_lock_init(&sdev->list_lock);
238 INIT_WORK(&sdev->event_work, scsi_evt_thread);
239 INIT_WORK(&sdev->requeue_work, scsi_requeue_run_queue);
240
241 sdev->sdev_gendev.parent = get_device(&starget->dev);
242 sdev->sdev_target = starget;
243
244 /* usually NULL and set by ->slave_alloc instead */
245 sdev->hostdata = hostdata;
246
247 /* if the device needs this changing, it may do so in the
248 * slave_configure function */
249 sdev->max_device_blocked = SCSI_DEFAULT_DEVICE_BLOCKED;
250
251 /*
252 * Some low level driver could use device->type
253 */
254 sdev->type = -1;
255
256 /*
257 * Assume that the device will have handshaking problems,
258 * and then fix this field later if it turns out it
259 * doesn't
260 */
261 sdev->borken = 1;
262
263 if (shost_use_blk_mq(shost))
264 sdev->request_queue = scsi_mq_alloc_queue(sdev);
265 else
266 sdev->request_queue = scsi_alloc_queue(sdev);
267 if (!sdev->request_queue) {
268 /* release fn is set up in scsi_sysfs_device_initialise, so
269 * have to free and put manually here */
270 put_device(&starget->dev);
271 kfree(sdev);
272 goto out;
273 }
274 WARN_ON_ONCE(!blk_get_queue(sdev->request_queue));
275 sdev->request_queue->queuedata = sdev;
276
277 if (!shost_use_blk_mq(sdev->host) &&
278 (shost->bqt || shost->hostt->use_blk_tags)) {
279 blk_queue_init_tags(sdev->request_queue,
280 sdev->host->cmd_per_lun, shost->bqt);
281 }
282 scsi_change_queue_depth(sdev, sdev->host->cmd_per_lun);
283
284 scsi_sysfs_device_initialize(sdev);
285
286 if (shost->hostt->slave_alloc) {
287 ret = shost->hostt->slave_alloc(sdev);
288 if (ret) {
289 /*
290 * if LLDD reports slave not present, don't clutter
291 * console with alloc failure messages
292 */
293 if (ret == -ENXIO)
294 display_failure_msg = 0;
295 goto out_device_destroy;
296 }
297 }
298
299 return sdev;
300
301 out_device_destroy:
302 __scsi_remove_device(sdev);
303 out:
304 if (display_failure_msg)
305 printk(ALLOC_FAILURE_MSG, __func__);
306 return NULL;
307 }
308
309 static void scsi_target_destroy(struct scsi_target *starget)
310 {
311 struct device *dev = &starget->dev;
312 struct Scsi_Host *shost = dev_to_shost(dev->parent);
313 unsigned long flags;
314
315 starget->state = STARGET_DEL;
316 transport_destroy_device(dev);
317 spin_lock_irqsave(shost->host_lock, flags);
318 if (shost->hostt->target_destroy)
319 shost->hostt->target_destroy(starget);
320 list_del_init(&starget->siblings);
321 spin_unlock_irqrestore(shost->host_lock, flags);
322 put_device(dev);
323 }
324
325 static void scsi_target_dev_release(struct device *dev)
326 {
327 struct device *parent = dev->parent;
328 struct scsi_target *starget = to_scsi_target(dev);
329
330 kfree(starget);
331 put_device(parent);
332 }
333
334 static struct device_type scsi_target_type = {
335 .name = "scsi_target",
336 .release = scsi_target_dev_release,
337 };
338
339 int scsi_is_target_device(const struct device *dev)
340 {
341 return dev->type == &scsi_target_type;
342 }
343 EXPORT_SYMBOL(scsi_is_target_device);
344
345 static struct scsi_target *__scsi_find_target(struct device *parent,
346 int channel, uint id)
347 {
348 struct scsi_target *starget, *found_starget = NULL;
349 struct Scsi_Host *shost = dev_to_shost(parent);
350 /*
351 * Search for an existing target for this sdev.
352 */
353 list_for_each_entry(starget, &shost->__targets, siblings) {
354 if (starget->id == id &&
355 starget->channel == channel) {
356 found_starget = starget;
357 break;
358 }
359 }
360 if (found_starget)
361 get_device(&found_starget->dev);
362
363 return found_starget;
364 }
365
366 /**
367 * scsi_target_reap_ref_release - remove target from visibility
368 * @kref: the reap_ref in the target being released
369 *
370 * Called on last put of reap_ref, which is the indication that no device
371 * under this target is visible anymore, so render the target invisible in
372 * sysfs. Note: we have to be in user context here because the target reaps
373 * should be done in places where the scsi device visibility is being removed.
374 */
375 static void scsi_target_reap_ref_release(struct kref *kref)
376 {
377 struct scsi_target *starget
378 = container_of(kref, struct scsi_target, reap_ref);
379
380 /*
381 * if we get here and the target is still in the CREATED state that
382 * means it was allocated but never made visible (because a scan
383 * turned up no LUNs), so don't call device_del() on it.
384 */
385 if (starget->state != STARGET_CREATED) {
386 transport_remove_device(&starget->dev);
387 device_del(&starget->dev);
388 }
389 scsi_target_destroy(starget);
390 }
391
392 static void scsi_target_reap_ref_put(struct scsi_target *starget)
393 {
394 kref_put(&starget->reap_ref, scsi_target_reap_ref_release);
395 }
396
397 /**
398 * scsi_alloc_target - allocate a new or find an existing target
399 * @parent: parent of the target (need not be a scsi host)
400 * @channel: target channel number (zero if no channels)
401 * @id: target id number
402 *
403 * Return an existing target if one exists, provided it hasn't already
404 * gone into STARGET_DEL state, otherwise allocate a new target.
405 *
406 * The target is returned with an incremented reference, so the caller
407 * is responsible for both reaping and doing a last put
408 */
409 static struct scsi_target *scsi_alloc_target(struct device *parent,
410 int channel, uint id)
411 {
412 struct Scsi_Host *shost = dev_to_shost(parent);
413 struct device *dev = NULL;
414 unsigned long flags;
415 const int size = sizeof(struct scsi_target)
416 + shost->transportt->target_size;
417 struct scsi_target *starget;
418 struct scsi_target *found_target;
419 int error, ref_got;
420
421 starget = kzalloc(size, GFP_KERNEL);
422 if (!starget) {
423 printk(KERN_ERR "%s: allocation failure\n", __func__);
424 return NULL;
425 }
426 dev = &starget->dev;
427 device_initialize(dev);
428 kref_init(&starget->reap_ref);
429 dev->parent = get_device(parent);
430 dev_set_name(dev, "target%d:%d:%d", shost->host_no, channel, id);
431 dev->bus = &scsi_bus_type;
432 dev->type = &scsi_target_type;
433 starget->id = id;
434 starget->channel = channel;
435 starget->can_queue = 0;
436 INIT_LIST_HEAD(&starget->siblings);
437 INIT_LIST_HEAD(&starget->devices);
438 starget->state = STARGET_CREATED;
439 starget->scsi_level = SCSI_2;
440 starget->max_target_blocked = SCSI_DEFAULT_TARGET_BLOCKED;
441 retry:
442 spin_lock_irqsave(shost->host_lock, flags);
443
444 found_target = __scsi_find_target(parent, channel, id);
445 if (found_target)
446 goto found;
447
448 list_add_tail(&starget->siblings, &shost->__targets);
449 spin_unlock_irqrestore(shost->host_lock, flags);
450 /* allocate and add */
451 transport_setup_device(dev);
452 if (shost->hostt->target_alloc) {
453 error = shost->hostt->target_alloc(starget);
454
455 if(error) {
456 dev_printk(KERN_ERR, dev, "target allocation failed, error %d\n", error);
457 /* don't want scsi_target_reap to do the final
458 * put because it will be under the host lock */
459 scsi_target_destroy(starget);
460 return NULL;
461 }
462 }
463 get_device(dev);
464
465 return starget;
466
467 found:
468 /*
469 * release routine already fired if kref is zero, so if we can still
470 * take the reference, the target must be alive. If we can't, it must
471 * be dying and we need to wait for a new target
472 */
473 ref_got = kref_get_unless_zero(&found_target->reap_ref);
474
475 spin_unlock_irqrestore(shost->host_lock, flags);
476 if (ref_got) {
477 put_device(dev);
478 return found_target;
479 }
480 /*
481 * Unfortunately, we found a dying target; need to wait until it's
482 * dead before we can get a new one. There is an anomaly here. We
483 * *should* call scsi_target_reap() to balance the kref_get() of the
484 * reap_ref above. However, since the target being released, it's
485 * already invisible and the reap_ref is irrelevant. If we call
486 * scsi_target_reap() we might spuriously do another device_del() on
487 * an already invisible target.
488 */
489 put_device(&found_target->dev);
490 /*
491 * length of time is irrelevant here, we just want to yield the CPU
492 * for a tick to avoid busy waiting for the target to die.
493 */
494 msleep(1);
495 goto retry;
496 }
497
498 /**
499 * scsi_target_reap - check to see if target is in use and destroy if not
500 * @starget: target to be checked
501 *
502 * This is used after removing a LUN or doing a last put of the target
503 * it checks atomically that nothing is using the target and removes
504 * it if so.
505 */
506 void scsi_target_reap(struct scsi_target *starget)
507 {
508 /*
509 * serious problem if this triggers: STARGET_DEL is only set in the if
510 * the reap_ref drops to zero, so we're trying to do another final put
511 * on an already released kref
512 */
513 BUG_ON(starget->state == STARGET_DEL);
514 scsi_target_reap_ref_put(starget);
515 }
516
517 /**
518 * sanitize_inquiry_string - remove non-graphical chars from an INQUIRY result string
519 * @s: INQUIRY result string to sanitize
520 * @len: length of the string
521 *
522 * Description:
523 * The SCSI spec says that INQUIRY vendor, product, and revision
524 * strings must consist entirely of graphic ASCII characters,
525 * padded on the right with spaces. Since not all devices obey
526 * this rule, we will replace non-graphic or non-ASCII characters
527 * with spaces. Exception: a NUL character is interpreted as a
528 * string terminator, so all the following characters are set to
529 * spaces.
530 **/
531 static void sanitize_inquiry_string(unsigned char *s, int len)
532 {
533 int terminated = 0;
534
535 for (; len > 0; (--len, ++s)) {
536 if (*s == 0)
537 terminated = 1;
538 if (terminated || *s < 0x20 || *s > 0x7e)
539 *s = ' ';
540 }
541 }
542
543 /**
544 * scsi_probe_lun - probe a single LUN using a SCSI INQUIRY
545 * @sdev: scsi_device to probe
546 * @inq_result: area to store the INQUIRY result
547 * @result_len: len of inq_result
548 * @bflags: store any bflags found here
549 *
550 * Description:
551 * Probe the lun associated with @req using a standard SCSI INQUIRY;
552 *
553 * If the INQUIRY is successful, zero is returned and the
554 * INQUIRY data is in @inq_result; the scsi_level and INQUIRY length
555 * are copied to the scsi_device any flags value is stored in *@bflags.
556 **/
557 static int scsi_probe_lun(struct scsi_device *sdev, unsigned char *inq_result,
558 int result_len, int *bflags)
559 {
560 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
561 int first_inquiry_len, try_inquiry_len, next_inquiry_len;
562 int response_len = 0;
563 int pass, count, result;
564 struct scsi_sense_hdr sshdr;
565
566 *bflags = 0;
567
568 /* Perform up to 3 passes. The first pass uses a conservative
569 * transfer length of 36 unless sdev->inquiry_len specifies a
570 * different value. */
571 first_inquiry_len = sdev->inquiry_len ? sdev->inquiry_len : 36;
572 try_inquiry_len = first_inquiry_len;
573 pass = 1;
574
575 next_pass:
576 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
577 "scsi scan: INQUIRY pass %d length %d\n",
578 pass, try_inquiry_len));
579
580 /* Each pass gets up to three chances to ignore Unit Attention */
581 for (count = 0; count < 3; ++count) {
582 int resid;
583
584 memset(scsi_cmd, 0, 6);
585 scsi_cmd[0] = INQUIRY;
586 scsi_cmd[4] = (unsigned char) try_inquiry_len;
587
588 memset(inq_result, 0, try_inquiry_len);
589
590 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
591 inq_result, try_inquiry_len, &sshdr,
592 HZ / 2 + HZ * scsi_inq_timeout, 3,
593 &resid);
594
595 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
596 "scsi scan: INQUIRY %s with code 0x%x\n",
597 result ? "failed" : "successful", result));
598
599 if (result) {
600 /*
601 * not-ready to ready transition [asc/ascq=0x28/0x0]
602 * or power-on, reset [asc/ascq=0x29/0x0], continue.
603 * INQUIRY should not yield UNIT_ATTENTION
604 * but many buggy devices do so anyway.
605 */
606 if ((driver_byte(result) & DRIVER_SENSE) &&
607 scsi_sense_valid(&sshdr)) {
608 if ((sshdr.sense_key == UNIT_ATTENTION) &&
609 ((sshdr.asc == 0x28) ||
610 (sshdr.asc == 0x29)) &&
611 (sshdr.ascq == 0))
612 continue;
613 }
614 } else {
615 /*
616 * if nothing was transferred, we try
617 * again. It's a workaround for some USB
618 * devices.
619 */
620 if (resid == try_inquiry_len)
621 continue;
622 }
623 break;
624 }
625
626 if (result == 0) {
627 sanitize_inquiry_string(&inq_result[8], 8);
628 sanitize_inquiry_string(&inq_result[16], 16);
629 sanitize_inquiry_string(&inq_result[32], 4);
630
631 response_len = inq_result[4] + 5;
632 if (response_len > 255)
633 response_len = first_inquiry_len; /* sanity */
634
635 /*
636 * Get any flags for this device.
637 *
638 * XXX add a bflags to scsi_device, and replace the
639 * corresponding bit fields in scsi_device, so bflags
640 * need not be passed as an argument.
641 */
642 *bflags = scsi_get_device_flags(sdev, &inq_result[8],
643 &inq_result[16]);
644
645 /* When the first pass succeeds we gain information about
646 * what larger transfer lengths might work. */
647 if (pass == 1) {
648 if (BLIST_INQUIRY_36 & *bflags)
649 next_inquiry_len = 36;
650 else if (BLIST_INQUIRY_58 & *bflags)
651 next_inquiry_len = 58;
652 else if (sdev->inquiry_len)
653 next_inquiry_len = sdev->inquiry_len;
654 else
655 next_inquiry_len = response_len;
656
657 /* If more data is available perform the second pass */
658 if (next_inquiry_len > try_inquiry_len) {
659 try_inquiry_len = next_inquiry_len;
660 pass = 2;
661 goto next_pass;
662 }
663 }
664
665 } else if (pass == 2) {
666 sdev_printk(KERN_INFO, sdev,
667 "scsi scan: %d byte inquiry failed. "
668 "Consider BLIST_INQUIRY_36 for this device\n",
669 try_inquiry_len);
670
671 /* If this pass failed, the third pass goes back and transfers
672 * the same amount as we successfully got in the first pass. */
673 try_inquiry_len = first_inquiry_len;
674 pass = 3;
675 goto next_pass;
676 }
677
678 /* If the last transfer attempt got an error, assume the
679 * peripheral doesn't exist or is dead. */
680 if (result)
681 return -EIO;
682
683 /* Don't report any more data than the device says is valid */
684 sdev->inquiry_len = min(try_inquiry_len, response_len);
685
686 /*
687 * XXX Abort if the response length is less than 36? If less than
688 * 32, the lookup of the device flags (above) could be invalid,
689 * and it would be possible to take an incorrect action - we do
690 * not want to hang because of a short INQUIRY. On the flip side,
691 * if the device is spun down or becoming ready (and so it gives a
692 * short INQUIRY), an abort here prevents any further use of the
693 * device, including spin up.
694 *
695 * On the whole, the best approach seems to be to assume the first
696 * 36 bytes are valid no matter what the device says. That's
697 * better than copying < 36 bytes to the inquiry-result buffer
698 * and displaying garbage for the Vendor, Product, or Revision
699 * strings.
700 */
701 if (sdev->inquiry_len < 36) {
702 sdev_printk(KERN_INFO, sdev,
703 "scsi scan: INQUIRY result too short (%d),"
704 " using 36\n", sdev->inquiry_len);
705 sdev->inquiry_len = 36;
706 }
707
708 /*
709 * Related to the above issue:
710 *
711 * XXX Devices (disk or all?) should be sent a TEST UNIT READY,
712 * and if not ready, sent a START_STOP to start (maybe spin up) and
713 * then send the INQUIRY again, since the INQUIRY can change after
714 * a device is initialized.
715 *
716 * Ideally, start a device if explicitly asked to do so. This
717 * assumes that a device is spun up on power on, spun down on
718 * request, and then spun up on request.
719 */
720
721 /*
722 * The scanning code needs to know the scsi_level, even if no
723 * device is attached at LUN 0 (SCSI_SCAN_TARGET_PRESENT) so
724 * non-zero LUNs can be scanned.
725 */
726 sdev->scsi_level = inq_result[2] & 0x07;
727 if (sdev->scsi_level >= 2 ||
728 (sdev->scsi_level == 1 && (inq_result[3] & 0x0f) == 1))
729 sdev->scsi_level++;
730 sdev->sdev_target->scsi_level = sdev->scsi_level;
731
732 /*
733 * If SCSI-2 or lower, and if the transport requires it,
734 * store the LUN value in CDB[1].
735 */
736 sdev->lun_in_cdb = 0;
737 if (sdev->scsi_level <= SCSI_2 &&
738 sdev->scsi_level != SCSI_UNKNOWN &&
739 !sdev->host->no_scsi2_lun_in_cdb)
740 sdev->lun_in_cdb = 1;
741
742 return 0;
743 }
744
745 /**
746 * scsi_add_lun - allocate and fully initialze a scsi_device
747 * @sdev: holds information to be stored in the new scsi_device
748 * @inq_result: holds the result of a previous INQUIRY to the LUN
749 * @bflags: black/white list flag
750 * @async: 1 if this device is being scanned asynchronously
751 *
752 * Description:
753 * Initialize the scsi_device @sdev. Optionally set fields based
754 * on values in *@bflags.
755 *
756 * Return:
757 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
758 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
759 **/
760 static int scsi_add_lun(struct scsi_device *sdev, unsigned char *inq_result,
761 int *bflags, int async)
762 {
763 int ret;
764
765 /*
766 * XXX do not save the inquiry, since it can change underneath us,
767 * save just vendor/model/rev.
768 *
769 * Rather than save it and have an ioctl that retrieves the saved
770 * value, have an ioctl that executes the same INQUIRY code used
771 * in scsi_probe_lun, let user level programs doing INQUIRY
772 * scanning run at their own risk, or supply a user level program
773 * that can correctly scan.
774 */
775
776 /*
777 * Copy at least 36 bytes of INQUIRY data, so that we don't
778 * dereference unallocated memory when accessing the Vendor,
779 * Product, and Revision strings. Badly behaved devices may set
780 * the INQUIRY Additional Length byte to a small value, indicating
781 * these strings are invalid, but often they contain plausible data
782 * nonetheless. It doesn't matter if the device sent < 36 bytes
783 * total, since scsi_probe_lun() initializes inq_result with 0s.
784 */
785 sdev->inquiry = kmemdup(inq_result,
786 max_t(size_t, sdev->inquiry_len, 36),
787 GFP_ATOMIC);
788 if (sdev->inquiry == NULL)
789 return SCSI_SCAN_NO_RESPONSE;
790
791 sdev->vendor = (char *) (sdev->inquiry + 8);
792 sdev->model = (char *) (sdev->inquiry + 16);
793 sdev->rev = (char *) (sdev->inquiry + 32);
794
795 if (strncmp(sdev->vendor, "ATA ", 8) == 0) {
796 /*
797 * sata emulation layer device. This is a hack to work around
798 * the SATL power management specifications which state that
799 * when the SATL detects the device has gone into standby
800 * mode, it shall respond with NOT READY.
801 */
802 sdev->allow_restart = 1;
803 }
804
805 if (*bflags & BLIST_ISROM) {
806 sdev->type = TYPE_ROM;
807 sdev->removable = 1;
808 } else {
809 sdev->type = (inq_result[0] & 0x1f);
810 sdev->removable = (inq_result[1] & 0x80) >> 7;
811
812 /*
813 * some devices may respond with wrong type for
814 * well-known logical units. Force well-known type
815 * to enumerate them correctly.
816 */
817 if (scsi_is_wlun(sdev->lun) && sdev->type != TYPE_WLUN) {
818 sdev_printk(KERN_WARNING, sdev,
819 "%s: correcting incorrect peripheral device type 0x%x for W-LUN 0x%16xhN\n",
820 __func__, sdev->type, (unsigned int)sdev->lun);
821 sdev->type = TYPE_WLUN;
822 }
823
824 }
825
826 if (sdev->type == TYPE_RBC || sdev->type == TYPE_ROM) {
827 /* RBC and MMC devices can return SCSI-3 compliance and yet
828 * still not support REPORT LUNS, so make them act as
829 * BLIST_NOREPORTLUN unless BLIST_REPORTLUN2 is
830 * specifically set */
831 if ((*bflags & BLIST_REPORTLUN2) == 0)
832 *bflags |= BLIST_NOREPORTLUN;
833 }
834
835 /*
836 * For a peripheral qualifier (PQ) value of 1 (001b), the SCSI
837 * spec says: The device server is capable of supporting the
838 * specified peripheral device type on this logical unit. However,
839 * the physical device is not currently connected to this logical
840 * unit.
841 *
842 * The above is vague, as it implies that we could treat 001 and
843 * 011 the same. Stay compatible with previous code, and create a
844 * scsi_device for a PQ of 1
845 *
846 * Don't set the device offline here; rather let the upper
847 * level drivers eval the PQ to decide whether they should
848 * attach. So remove ((inq_result[0] >> 5) & 7) == 1 check.
849 */
850
851 sdev->inq_periph_qual = (inq_result[0] >> 5) & 7;
852 sdev->lockable = sdev->removable;
853 sdev->soft_reset = (inq_result[7] & 1) && ((inq_result[3] & 7) == 2);
854
855 if (sdev->scsi_level >= SCSI_3 ||
856 (sdev->inquiry_len > 56 && inq_result[56] & 0x04))
857 sdev->ppr = 1;
858 if (inq_result[7] & 0x60)
859 sdev->wdtr = 1;
860 if (inq_result[7] & 0x10)
861 sdev->sdtr = 1;
862
863 sdev_printk(KERN_NOTICE, sdev, "%s %.8s %.16s %.4s PQ: %d "
864 "ANSI: %d%s\n", scsi_device_type(sdev->type),
865 sdev->vendor, sdev->model, sdev->rev,
866 sdev->inq_periph_qual, inq_result[2] & 0x07,
867 (inq_result[3] & 0x0f) == 1 ? " CCS" : "");
868
869 if ((sdev->scsi_level >= SCSI_2) && (inq_result[7] & 2) &&
870 !(*bflags & BLIST_NOTQ)) {
871 sdev->tagged_supported = 1;
872 sdev->simple_tags = 1;
873 }
874
875 /*
876 * Some devices (Texel CD ROM drives) have handshaking problems
877 * when used with the Seagate controllers. borken is initialized
878 * to 1, and then set it to 0 here.
879 */
880 if ((*bflags & BLIST_BORKEN) == 0)
881 sdev->borken = 0;
882
883 if (*bflags & BLIST_NO_ULD_ATTACH)
884 sdev->no_uld_attach = 1;
885
886 /*
887 * Apparently some really broken devices (contrary to the SCSI
888 * standards) need to be selected without asserting ATN
889 */
890 if (*bflags & BLIST_SELECT_NO_ATN)
891 sdev->select_no_atn = 1;
892
893 /*
894 * Maximum 512 sector transfer length
895 * broken RA4x00 Compaq Disk Array
896 */
897 if (*bflags & BLIST_MAX_512)
898 blk_queue_max_hw_sectors(sdev->request_queue, 512);
899
900 /*
901 * Some devices may not want to have a start command automatically
902 * issued when a device is added.
903 */
904 if (*bflags & BLIST_NOSTARTONADD)
905 sdev->no_start_on_add = 1;
906
907 if (*bflags & BLIST_SINGLELUN)
908 scsi_target(sdev)->single_lun = 1;
909
910 sdev->use_10_for_rw = 1;
911
912 if (*bflags & BLIST_MS_SKIP_PAGE_08)
913 sdev->skip_ms_page_8 = 1;
914
915 if (*bflags & BLIST_MS_SKIP_PAGE_3F)
916 sdev->skip_ms_page_3f = 1;
917
918 if (*bflags & BLIST_USE_10_BYTE_MS)
919 sdev->use_10_for_ms = 1;
920
921 /* some devices don't like REPORT SUPPORTED OPERATION CODES
922 * and will simply timeout causing sd_mod init to take a very
923 * very long time */
924 if (*bflags & BLIST_NO_RSOC)
925 sdev->no_report_opcodes = 1;
926
927 /* set the device running here so that slave configure
928 * may do I/O */
929 ret = scsi_device_set_state(sdev, SDEV_RUNNING);
930 if (ret) {
931 ret = scsi_device_set_state(sdev, SDEV_BLOCK);
932
933 if (ret) {
934 sdev_printk(KERN_ERR, sdev,
935 "in wrong state %s to complete scan\n",
936 scsi_device_state_name(sdev->sdev_state));
937 return SCSI_SCAN_NO_RESPONSE;
938 }
939 }
940
941 if (*bflags & BLIST_MS_192_BYTES_FOR_3F)
942 sdev->use_192_bytes_for_3f = 1;
943
944 if (*bflags & BLIST_NOT_LOCKABLE)
945 sdev->lockable = 0;
946
947 if (*bflags & BLIST_RETRY_HWERROR)
948 sdev->retry_hwerror = 1;
949
950 if (*bflags & BLIST_NO_DIF)
951 sdev->no_dif = 1;
952
953 sdev->eh_timeout = SCSI_DEFAULT_EH_TIMEOUT;
954
955 if (*bflags & BLIST_TRY_VPD_PAGES)
956 sdev->try_vpd_pages = 1;
957 else if (*bflags & BLIST_SKIP_VPD_PAGES)
958 sdev->skip_vpd_pages = 1;
959
960 transport_configure_device(&sdev->sdev_gendev);
961
962 if (sdev->host->hostt->slave_configure) {
963 ret = sdev->host->hostt->slave_configure(sdev);
964 if (ret) {
965 /*
966 * if LLDD reports slave not present, don't clutter
967 * console with alloc failure messages
968 */
969 if (ret != -ENXIO) {
970 sdev_printk(KERN_ERR, sdev,
971 "failed to configure device\n");
972 }
973 return SCSI_SCAN_NO_RESPONSE;
974 }
975 }
976
977 if (sdev->scsi_level >= SCSI_3)
978 scsi_attach_vpd(sdev);
979
980 sdev->max_queue_depth = sdev->queue_depth;
981
982 /*
983 * Ok, the device is now all set up, we can
984 * register it and tell the rest of the kernel
985 * about it.
986 */
987 if (!async && scsi_sysfs_add_sdev(sdev) != 0)
988 return SCSI_SCAN_NO_RESPONSE;
989
990 return SCSI_SCAN_LUN_PRESENT;
991 }
992
993 #ifdef CONFIG_SCSI_LOGGING
994 /**
995 * scsi_inq_str - print INQUIRY data from min to max index, strip trailing whitespace
996 * @buf: Output buffer with at least end-first+1 bytes of space
997 * @inq: Inquiry buffer (input)
998 * @first: Offset of string into inq
999 * @end: Index after last character in inq
1000 */
1001 static unsigned char *scsi_inq_str(unsigned char *buf, unsigned char *inq,
1002 unsigned first, unsigned end)
1003 {
1004 unsigned term = 0, idx;
1005
1006 for (idx = 0; idx + first < end && idx + first < inq[4] + 5; idx++) {
1007 if (inq[idx+first] > ' ') {
1008 buf[idx] = inq[idx+first];
1009 term = idx+1;
1010 } else {
1011 buf[idx] = ' ';
1012 }
1013 }
1014 buf[term] = 0;
1015 return buf;
1016 }
1017 #endif
1018
1019 /**
1020 * scsi_probe_and_add_lun - probe a LUN, if a LUN is found add it
1021 * @starget: pointer to target device structure
1022 * @lun: LUN of target device
1023 * @bflagsp: store bflags here if not NULL
1024 * @sdevp: probe the LUN corresponding to this scsi_device
1025 * @rescan: if nonzero skip some code only needed on first scan
1026 * @hostdata: passed to scsi_alloc_sdev()
1027 *
1028 * Description:
1029 * Call scsi_probe_lun, if a LUN with an attached device is found,
1030 * allocate and set it up by calling scsi_add_lun.
1031 *
1032 * Return:
1033 * SCSI_SCAN_NO_RESPONSE: could not allocate or setup a scsi_device
1034 * SCSI_SCAN_TARGET_PRESENT: target responded, but no device is
1035 * attached at the LUN
1036 * SCSI_SCAN_LUN_PRESENT: a new scsi_device was allocated and initialized
1037 **/
1038 static int scsi_probe_and_add_lun(struct scsi_target *starget,
1039 u64 lun, int *bflagsp,
1040 struct scsi_device **sdevp, int rescan,
1041 void *hostdata)
1042 {
1043 struct scsi_device *sdev;
1044 unsigned char *result;
1045 int bflags, res = SCSI_SCAN_NO_RESPONSE, result_len = 256;
1046 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1047
1048 /*
1049 * The rescan flag is used as an optimization, the first scan of a
1050 * host adapter calls into here with rescan == 0.
1051 */
1052 sdev = scsi_device_lookup_by_target(starget, lun);
1053 if (sdev) {
1054 if (rescan || !scsi_device_created(sdev)) {
1055 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
1056 "scsi scan: device exists on %s\n",
1057 dev_name(&sdev->sdev_gendev)));
1058 if (sdevp)
1059 *sdevp = sdev;
1060 else
1061 scsi_device_put(sdev);
1062
1063 if (bflagsp)
1064 *bflagsp = scsi_get_device_flags(sdev,
1065 sdev->vendor,
1066 sdev->model);
1067 return SCSI_SCAN_LUN_PRESENT;
1068 }
1069 scsi_device_put(sdev);
1070 } else
1071 sdev = scsi_alloc_sdev(starget, lun, hostdata);
1072 if (!sdev)
1073 goto out;
1074
1075 result = kmalloc(result_len, GFP_ATOMIC |
1076 ((shost->unchecked_isa_dma) ? __GFP_DMA : 0));
1077 if (!result)
1078 goto out_free_sdev;
1079
1080 if (scsi_probe_lun(sdev, result, result_len, &bflags))
1081 goto out_free_result;
1082
1083 if (bflagsp)
1084 *bflagsp = bflags;
1085 /*
1086 * result contains valid SCSI INQUIRY data.
1087 */
1088 if (((result[0] >> 5) == 3) && !(bflags & BLIST_ATTACH_PQ3)) {
1089 /*
1090 * For a Peripheral qualifier 3 (011b), the SCSI
1091 * spec says: The device server is not capable of
1092 * supporting a physical device on this logical
1093 * unit.
1094 *
1095 * For disks, this implies that there is no
1096 * logical disk configured at sdev->lun, but there
1097 * is a target id responding.
1098 */
1099 SCSI_LOG_SCAN_BUS(2, sdev_printk(KERN_INFO, sdev, "scsi scan:"
1100 " peripheral qualifier of 3, device not"
1101 " added\n"))
1102 if (lun == 0) {
1103 SCSI_LOG_SCAN_BUS(1, {
1104 unsigned char vend[9];
1105 unsigned char mod[17];
1106
1107 sdev_printk(KERN_INFO, sdev,
1108 "scsi scan: consider passing scsi_mod."
1109 "dev_flags=%s:%s:0x240 or 0x1000240\n",
1110 scsi_inq_str(vend, result, 8, 16),
1111 scsi_inq_str(mod, result, 16, 32));
1112 });
1113
1114 }
1115
1116 res = SCSI_SCAN_TARGET_PRESENT;
1117 goto out_free_result;
1118 }
1119
1120 /*
1121 * Some targets may set slight variations of PQ and PDT to signal
1122 * that no LUN is present, so don't add sdev in these cases.
1123 * Two specific examples are:
1124 * 1) NetApp targets: return PQ=1, PDT=0x1f
1125 * 2) USB UFI: returns PDT=0x1f, with the PQ bits being "reserved"
1126 * in the UFI 1.0 spec (we cannot rely on reserved bits).
1127 *
1128 * References:
1129 * 1) SCSI SPC-3, pp. 145-146
1130 * PQ=1: "A peripheral device having the specified peripheral
1131 * device type is not connected to this logical unit. However, the
1132 * device server is capable of supporting the specified peripheral
1133 * device type on this logical unit."
1134 * PDT=0x1f: "Unknown or no device type"
1135 * 2) USB UFI 1.0, p. 20
1136 * PDT=00h Direct-access device (floppy)
1137 * PDT=1Fh none (no FDD connected to the requested logical unit)
1138 */
1139 if (((result[0] >> 5) == 1 || starget->pdt_1f_for_no_lun) &&
1140 (result[0] & 0x1f) == 0x1f &&
1141 !scsi_is_wlun(lun)) {
1142 SCSI_LOG_SCAN_BUS(3, sdev_printk(KERN_INFO, sdev,
1143 "scsi scan: peripheral device type"
1144 " of 31, no device added\n"));
1145 res = SCSI_SCAN_TARGET_PRESENT;
1146 goto out_free_result;
1147 }
1148
1149 res = scsi_add_lun(sdev, result, &bflags, shost->async_scan);
1150 if (res == SCSI_SCAN_LUN_PRESENT) {
1151 if (bflags & BLIST_KEY) {
1152 sdev->lockable = 0;
1153 scsi_unlock_floptical(sdev, result);
1154 }
1155 }
1156
1157 out_free_result:
1158 kfree(result);
1159 out_free_sdev:
1160 if (res == SCSI_SCAN_LUN_PRESENT) {
1161 if (sdevp) {
1162 if (scsi_device_get(sdev) == 0) {
1163 *sdevp = sdev;
1164 } else {
1165 __scsi_remove_device(sdev);
1166 res = SCSI_SCAN_NO_RESPONSE;
1167 }
1168 }
1169 } else
1170 __scsi_remove_device(sdev);
1171 out:
1172 return res;
1173 }
1174
1175 /**
1176 * scsi_sequential_lun_scan - sequentially scan a SCSI target
1177 * @starget: pointer to target structure to scan
1178 * @bflags: black/white list flag for LUN 0
1179 * @scsi_level: Which version of the standard does this device adhere to
1180 * @rescan: passed to scsi_probe_add_lun()
1181 *
1182 * Description:
1183 * Generally, scan from LUN 1 (LUN 0 is assumed to already have been
1184 * scanned) to some maximum lun until a LUN is found with no device
1185 * attached. Use the bflags to figure out any oddities.
1186 *
1187 * Modifies sdevscan->lun.
1188 **/
1189 static void scsi_sequential_lun_scan(struct scsi_target *starget,
1190 int bflags, int scsi_level, int rescan)
1191 {
1192 uint max_dev_lun;
1193 u64 sparse_lun, lun;
1194 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
1195
1196 SCSI_LOG_SCAN_BUS(3, starget_printk(KERN_INFO, starget,
1197 "scsi scan: Sequential scan\n"));
1198
1199 max_dev_lun = min(max_scsi_luns, shost->max_lun);
1200 /*
1201 * If this device is known to support sparse multiple units,
1202 * override the other settings, and scan all of them. Normally,
1203 * SCSI-3 devices should be scanned via the REPORT LUNS.
1204 */
1205 if (bflags & BLIST_SPARSELUN) {
1206 max_dev_lun = shost->max_lun;
1207 sparse_lun = 1;
1208 } else
1209 sparse_lun = 0;
1210
1211 /*
1212 * If less than SCSI_1_CCS, and no special lun scanning, stop
1213 * scanning; this matches 2.4 behaviour, but could just be a bug
1214 * (to continue scanning a SCSI_1_CCS device).
1215 *
1216 * This test is broken. We might not have any device on lun0 for
1217 * a sparselun device, and if that's the case then how would we
1218 * know the real scsi_level, eh? It might make sense to just not
1219 * scan any SCSI_1 device for non-0 luns, but that check would best
1220 * go into scsi_alloc_sdev() and just have it return null when asked
1221 * to alloc an sdev for lun > 0 on an already found SCSI_1 device.
1222 *
1223 if ((sdevscan->scsi_level < SCSI_1_CCS) &&
1224 ((bflags & (BLIST_FORCELUN | BLIST_SPARSELUN | BLIST_MAX5LUN))
1225 == 0))
1226 return;
1227 */
1228 /*
1229 * If this device is known to support multiple units, override
1230 * the other settings, and scan all of them.
1231 */
1232 if (bflags & BLIST_FORCELUN)
1233 max_dev_lun = shost->max_lun;
1234 /*
1235 * REGAL CDC-4X: avoid hang after LUN 4
1236 */
1237 if (bflags & BLIST_MAX5LUN)
1238 max_dev_lun = min(5U, max_dev_lun);
1239 /*
1240 * Do not scan SCSI-2 or lower device past LUN 7, unless
1241 * BLIST_LARGELUN.
1242 */
1243 if (scsi_level < SCSI_3 && !(bflags & BLIST_LARGELUN))
1244 max_dev_lun = min(8U, max_dev_lun);
1245
1246 /*
1247 * Stop scanning at 255 unless BLIST_SCSI3LUN
1248 */
1249 if (!(bflags & BLIST_SCSI3LUN))
1250 max_dev_lun = min(256U, max_dev_lun);
1251
1252 /*
1253 * We have already scanned LUN 0, so start at LUN 1. Keep scanning
1254 * until we reach the max, or no LUN is found and we are not
1255 * sparse_lun.
1256 */
1257 for (lun = 1; lun < max_dev_lun; ++lun)
1258 if ((scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan,
1259 NULL) != SCSI_SCAN_LUN_PRESENT) &&
1260 !sparse_lun)
1261 return;
1262 }
1263
1264 /**
1265 * scsilun_to_int - convert a scsi_lun to an int
1266 * @scsilun: struct scsi_lun to be converted.
1267 *
1268 * Description:
1269 * Convert @scsilun from a struct scsi_lun to a four byte host byte-ordered
1270 * integer, and return the result. The caller must check for
1271 * truncation before using this function.
1272 *
1273 * Notes:
1274 * For a description of the LUN format, post SCSI-3 see the SCSI
1275 * Architecture Model, for SCSI-3 see the SCSI Controller Commands.
1276 *
1277 * Given a struct scsi_lun of: d2 04 0b 03 00 00 00 00, this function
1278 * returns the integer: 0x0b03d204
1279 *
1280 * This encoding will return a standard integer LUN for LUNs smaller
1281 * than 256, which typically use a single level LUN structure with
1282 * addressing method 0.
1283 **/
1284 u64 scsilun_to_int(struct scsi_lun *scsilun)
1285 {
1286 int i;
1287 u64 lun;
1288
1289 lun = 0;
1290 for (i = 0; i < sizeof(lun); i += 2)
1291 lun = lun | (((u64)scsilun->scsi_lun[i] << ((i + 1) * 8)) |
1292 ((u64)scsilun->scsi_lun[i + 1] << (i * 8)));
1293 return lun;
1294 }
1295 EXPORT_SYMBOL(scsilun_to_int);
1296
1297 /**
1298 * int_to_scsilun - reverts an int into a scsi_lun
1299 * @lun: integer to be reverted
1300 * @scsilun: struct scsi_lun to be set.
1301 *
1302 * Description:
1303 * Reverts the functionality of the scsilun_to_int, which packed
1304 * an 8-byte lun value into an int. This routine unpacks the int
1305 * back into the lun value.
1306 *
1307 * Notes:
1308 * Given an integer : 0x0b03d204, this function returns a
1309 * struct scsi_lun of: d2 04 0b 03 00 00 00 00
1310 *
1311 **/
1312 void int_to_scsilun(u64 lun, struct scsi_lun *scsilun)
1313 {
1314 int i;
1315
1316 memset(scsilun->scsi_lun, 0, sizeof(scsilun->scsi_lun));
1317
1318 for (i = 0; i < sizeof(lun); i += 2) {
1319 scsilun->scsi_lun[i] = (lun >> 8) & 0xFF;
1320 scsilun->scsi_lun[i+1] = lun & 0xFF;
1321 lun = lun >> 16;
1322 }
1323 }
1324 EXPORT_SYMBOL(int_to_scsilun);
1325
1326 /**
1327 * scsi_report_lun_scan - Scan using SCSI REPORT LUN results
1328 * @starget: which target
1329 * @bflags: Zero or a mix of BLIST_NOLUN, BLIST_REPORTLUN2, or BLIST_NOREPORTLUN
1330 * @rescan: nonzero if we can skip code only needed on first scan
1331 *
1332 * Description:
1333 * Fast scanning for modern (SCSI-3) devices by sending a REPORT LUN command.
1334 * Scan the resulting list of LUNs by calling scsi_probe_and_add_lun.
1335 *
1336 * If BLINK_REPORTLUN2 is set, scan a target that supports more than 8
1337 * LUNs even if it's older than SCSI-3.
1338 * If BLIST_NOREPORTLUN is set, return 1 always.
1339 * If BLIST_NOLUN is set, return 0 always.
1340 * If starget->no_report_luns is set, return 1 always.
1341 *
1342 * Return:
1343 * 0: scan completed (or no memory, so further scanning is futile)
1344 * 1: could not scan with REPORT LUN
1345 **/
1346 static int scsi_report_lun_scan(struct scsi_target *starget, int bflags,
1347 int rescan)
1348 {
1349 char devname[64];
1350 unsigned char scsi_cmd[MAX_COMMAND_SIZE];
1351 unsigned int length;
1352 u64 lun;
1353 unsigned int num_luns;
1354 unsigned int retries;
1355 int result;
1356 struct scsi_lun *lunp, *lun_data;
1357 struct scsi_sense_hdr sshdr;
1358 struct scsi_device *sdev;
1359 struct Scsi_Host *shost = dev_to_shost(&starget->dev);
1360 int ret = 0;
1361
1362 /*
1363 * Only support SCSI-3 and up devices if BLIST_NOREPORTLUN is not set.
1364 * Also allow SCSI-2 if BLIST_REPORTLUN2 is set and host adapter does
1365 * support more than 8 LUNs.
1366 * Don't attempt if the target doesn't support REPORT LUNS.
1367 */
1368 if (bflags & BLIST_NOREPORTLUN)
1369 return 1;
1370 if (starget->scsi_level < SCSI_2 &&
1371 starget->scsi_level != SCSI_UNKNOWN)
1372 return 1;
1373 if (starget->scsi_level < SCSI_3 &&
1374 (!(bflags & BLIST_REPORTLUN2) || shost->max_lun <= 8))
1375 return 1;
1376 if (bflags & BLIST_NOLUN)
1377 return 0;
1378 if (starget->no_report_luns)
1379 return 1;
1380
1381 if (!(sdev = scsi_device_lookup_by_target(starget, 0))) {
1382 sdev = scsi_alloc_sdev(starget, 0, NULL);
1383 if (!sdev)
1384 return 0;
1385 if (scsi_device_get(sdev)) {
1386 __scsi_remove_device(sdev);
1387 return 0;
1388 }
1389 }
1390
1391 sprintf(devname, "host %d channel %d id %d",
1392 shost->host_no, sdev->channel, sdev->id);
1393
1394 /*
1395 * Allocate enough to hold the header (the same size as one scsi_lun)
1396 * plus the number of luns we are requesting. 511 was the default
1397 * value of the now removed max_report_luns parameter.
1398 */
1399 length = (511 + 1) * sizeof(struct scsi_lun);
1400 retry:
1401 lun_data = kmalloc(length, GFP_KERNEL |
1402 (sdev->host->unchecked_isa_dma ? __GFP_DMA : 0));
1403 if (!lun_data) {
1404 printk(ALLOC_FAILURE_MSG, __func__);
1405 goto out;
1406 }
1407
1408 scsi_cmd[0] = REPORT_LUNS;
1409
1410 /*
1411 * bytes 1 - 5: reserved, set to zero.
1412 */
1413 memset(&scsi_cmd[1], 0, 5);
1414
1415 /*
1416 * bytes 6 - 9: length of the command.
1417 */
1418 put_unaligned_be32(length, &scsi_cmd[6]);
1419
1420 scsi_cmd[10] = 0; /* reserved */
1421 scsi_cmd[11] = 0; /* control */
1422
1423 /*
1424 * We can get a UNIT ATTENTION, for example a power on/reset, so
1425 * retry a few times (like sd.c does for TEST UNIT READY).
1426 * Experience shows some combinations of adapter/devices get at
1427 * least two power on/resets.
1428 *
1429 * Illegal requests (for devices that do not support REPORT LUNS)
1430 * should come through as a check condition, and will not generate
1431 * a retry.
1432 */
1433 for (retries = 0; retries < 3; retries++) {
1434 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1435 "scsi scan: Sending REPORT LUNS to (try %d)\n",
1436 retries));
1437
1438 result = scsi_execute_req(sdev, scsi_cmd, DMA_FROM_DEVICE,
1439 lun_data, length, &sshdr,
1440 SCSI_TIMEOUT + 4 * HZ, 3, NULL);
1441
1442 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1443 "scsi scan: REPORT LUNS"
1444 " %s (try %d) result 0x%x\n",
1445 result ? "failed" : "successful",
1446 retries, result));
1447 if (result == 0)
1448 break;
1449 else if (scsi_sense_valid(&sshdr)) {
1450 if (sshdr.sense_key != UNIT_ATTENTION)
1451 break;
1452 }
1453 }
1454
1455 if (result) {
1456 /*
1457 * The device probably does not support a REPORT LUN command
1458 */
1459 ret = 1;
1460 goto out_err;
1461 }
1462
1463 /*
1464 * Get the length from the first four bytes of lun_data.
1465 */
1466 if (get_unaligned_be32(lun_data->scsi_lun) +
1467 sizeof(struct scsi_lun) > length) {
1468 length = get_unaligned_be32(lun_data->scsi_lun) +
1469 sizeof(struct scsi_lun);
1470 kfree(lun_data);
1471 goto retry;
1472 }
1473 length = get_unaligned_be32(lun_data->scsi_lun);
1474
1475 num_luns = (length / sizeof(struct scsi_lun));
1476
1477 SCSI_LOG_SCAN_BUS(3, sdev_printk (KERN_INFO, sdev,
1478 "scsi scan: REPORT LUN scan\n"));
1479
1480 /*
1481 * Scan the luns in lun_data. The entry at offset 0 is really
1482 * the header, so start at 1 and go up to and including num_luns.
1483 */
1484 for (lunp = &lun_data[1]; lunp <= &lun_data[num_luns]; lunp++) {
1485 lun = scsilun_to_int(lunp);
1486
1487 if (lun > sdev->host->max_lun) {
1488 sdev_printk(KERN_WARNING, sdev,
1489 "lun%llu has a LUN larger than"
1490 " allowed by the host adapter\n", lun);
1491 } else {
1492 int res;
1493
1494 res = scsi_probe_and_add_lun(starget,
1495 lun, NULL, NULL, rescan, NULL);
1496 if (res == SCSI_SCAN_NO_RESPONSE) {
1497 /*
1498 * Got some results, but now none, abort.
1499 */
1500 sdev_printk(KERN_ERR, sdev,
1501 "Unexpected response"
1502 " from lun %llu while scanning, scan"
1503 " aborted\n", (unsigned long long)lun);
1504 break;
1505 }
1506 }
1507 }
1508
1509 out_err:
1510 kfree(lun_data);
1511 out:
1512 scsi_device_put(sdev);
1513 if (scsi_device_created(sdev))
1514 /*
1515 * the sdev we used didn't appear in the report luns scan
1516 */
1517 __scsi_remove_device(sdev);
1518 return ret;
1519 }
1520
1521 struct scsi_device *__scsi_add_device(struct Scsi_Host *shost, uint channel,
1522 uint id, u64 lun, void *hostdata)
1523 {
1524 struct scsi_device *sdev = ERR_PTR(-ENODEV);
1525 struct device *parent = &shost->shost_gendev;
1526 struct scsi_target *starget;
1527
1528 if (strncmp(scsi_scan_type, "none", 4) == 0)
1529 return ERR_PTR(-ENODEV);
1530
1531 starget = scsi_alloc_target(parent, channel, id);
1532 if (!starget)
1533 return ERR_PTR(-ENOMEM);
1534 scsi_autopm_get_target(starget);
1535
1536 mutex_lock(&shost->scan_mutex);
1537 if (!shost->async_scan)
1538 scsi_complete_async_scans();
1539
1540 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
1541 scsi_probe_and_add_lun(starget, lun, NULL, &sdev, 1, hostdata);
1542 scsi_autopm_put_host(shost);
1543 }
1544 mutex_unlock(&shost->scan_mutex);
1545 scsi_autopm_put_target(starget);
1546 /*
1547 * paired with scsi_alloc_target(). Target will be destroyed unless
1548 * scsi_probe_and_add_lun made an underlying device visible
1549 */
1550 scsi_target_reap(starget);
1551 put_device(&starget->dev);
1552
1553 return sdev;
1554 }
1555 EXPORT_SYMBOL(__scsi_add_device);
1556
1557 int scsi_add_device(struct Scsi_Host *host, uint channel,
1558 uint target, u64 lun)
1559 {
1560 struct scsi_device *sdev =
1561 __scsi_add_device(host, channel, target, lun, NULL);
1562 if (IS_ERR(sdev))
1563 return PTR_ERR(sdev);
1564
1565 scsi_device_put(sdev);
1566 return 0;
1567 }
1568 EXPORT_SYMBOL(scsi_add_device);
1569
1570 void scsi_rescan_device(struct device *dev)
1571 {
1572 if (!dev->driver)
1573 return;
1574
1575 if (try_module_get(dev->driver->owner)) {
1576 struct scsi_driver *drv = to_scsi_driver(dev->driver);
1577
1578 if (drv->rescan)
1579 drv->rescan(dev);
1580 module_put(dev->driver->owner);
1581 }
1582 }
1583 EXPORT_SYMBOL(scsi_rescan_device);
1584
1585 static void __scsi_scan_target(struct device *parent, unsigned int channel,
1586 unsigned int id, u64 lun, int rescan)
1587 {
1588 struct Scsi_Host *shost = dev_to_shost(parent);
1589 int bflags = 0;
1590 int res;
1591 struct scsi_target *starget;
1592
1593 if (shost->this_id == id)
1594 /*
1595 * Don't scan the host adapter
1596 */
1597 return;
1598
1599 starget = scsi_alloc_target(parent, channel, id);
1600 if (!starget)
1601 return;
1602 scsi_autopm_get_target(starget);
1603
1604 if (lun != SCAN_WILD_CARD) {
1605 /*
1606 * Scan for a specific host/chan/id/lun.
1607 */
1608 scsi_probe_and_add_lun(starget, lun, NULL, NULL, rescan, NULL);
1609 goto out_reap;
1610 }
1611
1612 /*
1613 * Scan LUN 0, if there is some response, scan further. Ideally, we
1614 * would not configure LUN 0 until all LUNs are scanned.
1615 */
1616 res = scsi_probe_and_add_lun(starget, 0, &bflags, NULL, rescan, NULL);
1617 if (res == SCSI_SCAN_LUN_PRESENT || res == SCSI_SCAN_TARGET_PRESENT) {
1618 if (scsi_report_lun_scan(starget, bflags, rescan) != 0)
1619 /*
1620 * The REPORT LUN did not scan the target,
1621 * do a sequential scan.
1622 */
1623 scsi_sequential_lun_scan(starget, bflags,
1624 starget->scsi_level, rescan);
1625 }
1626
1627 out_reap:
1628 scsi_autopm_put_target(starget);
1629 /*
1630 * paired with scsi_alloc_target(): determine if the target has
1631 * any children at all and if not, nuke it
1632 */
1633 scsi_target_reap(starget);
1634
1635 put_device(&starget->dev);
1636 }
1637
1638 /**
1639 * scsi_scan_target - scan a target id, possibly including all LUNs on the target.
1640 * @parent: host to scan
1641 * @channel: channel to scan
1642 * @id: target id to scan
1643 * @lun: Specific LUN to scan or SCAN_WILD_CARD
1644 * @rescan: passed to LUN scanning routines
1645 *
1646 * Description:
1647 * Scan the target id on @parent, @channel, and @id. Scan at least LUN 0,
1648 * and possibly all LUNs on the target id.
1649 *
1650 * First try a REPORT LUN scan, if that does not scan the target, do a
1651 * sequential scan of LUNs on the target id.
1652 **/
1653 void scsi_scan_target(struct device *parent, unsigned int channel,
1654 unsigned int id, u64 lun, int rescan)
1655 {
1656 struct Scsi_Host *shost = dev_to_shost(parent);
1657
1658 if (strncmp(scsi_scan_type, "none", 4) == 0)
1659 return;
1660
1661 mutex_lock(&shost->scan_mutex);
1662 if (!shost->async_scan)
1663 scsi_complete_async_scans();
1664
1665 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
1666 __scsi_scan_target(parent, channel, id, lun, rescan);
1667 scsi_autopm_put_host(shost);
1668 }
1669 mutex_unlock(&shost->scan_mutex);
1670 }
1671 EXPORT_SYMBOL(scsi_scan_target);
1672
1673 static void scsi_scan_channel(struct Scsi_Host *shost, unsigned int channel,
1674 unsigned int id, u64 lun, int rescan)
1675 {
1676 uint order_id;
1677
1678 if (id == SCAN_WILD_CARD)
1679 for (id = 0; id < shost->max_id; ++id) {
1680 /*
1681 * XXX adapter drivers when possible (FCP, iSCSI)
1682 * could modify max_id to match the current max,
1683 * not the absolute max.
1684 *
1685 * XXX add a shost id iterator, so for example,
1686 * the FC ID can be the same as a target id
1687 * without a huge overhead of sparse id's.
1688 */
1689 if (shost->reverse_ordering)
1690 /*
1691 * Scan from high to low id.
1692 */
1693 order_id = shost->max_id - id - 1;
1694 else
1695 order_id = id;
1696 __scsi_scan_target(&shost->shost_gendev, channel,
1697 order_id, lun, rescan);
1698 }
1699 else
1700 __scsi_scan_target(&shost->shost_gendev, channel,
1701 id, lun, rescan);
1702 }
1703
1704 int scsi_scan_host_selected(struct Scsi_Host *shost, unsigned int channel,
1705 unsigned int id, u64 lun, int rescan)
1706 {
1707 SCSI_LOG_SCAN_BUS(3, shost_printk (KERN_INFO, shost,
1708 "%s: <%u:%u:%llu>\n",
1709 __func__, channel, id, lun));
1710
1711 if (((channel != SCAN_WILD_CARD) && (channel > shost->max_channel)) ||
1712 ((id != SCAN_WILD_CARD) && (id >= shost->max_id)) ||
1713 ((lun != SCAN_WILD_CARD) && (lun >= shost->max_lun)))
1714 return -EINVAL;
1715
1716 mutex_lock(&shost->scan_mutex);
1717 if (!shost->async_scan)
1718 scsi_complete_async_scans();
1719
1720 if (scsi_host_scan_allowed(shost) && scsi_autopm_get_host(shost) == 0) {
1721 if (channel == SCAN_WILD_CARD)
1722 for (channel = 0; channel <= shost->max_channel;
1723 channel++)
1724 scsi_scan_channel(shost, channel, id, lun,
1725 rescan);
1726 else
1727 scsi_scan_channel(shost, channel, id, lun, rescan);
1728 scsi_autopm_put_host(shost);
1729 }
1730 mutex_unlock(&shost->scan_mutex);
1731
1732 return 0;
1733 }
1734
1735 static void scsi_sysfs_add_devices(struct Scsi_Host *shost)
1736 {
1737 struct scsi_device *sdev;
1738 shost_for_each_device(sdev, shost) {
1739 /* target removed before the device could be added */
1740 if (sdev->sdev_state == SDEV_DEL)
1741 continue;
1742 /* If device is already visible, skip adding it to sysfs */
1743 if (sdev->is_visible)
1744 continue;
1745 if (!scsi_host_scan_allowed(shost) ||
1746 scsi_sysfs_add_sdev(sdev) != 0)
1747 __scsi_remove_device(sdev);
1748 }
1749 }
1750
1751 /**
1752 * scsi_prep_async_scan - prepare for an async scan
1753 * @shost: the host which will be scanned
1754 * Returns: a cookie to be passed to scsi_finish_async_scan()
1755 *
1756 * Tells the midlayer this host is going to do an asynchronous scan.
1757 * It reserves the host's position in the scanning list and ensures
1758 * that other asynchronous scans started after this one won't affect the
1759 * ordering of the discovered devices.
1760 */
1761 static struct async_scan_data *scsi_prep_async_scan(struct Scsi_Host *shost)
1762 {
1763 struct async_scan_data *data;
1764 unsigned long flags;
1765
1766 if (strncmp(scsi_scan_type, "sync", 4) == 0)
1767 return NULL;
1768
1769 if (shost->async_scan) {
1770 shost_printk(KERN_INFO, shost, "%s called twice\n", __func__);
1771 dump_stack();
1772 return NULL;
1773 }
1774
1775 data = kmalloc(sizeof(*data), GFP_KERNEL);
1776 if (!data)
1777 goto err;
1778 data->shost = scsi_host_get(shost);
1779 if (!data->shost)
1780 goto err;
1781 init_completion(&data->prev_finished);
1782
1783 mutex_lock(&shost->scan_mutex);
1784 spin_lock_irqsave(shost->host_lock, flags);
1785 shost->async_scan = 1;
1786 spin_unlock_irqrestore(shost->host_lock, flags);
1787 mutex_unlock(&shost->scan_mutex);
1788
1789 spin_lock(&async_scan_lock);
1790 if (list_empty(&scanning_hosts))
1791 complete(&data->prev_finished);
1792 list_add_tail(&data->list, &scanning_hosts);
1793 spin_unlock(&async_scan_lock);
1794
1795 return data;
1796
1797 err:
1798 kfree(data);
1799 return NULL;
1800 }
1801
1802 /**
1803 * scsi_finish_async_scan - asynchronous scan has finished
1804 * @data: cookie returned from earlier call to scsi_prep_async_scan()
1805 *
1806 * All the devices currently attached to this host have been found.
1807 * This function announces all the devices it has found to the rest
1808 * of the system.
1809 */
1810 static void scsi_finish_async_scan(struct async_scan_data *data)
1811 {
1812 struct Scsi_Host *shost;
1813 unsigned long flags;
1814
1815 if (!data)
1816 return;
1817
1818 shost = data->shost;
1819
1820 mutex_lock(&shost->scan_mutex);
1821
1822 if (!shost->async_scan) {
1823 shost_printk(KERN_INFO, shost, "%s called twice\n", __func__);
1824 dump_stack();
1825 mutex_unlock(&shost->scan_mutex);
1826 return;
1827 }
1828
1829 wait_for_completion(&data->prev_finished);
1830
1831 scsi_sysfs_add_devices(shost);
1832
1833 spin_lock_irqsave(shost->host_lock, flags);
1834 shost->async_scan = 0;
1835 spin_unlock_irqrestore(shost->host_lock, flags);
1836
1837 mutex_unlock(&shost->scan_mutex);
1838
1839 spin_lock(&async_scan_lock);
1840 list_del(&data->list);
1841 if (!list_empty(&scanning_hosts)) {
1842 struct async_scan_data *next = list_entry(scanning_hosts.next,
1843 struct async_scan_data, list);
1844 complete(&next->prev_finished);
1845 }
1846 spin_unlock(&async_scan_lock);
1847
1848 scsi_autopm_put_host(shost);
1849 scsi_host_put(shost);
1850 kfree(data);
1851 }
1852
1853 static void do_scsi_scan_host(struct Scsi_Host *shost)
1854 {
1855 if (shost->hostt->scan_finished) {
1856 unsigned long start = jiffies;
1857 if (shost->hostt->scan_start)
1858 shost->hostt->scan_start(shost);
1859
1860 while (!shost->hostt->scan_finished(shost, jiffies - start))
1861 msleep(10);
1862 } else {
1863 scsi_scan_host_selected(shost, SCAN_WILD_CARD, SCAN_WILD_CARD,
1864 SCAN_WILD_CARD, 0);
1865 }
1866 }
1867
1868 static void do_scan_async(void *_data, async_cookie_t c)
1869 {
1870 struct async_scan_data *data = _data;
1871 struct Scsi_Host *shost = data->shost;
1872
1873 do_scsi_scan_host(shost);
1874 scsi_finish_async_scan(data);
1875 }
1876
1877 /**
1878 * scsi_scan_host - scan the given adapter
1879 * @shost: adapter to scan
1880 **/
1881 void scsi_scan_host(struct Scsi_Host *shost)
1882 {
1883 struct async_scan_data *data;
1884
1885 if (strncmp(scsi_scan_type, "none", 4) == 0)
1886 return;
1887 if (scsi_autopm_get_host(shost) < 0)
1888 return;
1889
1890 data = scsi_prep_async_scan(shost);
1891 if (!data) {
1892 do_scsi_scan_host(shost);
1893 scsi_autopm_put_host(shost);
1894 return;
1895 }
1896
1897 /* register with the async subsystem so wait_for_device_probe()
1898 * will flush this work
1899 */
1900 async_schedule(do_scan_async, data);
1901
1902 /* scsi_autopm_put_host(shost) is called in scsi_finish_async_scan() */
1903 }
1904 EXPORT_SYMBOL(scsi_scan_host);
1905
1906 void scsi_forget_host(struct Scsi_Host *shost)
1907 {
1908 struct scsi_device *sdev;
1909 unsigned long flags;
1910
1911 restart:
1912 spin_lock_irqsave(shost->host_lock, flags);
1913 list_for_each_entry(sdev, &shost->__devices, siblings) {
1914 if (sdev->sdev_state == SDEV_DEL)
1915 continue;
1916 spin_unlock_irqrestore(shost->host_lock, flags);
1917 __scsi_remove_device(sdev);
1918 goto restart;
1919 }
1920 spin_unlock_irqrestore(shost->host_lock, flags);
1921 }
1922
1923 /**
1924 * scsi_get_host_dev - Create a scsi_device that points to the host adapter itself
1925 * @shost: Host that needs a scsi_device
1926 *
1927 * Lock status: None assumed.
1928 *
1929 * Returns: The scsi_device or NULL
1930 *
1931 * Notes:
1932 * Attach a single scsi_device to the Scsi_Host - this should
1933 * be made to look like a "pseudo-device" that points to the
1934 * HA itself.
1935 *
1936 * Note - this device is not accessible from any high-level
1937 * drivers (including generics), which is probably not
1938 * optimal. We can add hooks later to attach.
1939 */
1940 struct scsi_device *scsi_get_host_dev(struct Scsi_Host *shost)
1941 {
1942 struct scsi_device *sdev = NULL;
1943 struct scsi_target *starget;
1944
1945 mutex_lock(&shost->scan_mutex);
1946 if (!scsi_host_scan_allowed(shost))
1947 goto out;
1948 starget = scsi_alloc_target(&shost->shost_gendev, 0, shost->this_id);
1949 if (!starget)
1950 goto out;
1951
1952 sdev = scsi_alloc_sdev(starget, 0, NULL);
1953 if (sdev)
1954 sdev->borken = 0;
1955 else
1956 scsi_target_reap(starget);
1957 put_device(&starget->dev);
1958 out:
1959 mutex_unlock(&shost->scan_mutex);
1960 return sdev;
1961 }
1962 EXPORT_SYMBOL(scsi_get_host_dev);
1963
1964 /**
1965 * scsi_free_host_dev - Free a scsi_device that points to the host adapter itself
1966 * @sdev: Host device to be freed
1967 *
1968 * Lock status: None assumed.
1969 *
1970 * Returns: Nothing
1971 */
1972 void scsi_free_host_dev(struct scsi_device *sdev)
1973 {
1974 BUG_ON(sdev->id != sdev->host->this_id);
1975
1976 __scsi_remove_device(sdev);
1977 }
1978 EXPORT_SYMBOL(scsi_free_host_dev);
1979
This page took 0.120285 seconds and 6 git commands to generate.