dev_set_name(&shost->shost_dev, "host%d", shost->host_no);
shost->shost_dev.groups = shost->shost_dev_attr_groups;
shost->shost_dev_attr_groups[j++] = &scsi_shost_attr_group;
- if (sht->shost_attrs) {
- shost->lld_attr_group = (struct attribute_group){
- .attrs = scsi_convert_dev_attrs(&shost->shost_gendev,
- sht->shost_attrs)
- };
- if (shost->lld_attr_group.attrs)
- shost->shost_dev_attr_groups[j++] =
- &shost->lld_attr_group;
- }
if (sht->shost_groups) {
for (i = 0; sht->shost_groups[i] &&
j < ARRAY_SIZE(shost->shost_dev_attr_groups);
extern int scsi_sysfs_add_host(struct Scsi_Host *);
extern int scsi_sysfs_register(void);
extern void scsi_sysfs_unregister(void);
-struct attribute **scsi_convert_dev_attrs(struct device *dev,
- struct device_attribute **dev_attr);
extern void scsi_sysfs_device_initialize(struct scsi_device *);
extern int scsi_sysfs_target_initialize(struct scsi_device *);
extern struct scsi_transport_template blank_transport_template;
return 0;
}
-/*
- * Convert an array of struct device_attribute pointers into an array of
- * struct attribute pointers.
- */
-struct attribute **scsi_convert_dev_attrs(struct device *dev,
- struct device_attribute **dev_attr)
-{
- struct attribute **attrs;
- int i;
-
- for (i = 0; dev_attr[i]; i++)
- ;
- attrs = devm_kzalloc(dev, (i + 1) * sizeof(*attrs), GFP_KERNEL);
- if (!attrs)
- return NULL;
- for (i = 0; dev_attr[i]; i++)
- attrs[i] = &dev_attr[i]->attr;
- return attrs;
-}
-
static struct device_type scsi_dev_type = {
.name = "scsi_device",
.release = scsi_device_dev_release,
dev_set_name(&sdev->sdev_gendev, "%d:%d:%d:%llu",
sdev->host->host_no, sdev->channel, sdev->id, sdev->lun);
sdev->gendev_attr_groups[j++] = &scsi_sdev_attr_group;
- if (hostt->sdev_attrs) {
- sdev->lld_attr_group = (struct attribute_group){
- .attrs = scsi_convert_dev_attrs(&sdev->sdev_gendev,
- hostt->sdev_attrs)
- };
- if (sdev->lld_attr_group.attrs)
- sdev->gendev_attr_groups[j++] = &sdev->lld_attr_group;
- }
if (hostt->sdev_groups) {
for (i = 0; hostt->sdev_groups[i] &&
j < ARRAY_SIZE(sdev->gendev_attr_groups);
struct device sdev_gendev,
sdev_dev;
- struct attribute_group lld_attr_group;
/*
* The array size 6 provides space for one attribute group for the
* SCSI core, four attribute groups defined by SCSI LLDs and one
*/
#define SCSI_DEFAULT_HOST_BLOCKED 7
- /*
- * Pointer to the sysfs class properties for this host, NULL terminated.
- */
- struct device_attribute **shost_attrs;
-
- /*
- * Pointer to the SCSI device properties for this host, NULL terminated.
- */
- struct device_attribute **sdev_attrs;
-
/*
* Pointer to the SCSI host sysfs attribute groups, NULL terminated.
*/
/* ldm bits */
struct device shost_gendev, shost_dev;
- struct attribute_group lld_attr_group;
/*
* The array size 3 provides space for one attribute group defined by
* the SCSI core, one attribute group defined by the SCSI LLD and one