4 * SCSI sysfs interface routines.
6 * Created to pull SCSI mid layer sysfs routines into one file.
9 #include <linux/module.h>
10 #include <linux/init.h>
11 #include <linux/blkdev.h>
12 #include <linux/device.h>
14 #include <scsi/scsi.h>
15 #include <scsi/scsi_device.h>
16 #include <scsi/scsi_host.h>
17 #include <scsi/scsi_tcq.h>
18 #include <scsi/scsi_transport.h>
19 #include <scsi/scsi_driver.h>
21 #include "scsi_priv.h"
22 #include "scsi_logging.h"
25 enum scsi_device_state value;
28 { SDEV_CREATED, "created" },
29 { SDEV_RUNNING, "running" },
30 { SDEV_CANCEL, "cancel" },
31 { SDEV_DEL, "deleted" },
32 { SDEV_QUIESCE, "quiesce" },
33 { SDEV_OFFLINE, "offline" },
34 { SDEV_BLOCK, "blocked" },
37 const char *scsi_device_state_name(enum scsi_device_state state)
42 for (i = 0; i < ARRAY_SIZE(sdev_states); i++) {
43 if (sdev_states[i].value == state) {
44 name = sdev_states[i].name;
52 enum scsi_host_state value;
55 { SHOST_CREATED, "created" },
56 { SHOST_RUNNING, "running" },
57 { SHOST_CANCEL, "cancel" },
58 { SHOST_DEL, "deleted" },
59 { SHOST_RECOVERY, "recovery" },
60 { SHOST_CANCEL_RECOVERY, "cancel/recovery" },
61 { SHOST_DEL_RECOVERY, "deleted/recovery", },
63 const char *scsi_host_state_name(enum scsi_host_state state)
68 for (i = 0; i < ARRAY_SIZE(shost_states); i++) {
69 if (shost_states[i].value == state) {
70 name = shost_states[i].name;
77 static int check_set(unsigned int *val, char *src)
81 if (strncmp(src, "-", 20) == 0) {
82 *val = SCAN_WILD_CARD;
85 * Doesn't check for int overflow
87 *val = simple_strtoul(src, &last, 0);
94 static int scsi_scan(struct Scsi_Host *shost, const char *str)
96 char s1[15], s2[15], s3[15], junk;
97 unsigned int channel, id, lun;
100 res = sscanf(str, "%10s %10s %10s %c", s1, s2, s3, &junk);
103 if (check_set(&channel, s1))
105 if (check_set(&id, s2))
107 if (check_set(&lun, s3))
109 if (shost->transportt->user_scan)
110 res = shost->transportt->user_scan(shost, channel, id, lun);
112 res = scsi_scan_host_selected(shost, channel, id, lun, 1);
117 * shost_show_function: macro to create an attr function that can be used to
118 * show a non-bit field.
120 #define shost_show_function(name, field, format_string) \
122 show_##name (struct class_device *class_dev, char *buf) \
124 struct Scsi_Host *shost = class_to_shost(class_dev); \
125 return snprintf (buf, 20, format_string, shost->field); \
129 * shost_rd_attr: macro to create a function and attribute variable for a
132 #define shost_rd_attr2(name, field, format_string) \
133 shost_show_function(name, field, format_string) \
134 static CLASS_DEVICE_ATTR(name, S_IRUGO, show_##name, NULL);
136 #define shost_rd_attr(field, format_string) \
137 shost_rd_attr2(field, field, format_string)
140 * Create the actual show/store functions and data structures.
143 static ssize_t store_scan(struct class_device *class_dev, const char *buf,
146 struct Scsi_Host *shost = class_to_shost(class_dev);
149 res = scsi_scan(shost, buf);
154 static CLASS_DEVICE_ATTR(scan, S_IWUSR, NULL, store_scan);
157 store_shost_state(struct class_device *class_dev, const char *buf, size_t count)
160 struct Scsi_Host *shost = class_to_shost(class_dev);
161 enum scsi_host_state state = 0;
163 for (i = 0; i < ARRAY_SIZE(shost_states); i++) {
164 const int len = strlen(shost_states[i].name);
165 if (strncmp(shost_states[i].name, buf, len) == 0 &&
167 state = shost_states[i].value;
174 if (scsi_host_set_state(shost, state))
180 show_shost_state(struct class_device *class_dev, char *buf)
182 struct Scsi_Host *shost = class_to_shost(class_dev);
183 const char *name = scsi_host_state_name(shost->shost_state);
188 return snprintf(buf, 20, "%s\n", name);
191 static CLASS_DEVICE_ATTR(state, S_IRUGO | S_IWUSR, show_shost_state, store_shost_state);
194 show_shost_mode(unsigned int mode, char *buf)
198 if (mode & MODE_INITIATOR)
199 len = sprintf(buf, "%s", "Initiator");
201 if (mode & MODE_TARGET)
202 len += sprintf(buf + len, "%s%s", len ? ", " : "", "Target");
204 len += sprintf(buf + len, "\n");
209 static ssize_t show_shost_supported_mode(struct class_device *class_dev, char *buf)
211 struct Scsi_Host *shost = class_to_shost(class_dev);
212 unsigned int supported_mode = shost->hostt->supported_mode;
214 if (supported_mode == MODE_UNKNOWN)
215 /* by default this should be initiator */
216 supported_mode = MODE_INITIATOR;
218 return show_shost_mode(supported_mode, buf);
221 static CLASS_DEVICE_ATTR(supported_mode, S_IRUGO | S_IWUSR, show_shost_supported_mode, NULL);
223 static ssize_t show_shost_active_mode(struct class_device *class_dev, char *buf)
225 struct Scsi_Host *shost = class_to_shost(class_dev);
227 if (shost->active_mode == MODE_UNKNOWN)
228 return snprintf(buf, 20, "unknown\n");
230 return show_shost_mode(shost->active_mode, buf);
233 static CLASS_DEVICE_ATTR(active_mode, S_IRUGO | S_IWUSR, show_shost_active_mode, NULL);
235 shost_rd_attr(unique_id, "%u\n");
236 shost_rd_attr(host_busy, "%hu\n");
237 shost_rd_attr(cmd_per_lun, "%hd\n");
238 shost_rd_attr(can_queue, "%hd\n");
239 shost_rd_attr(sg_tablesize, "%hu\n");
240 shost_rd_attr(unchecked_isa_dma, "%d\n");
241 shost_rd_attr2(proc_name, hostt->proc_name, "%s\n");
243 static struct class_device_attribute *scsi_sysfs_shost_attrs[] = {
244 &class_device_attr_unique_id,
245 &class_device_attr_host_busy,
246 &class_device_attr_cmd_per_lun,
247 &class_device_attr_can_queue,
248 &class_device_attr_sg_tablesize,
249 &class_device_attr_unchecked_isa_dma,
250 &class_device_attr_proc_name,
251 &class_device_attr_scan,
252 &class_device_attr_state,
253 &class_device_attr_supported_mode,
254 &class_device_attr_active_mode,
258 static void scsi_device_cls_release(struct class_device *class_dev)
260 struct scsi_device *sdev;
262 sdev = class_to_sdev(class_dev);
263 put_device(&sdev->sdev_gendev);
266 static void scsi_device_dev_release_usercontext(struct work_struct *work)
268 struct scsi_device *sdev;
269 struct device *parent;
270 struct scsi_target *starget;
271 struct list_head *this, *tmp;
274 sdev = container_of(work, struct scsi_device, ew.work);
276 parent = sdev->sdev_gendev.parent;
277 starget = to_scsi_target(parent);
279 spin_lock_irqsave(sdev->host->host_lock, flags);
281 list_del(&sdev->siblings);
282 list_del(&sdev->same_target_siblings);
283 list_del(&sdev->starved_entry);
284 spin_unlock_irqrestore(sdev->host->host_lock, flags);
286 cancel_work_sync(&sdev->event_work);
288 list_for_each_safe(this, tmp, &sdev->event_list) {
289 struct scsi_event *evt;
291 evt = list_entry(this, struct scsi_event, node);
292 list_del(&evt->node);
296 if (sdev->request_queue) {
297 bsg_unregister_queue(sdev->request_queue);
298 sdev->request_queue->queuedata = NULL;
299 /* user context needed to free queue */
300 scsi_free_queue(sdev->request_queue);
301 /* temporary expedient, try to catch use of queue lock
302 * after free of sdev */
303 sdev->request_queue = NULL;
306 scsi_target_reap(scsi_target(sdev));
308 kfree(sdev->inquiry);
315 static void scsi_device_dev_release(struct device *dev)
317 struct scsi_device *sdp = to_scsi_device(dev);
318 execute_in_process_context(scsi_device_dev_release_usercontext,
322 static struct class sdev_class = {
323 .name = "scsi_device",
324 .release = scsi_device_cls_release,
327 /* all probing is done in the individual ->probe routines */
328 static int scsi_bus_match(struct device *dev, struct device_driver *gendrv)
330 struct scsi_device *sdp = to_scsi_device(dev);
331 if (sdp->no_uld_attach)
333 return (sdp->inq_periph_qual == SCSI_INQ_PQ_CON)? 1: 0;
336 static int scsi_bus_uevent(struct device *dev, struct kobj_uevent_env *env)
338 struct scsi_device *sdev = to_scsi_device(dev);
340 add_uevent_var(env, "MODALIAS=" SCSI_DEVICE_MODALIAS_FMT, sdev->type);
344 static int scsi_bus_suspend(struct device * dev, pm_message_t state)
346 struct device_driver *drv = dev->driver;
347 struct scsi_device *sdev = to_scsi_device(dev);
350 err = scsi_device_quiesce(sdev);
354 if (drv && drv->suspend) {
355 err = drv->suspend(dev, state);
363 static int scsi_bus_resume(struct device * dev)
365 struct device_driver *drv = dev->driver;
366 struct scsi_device *sdev = to_scsi_device(dev);
369 if (drv && drv->resume)
370 err = drv->resume(dev);
372 scsi_device_resume(sdev);
377 static int scsi_bus_remove(struct device *dev)
379 struct device_driver *drv = dev->driver;
380 struct scsi_device *sdev = to_scsi_device(dev);
383 /* reset the prep_fn back to the default since the
384 * driver may have altered it and it's being removed */
385 blk_queue_prep_rq(sdev->request_queue, scsi_prep_fn);
387 if (drv && drv->remove)
388 err = drv->remove(dev);
393 struct bus_type scsi_bus_type = {
395 .match = scsi_bus_match,
396 .uevent = scsi_bus_uevent,
397 .suspend = scsi_bus_suspend,
398 .resume = scsi_bus_resume,
399 .remove = scsi_bus_remove,
402 int scsi_sysfs_register(void)
406 error = bus_register(&scsi_bus_type);
408 error = class_register(&sdev_class);
410 bus_unregister(&scsi_bus_type);
416 void scsi_sysfs_unregister(void)
418 class_unregister(&sdev_class);
419 bus_unregister(&scsi_bus_type);
423 * sdev_show_function: macro to create an attr function that can be used to
424 * show a non-bit field.
426 #define sdev_show_function(field, format_string) \
428 sdev_show_##field (struct device *dev, struct device_attribute *attr, char *buf) \
430 struct scsi_device *sdev; \
431 sdev = to_scsi_device(dev); \
432 return snprintf (buf, 20, format_string, sdev->field); \
436 * sdev_rd_attr: macro to create a function and attribute variable for a
439 #define sdev_rd_attr(field, format_string) \
440 sdev_show_function(field, format_string) \
441 static DEVICE_ATTR(field, S_IRUGO, sdev_show_##field, NULL);
445 * sdev_rd_attr: create a function and attribute variable for a
448 #define sdev_rw_attr(field, format_string) \
449 sdev_show_function(field, format_string) \
452 sdev_store_##field (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
454 struct scsi_device *sdev; \
455 sdev = to_scsi_device(dev); \
456 snscanf (buf, 20, format_string, &sdev->field); \
459 static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, sdev_show_##field, sdev_store_##field);
461 /* Currently we don't export bit fields, but we might in future,
462 * so leave this code in */
465 * sdev_rd_attr: create a function and attribute variable for a
466 * read/write bit field.
468 #define sdev_rw_attr_bit(field) \
469 sdev_show_function(field, "%d\n") \
472 sdev_store_##field (struct device *dev, struct device_attribute *attr, const char *buf, size_t count) \
475 struct scsi_device *sdev; \
476 ret = scsi_sdev_check_buf_bit(buf); \
478 sdev = to_scsi_device(dev); \
484 static DEVICE_ATTR(field, S_IRUGO | S_IWUSR, sdev_show_##field, sdev_store_##field);
487 * scsi_sdev_check_buf_bit: return 0 if buf is "0", return 1 if buf is "1",
488 * else return -EINVAL.
490 static int scsi_sdev_check_buf_bit(const char *buf)
492 if ((buf[1] == '\0') || ((buf[1] == '\n') && (buf[2] == '\0'))) {
495 else if (buf[0] == '0')
504 * Create the actual show/store functions and data structures.
506 sdev_rd_attr (device_blocked, "%d\n");
507 sdev_rd_attr (queue_depth, "%d\n");
508 sdev_rd_attr (type, "%d\n");
509 sdev_rd_attr (scsi_level, "%d\n");
510 sdev_rd_attr (vendor, "%.8s\n");
511 sdev_rd_attr (model, "%.16s\n");
512 sdev_rd_attr (rev, "%.4s\n");
515 sdev_show_timeout (struct device *dev, struct device_attribute *attr, char *buf)
517 struct scsi_device *sdev;
518 sdev = to_scsi_device(dev);
519 return snprintf (buf, 20, "%d\n", sdev->timeout / HZ);
523 sdev_store_timeout (struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
525 struct scsi_device *sdev;
527 sdev = to_scsi_device(dev);
528 sscanf (buf, "%d\n", &timeout);
529 sdev->timeout = timeout * HZ;
532 static DEVICE_ATTR(timeout, S_IRUGO | S_IWUSR, sdev_show_timeout, sdev_store_timeout);
535 store_rescan_field (struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
537 scsi_rescan_device(dev);
540 static DEVICE_ATTR(rescan, S_IWUSR, NULL, store_rescan_field);
542 static void sdev_store_delete_callback(struct device *dev)
544 scsi_remove_device(to_scsi_device(dev));
547 static ssize_t sdev_store_delete(struct device *dev, struct device_attribute *attr, const char *buf,
552 /* An attribute cannot be unregistered by one of its own methods,
553 * so we have to use this roundabout approach.
555 rc = device_schedule_callback(dev, sdev_store_delete_callback);
560 static DEVICE_ATTR(delete, S_IWUSR, NULL, sdev_store_delete);
563 store_state_field(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
566 struct scsi_device *sdev = to_scsi_device(dev);
567 enum scsi_device_state state = 0;
569 for (i = 0; i < ARRAY_SIZE(sdev_states); i++) {
570 const int len = strlen(sdev_states[i].name);
571 if (strncmp(sdev_states[i].name, buf, len) == 0 &&
573 state = sdev_states[i].value;
580 if (scsi_device_set_state(sdev, state))
586 show_state_field(struct device *dev, struct device_attribute *attr, char *buf)
588 struct scsi_device *sdev = to_scsi_device(dev);
589 const char *name = scsi_device_state_name(sdev->sdev_state);
594 return snprintf(buf, 20, "%s\n", name);
597 static DEVICE_ATTR(state, S_IRUGO | S_IWUSR, show_state_field, store_state_field);
600 show_queue_type_field(struct device *dev, struct device_attribute *attr, char *buf)
602 struct scsi_device *sdev = to_scsi_device(dev);
603 const char *name = "none";
605 if (sdev->ordered_tags)
607 else if (sdev->simple_tags)
610 return snprintf(buf, 20, "%s\n", name);
613 static DEVICE_ATTR(queue_type, S_IRUGO, show_queue_type_field, NULL);
616 show_iostat_counterbits(struct device *dev, struct device_attribute *attr, char *buf)
618 return snprintf(buf, 20, "%d\n", (int)sizeof(atomic_t) * 8);
621 static DEVICE_ATTR(iocounterbits, S_IRUGO, show_iostat_counterbits, NULL);
623 #define show_sdev_iostat(field) \
625 show_iostat_##field(struct device *dev, struct device_attribute *attr, char *buf) \
627 struct scsi_device *sdev = to_scsi_device(dev); \
628 unsigned long long count = atomic_read(&sdev->field); \
629 return snprintf(buf, 20, "0x%llx\n", count); \
631 static DEVICE_ATTR(field, S_IRUGO, show_iostat_##field, NULL)
633 show_sdev_iostat(iorequest_cnt);
634 show_sdev_iostat(iodone_cnt);
635 show_sdev_iostat(ioerr_cnt);
638 sdev_show_modalias(struct device *dev, struct device_attribute *attr, char *buf)
640 struct scsi_device *sdev;
641 sdev = to_scsi_device(dev);
642 return snprintf (buf, 20, SCSI_DEVICE_MODALIAS_FMT "\n", sdev->type);
644 static DEVICE_ATTR(modalias, S_IRUGO, sdev_show_modalias, NULL);
646 #define DECLARE_EVT_SHOW(name, Cap_name) \
648 sdev_show_evt_##name(struct device *dev, struct device_attribute *attr, \
651 struct scsi_device *sdev = to_scsi_device(dev); \
652 int val = test_bit(SDEV_EVT_##Cap_name, sdev->supported_events);\
653 return snprintf(buf, 20, "%d\n", val); \
656 #define DECLARE_EVT_STORE(name, Cap_name) \
658 sdev_store_evt_##name(struct device *dev, struct device_attribute *attr, \
659 const char *buf, size_t count) \
661 struct scsi_device *sdev = to_scsi_device(dev); \
662 int val = simple_strtoul(buf, NULL, 0); \
664 clear_bit(SDEV_EVT_##Cap_name, sdev->supported_events); \
666 set_bit(SDEV_EVT_##Cap_name, sdev->supported_events); \
672 #define DECLARE_EVT(name, Cap_name) \
673 DECLARE_EVT_SHOW(name, Cap_name) \
674 DECLARE_EVT_STORE(name, Cap_name) \
675 static DEVICE_ATTR(evt_##name, S_IRUGO, sdev_show_evt_##name, \
676 sdev_store_evt_##name);
677 #define REF_EVT(name) &dev_attr_evt_##name.attr
679 DECLARE_EVT(media_change, MEDIA_CHANGE)
681 /* Default template for device attributes. May NOT be modified */
682 static struct attribute *scsi_sdev_attrs[] = {
683 &dev_attr_device_blocked.attr,
685 &dev_attr_scsi_level.attr,
686 &dev_attr_vendor.attr,
687 &dev_attr_model.attr,
689 &dev_attr_rescan.attr,
690 &dev_attr_delete.attr,
691 &dev_attr_state.attr,
692 &dev_attr_timeout.attr,
693 &dev_attr_iocounterbits.attr,
694 &dev_attr_iorequest_cnt.attr,
695 &dev_attr_iodone_cnt.attr,
696 &dev_attr_ioerr_cnt.attr,
697 &dev_attr_modalias.attr,
698 REF_EVT(media_change),
702 static struct attribute_group scsi_sdev_attr_group = {
703 .attrs = scsi_sdev_attrs,
706 static struct attribute_group *scsi_sdev_attr_groups[] = {
707 &scsi_sdev_attr_group,
711 static ssize_t sdev_store_queue_depth_rw(struct device *dev, struct device_attribute *attr, const char *buf,
715 struct scsi_device *sdev = to_scsi_device(dev);
716 struct scsi_host_template *sht = sdev->host->hostt;
718 if (!sht->change_queue_depth)
721 depth = simple_strtoul(buf, NULL, 0);
726 retval = sht->change_queue_depth(sdev, depth);
733 static struct device_attribute sdev_attr_queue_depth_rw =
734 __ATTR(queue_depth, S_IRUGO | S_IWUSR, sdev_show_queue_depth,
735 sdev_store_queue_depth_rw);
737 static ssize_t sdev_store_queue_type_rw(struct device *dev, struct device_attribute *attr, const char *buf,
740 struct scsi_device *sdev = to_scsi_device(dev);
741 struct scsi_host_template *sht = sdev->host->hostt;
742 int tag_type = 0, retval;
743 int prev_tag_type = scsi_get_tag_type(sdev);
745 if (!sdev->tagged_supported || !sht->change_queue_type)
748 if (strncmp(buf, "ordered", 7) == 0)
749 tag_type = MSG_ORDERED_TAG;
750 else if (strncmp(buf, "simple", 6) == 0)
751 tag_type = MSG_SIMPLE_TAG;
752 else if (strncmp(buf, "none", 4) != 0)
755 if (tag_type == prev_tag_type)
758 retval = sht->change_queue_type(sdev, tag_type);
765 static struct device_attribute sdev_attr_queue_type_rw =
766 __ATTR(queue_type, S_IRUGO | S_IWUSR, show_queue_type_field,
767 sdev_store_queue_type_rw);
770 * scsi_sysfs_add_sdev - add scsi device to sysfs
771 * @sdev: scsi_device to add
774 * 0 on Success / non-zero on Failure
776 int scsi_sysfs_add_sdev(struct scsi_device *sdev)
779 struct request_queue *rq = sdev->request_queue;
781 if ((error = scsi_device_set_state(sdev, SDEV_RUNNING)) != 0)
784 error = device_add(&sdev->sdev_gendev);
786 put_device(sdev->sdev_gendev.parent);
787 printk(KERN_INFO "error 1\n");
790 error = class_device_add(&sdev->sdev_classdev);
792 printk(KERN_INFO "error 2\n");
796 /* take a reference for the sdev_classdev; this is
797 * released by the sdev_class .release */
798 get_device(&sdev->sdev_gendev);
800 /* create queue files, which may be writable, depending on the host */
801 if (sdev->host->hostt->change_queue_depth)
802 error = device_create_file(&sdev->sdev_gendev, &sdev_attr_queue_depth_rw);
804 error = device_create_file(&sdev->sdev_gendev, &dev_attr_queue_depth);
806 __scsi_remove_device(sdev);
809 if (sdev->host->hostt->change_queue_type)
810 error = device_create_file(&sdev->sdev_gendev, &sdev_attr_queue_type_rw);
812 error = device_create_file(&sdev->sdev_gendev, &dev_attr_queue_type);
814 __scsi_remove_device(sdev);
818 error = bsg_register_queue(rq, &sdev->sdev_gendev, NULL);
821 sdev_printk(KERN_INFO, sdev,
822 "Failed to register bsg queue, errno=%d\n", error);
824 /* we're treating error on bsg register as non-fatal, so pretend
825 * nothing went wrong */
828 /* add additional host specific attributes */
829 if (sdev->host->hostt->sdev_attrs) {
830 for (i = 0; sdev->host->hostt->sdev_attrs[i]; i++) {
831 error = device_create_file(&sdev->sdev_gendev,
832 sdev->host->hostt->sdev_attrs[i]);
834 __scsi_remove_device(sdev);
840 transport_add_device(&sdev->sdev_gendev);
845 scsi_device_set_state(sdev, SDEV_CANCEL);
847 device_del(&sdev->sdev_gendev);
848 transport_destroy_device(&sdev->sdev_gendev);
849 put_device(&sdev->sdev_gendev);
854 void __scsi_remove_device(struct scsi_device *sdev)
856 struct device *dev = &sdev->sdev_gendev;
858 if (scsi_device_set_state(sdev, SDEV_CANCEL) != 0)
861 class_device_unregister(&sdev->sdev_classdev);
862 transport_remove_device(dev);
864 scsi_device_set_state(sdev, SDEV_DEL);
865 if (sdev->host->hostt->slave_destroy)
866 sdev->host->hostt->slave_destroy(sdev);
867 transport_destroy_device(dev);
872 * scsi_remove_device - unregister a device from the scsi bus
873 * @sdev: scsi_device to unregister
875 void scsi_remove_device(struct scsi_device *sdev)
877 struct Scsi_Host *shost = sdev->host;
879 mutex_lock(&shost->scan_mutex);
880 __scsi_remove_device(sdev);
881 mutex_unlock(&shost->scan_mutex);
883 EXPORT_SYMBOL(scsi_remove_device);
885 static void __scsi_remove_target(struct scsi_target *starget)
887 struct Scsi_Host *shost = dev_to_shost(starget->dev.parent);
889 struct scsi_device *sdev;
891 spin_lock_irqsave(shost->host_lock, flags);
894 list_for_each_entry(sdev, &shost->__devices, siblings) {
895 if (sdev->channel != starget->channel ||
896 sdev->id != starget->id ||
897 sdev->sdev_state == SDEV_DEL)
899 spin_unlock_irqrestore(shost->host_lock, flags);
900 scsi_remove_device(sdev);
901 spin_lock_irqsave(shost->host_lock, flags);
904 spin_unlock_irqrestore(shost->host_lock, flags);
905 scsi_target_reap(starget);
908 static int __remove_child (struct device * dev, void * data)
910 if (scsi_is_target_device(dev))
911 __scsi_remove_target(to_scsi_target(dev));
916 * scsi_remove_target - try to remove a target and all its devices
917 * @dev: generic starget or parent of generic stargets to be removed
919 * Note: This is slightly racy. It is possible that if the user
920 * requests the addition of another device then the target won't be
923 void scsi_remove_target(struct device *dev)
927 if (scsi_is_target_device(dev)) {
928 __scsi_remove_target(to_scsi_target(dev));
932 rdev = get_device(dev);
933 device_for_each_child(dev, NULL, __remove_child);
936 EXPORT_SYMBOL(scsi_remove_target);
938 int scsi_register_driver(struct device_driver *drv)
940 drv->bus = &scsi_bus_type;
942 return driver_register(drv);
944 EXPORT_SYMBOL(scsi_register_driver);
946 int scsi_register_interface(struct class_interface *intf)
948 intf->class = &sdev_class;
950 return class_interface_register(intf);
952 EXPORT_SYMBOL(scsi_register_interface);
955 static struct class_device_attribute *class_attr_overridden(
956 struct class_device_attribute **attrs,
957 struct class_device_attribute *attr)
963 for (i = 0; attrs[i]; i++)
964 if (!strcmp(attrs[i]->attr.name, attr->attr.name))
969 static int class_attr_add(struct class_device *classdev,
970 struct class_device_attribute *attr)
972 struct class_device_attribute *base_attr;
975 * Spare the caller from having to copy things it's not interested in.
977 base_attr = class_attr_overridden(scsi_sysfs_shost_attrs, attr);
979 /* extend permissions */
980 attr->attr.mode |= base_attr->attr.mode;
982 /* override null show/store with default */
984 attr->show = base_attr->show;
986 attr->store = base_attr->store;
989 return class_device_create_file(classdev, attr);
993 * scsi_sysfs_add_host - add scsi host to subsystem
994 * @shost: scsi host struct to add to subsystem
995 * @dev: parent struct device pointer
997 int scsi_sysfs_add_host(struct Scsi_Host *shost)
1001 if (shost->hostt->shost_attrs) {
1002 for (i = 0; shost->hostt->shost_attrs[i]; i++) {
1003 error = class_attr_add(&shost->shost_classdev,
1004 shost->hostt->shost_attrs[i]);
1010 for (i = 0; scsi_sysfs_shost_attrs[i]; i++) {
1011 if (!class_attr_overridden(shost->hostt->shost_attrs,
1012 scsi_sysfs_shost_attrs[i])) {
1013 error = class_device_create_file(&shost->shost_classdev,
1014 scsi_sysfs_shost_attrs[i]);
1020 transport_register_device(&shost->shost_gendev);
1021 transport_configure_device(&shost->shost_gendev);
1025 static struct device_type scsi_dev_type = {
1026 .name = "scsi_device",
1027 .release = scsi_device_dev_release,
1028 .groups = scsi_sdev_attr_groups,
1031 void scsi_sysfs_device_initialize(struct scsi_device *sdev)
1033 unsigned long flags;
1034 struct Scsi_Host *shost = sdev->host;
1035 struct scsi_target *starget = sdev->sdev_target;
1037 device_initialize(&sdev->sdev_gendev);
1038 sdev->sdev_gendev.bus = &scsi_bus_type;
1039 sdev->sdev_gendev.type = &scsi_dev_type;
1040 sprintf(sdev->sdev_gendev.bus_id,"%d:%d:%d:%d",
1041 sdev->host->host_no, sdev->channel, sdev->id,
1044 class_device_initialize(&sdev->sdev_classdev);
1045 sdev->sdev_classdev.dev = &sdev->sdev_gendev;
1046 sdev->sdev_classdev.class = &sdev_class;
1047 snprintf(sdev->sdev_classdev.class_id, BUS_ID_SIZE,
1048 "%d:%d:%d:%d", sdev->host->host_no,
1049 sdev->channel, sdev->id, sdev->lun);
1050 sdev->scsi_level = starget->scsi_level;
1051 transport_setup_device(&sdev->sdev_gendev);
1052 spin_lock_irqsave(shost->host_lock, flags);
1053 list_add_tail(&sdev->same_target_siblings, &starget->devices);
1054 list_add_tail(&sdev->siblings, &shost->__devices);
1055 spin_unlock_irqrestore(shost->host_lock, flags);
1058 int scsi_is_sdev_device(const struct device *dev)
1060 return dev->type == &scsi_dev_type;
1062 EXPORT_SYMBOL(scsi_is_sdev_device);
1064 /* A blank transport template that is used in drivers that don't
1065 * yet implement Transport Attributes */
1066 struct scsi_transport_template blank_transport_template = { { { {NULL, }, }, }, };