Commit c3f69c7f authored by Bart Van Assche's avatar Bart Van Assche Committed by Martin K. Petersen

scsi: ata: Switch to attribute groups

struct device supports attribute groups directly but does not support
struct device_attribute directly. Hence switch to attribute groups.

Link: https://lore.kernel.org/r/20211012233558.4066756-3-bvanassche@acm.orgAcked-by: default avatarDamien Le Moal <damien.lemoal@opensource.wdc.com>
Signed-off-by: default avatarBart Van Assche <bvanassche@acm.org>
Signed-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent 92c4b58b
...@@ -376,8 +376,8 @@ struct ahci_host_priv { ...@@ -376,8 +376,8 @@ struct ahci_host_priv {
extern int ahci_ignore_sss; extern int ahci_ignore_sss;
extern struct device_attribute *ahci_shost_attrs[]; extern const struct attribute_group *ahci_shost_groups[];
extern struct device_attribute *ahci_sdev_attrs[]; extern const struct attribute_group *ahci_sdev_groups[];
/* /*
* This must be instantiated by the edge drivers. Read the comments * This must be instantiated by the edge drivers. Read the comments
...@@ -388,8 +388,8 @@ extern struct device_attribute *ahci_sdev_attrs[]; ...@@ -388,8 +388,8 @@ extern struct device_attribute *ahci_sdev_attrs[];
.can_queue = AHCI_MAX_CMDS, \ .can_queue = AHCI_MAX_CMDS, \
.sg_tablesize = AHCI_MAX_SG, \ .sg_tablesize = AHCI_MAX_SG, \
.dma_boundary = AHCI_DMA_BOUNDARY, \ .dma_boundary = AHCI_DMA_BOUNDARY, \
.shost_attrs = ahci_shost_attrs, \ .shost_groups = ahci_shost_groups, \
.sdev_attrs = ahci_sdev_attrs, \ .sdev_groups = ahci_sdev_groups, \
.change_queue_depth = ata_scsi_change_queue_depth, \ .change_queue_depth = ata_scsi_change_queue_depth, \
.tag_alloc_policy = BLK_TAG_ALLOC_RR, \ .tag_alloc_policy = BLK_TAG_ALLOC_RR, \
.slave_configure = ata_scsi_slave_config .slave_configure = ata_scsi_slave_config
......
...@@ -1085,14 +1085,16 @@ static struct ata_port_operations ich_pata_ops = { ...@@ -1085,14 +1085,16 @@ static struct ata_port_operations ich_pata_ops = {
.set_dmamode = ich_set_dmamode, .set_dmamode = ich_set_dmamode,
}; };
static struct device_attribute *piix_sidpr_shost_attrs[] = { static struct attribute *piix_sidpr_shost_attrs[] = {
&dev_attr_link_power_management_policy, &dev_attr_link_power_management_policy.attr,
NULL NULL
}; };
ATTRIBUTE_GROUPS(piix_sidpr_shost);
static struct scsi_host_template piix_sidpr_sht = { static struct scsi_host_template piix_sidpr_sht = {
ATA_BMDMA_SHT(DRV_NAME), ATA_BMDMA_SHT(DRV_NAME),
.shost_attrs = piix_sidpr_shost_attrs, .shost_groups = piix_sidpr_shost_groups,
}; };
static struct ata_port_operations piix_sidpr_sata_ops = { static struct ata_port_operations piix_sidpr_sata_ops = {
......
...@@ -108,28 +108,46 @@ static DEVICE_ATTR(em_buffer, S_IWUSR | S_IRUGO, ...@@ -108,28 +108,46 @@ static DEVICE_ATTR(em_buffer, S_IWUSR | S_IRUGO,
ahci_read_em_buffer, ahci_store_em_buffer); ahci_read_em_buffer, ahci_store_em_buffer);
static DEVICE_ATTR(em_message_supported, S_IRUGO, ahci_show_em_supported, NULL); static DEVICE_ATTR(em_message_supported, S_IRUGO, ahci_show_em_supported, NULL);
struct device_attribute *ahci_shost_attrs[] = { static struct attribute *ahci_shost_attrs[] = {
&dev_attr_link_power_management_policy, &dev_attr_link_power_management_policy.attr,
&dev_attr_em_message_type, &dev_attr_em_message_type.attr,
&dev_attr_em_message, &dev_attr_em_message.attr,
&dev_attr_ahci_host_caps, &dev_attr_ahci_host_caps.attr,
&dev_attr_ahci_host_cap2, &dev_attr_ahci_host_cap2.attr,
&dev_attr_ahci_host_version, &dev_attr_ahci_host_version.attr,
&dev_attr_ahci_port_cmd, &dev_attr_ahci_port_cmd.attr,
&dev_attr_em_buffer, &dev_attr_em_buffer.attr,
&dev_attr_em_message_supported, &dev_attr_em_message_supported.attr,
NULL NULL
}; };
EXPORT_SYMBOL_GPL(ahci_shost_attrs);
struct device_attribute *ahci_sdev_attrs[] = { static const struct attribute_group ahci_shost_attr_group = {
&dev_attr_sw_activity, .attrs = ahci_shost_attrs
&dev_attr_unload_heads, };
&dev_attr_ncq_prio_supported,
&dev_attr_ncq_prio_enable, const struct attribute_group *ahci_shost_groups[] = {
&ahci_shost_attr_group,
NULL
};
EXPORT_SYMBOL_GPL(ahci_shost_groups);
struct attribute *ahci_sdev_attrs[] = {
&dev_attr_sw_activity.attr,
&dev_attr_unload_heads.attr,
&dev_attr_ncq_prio_supported.attr,
&dev_attr_ncq_prio_enable.attr,
NULL
};
static const struct attribute_group ahci_sdev_attr_group = {
.attrs = ahci_sdev_attrs
};
const struct attribute_group *ahci_sdev_groups[] = {
&ahci_sdev_attr_group,
NULL NULL
}; };
EXPORT_SYMBOL_GPL(ahci_sdev_attrs); EXPORT_SYMBOL_GPL(ahci_sdev_groups);
struct ata_port_operations ahci_ops = { struct ata_port_operations ahci_ops = {
.inherits = &sata_pmp_port_ops, .inherits = &sata_pmp_port_ops,
......
...@@ -922,13 +922,22 @@ DEVICE_ATTR(ncq_prio_enable, S_IRUGO | S_IWUSR, ...@@ -922,13 +922,22 @@ DEVICE_ATTR(ncq_prio_enable, S_IRUGO | S_IWUSR,
ata_ncq_prio_enable_show, ata_ncq_prio_enable_store); ata_ncq_prio_enable_show, ata_ncq_prio_enable_store);
EXPORT_SYMBOL_GPL(dev_attr_ncq_prio_enable); EXPORT_SYMBOL_GPL(dev_attr_ncq_prio_enable);
struct device_attribute *ata_ncq_sdev_attrs[] = { struct attribute *ata_ncq_sdev_attrs[] = {
&dev_attr_unload_heads, &dev_attr_unload_heads.attr,
&dev_attr_ncq_prio_enable, &dev_attr_ncq_prio_enable.attr,
&dev_attr_ncq_prio_supported, &dev_attr_ncq_prio_supported.attr,
NULL NULL
}; };
EXPORT_SYMBOL_GPL(ata_ncq_sdev_attrs);
static const struct attribute_group ata_ncq_sdev_attr_group = {
.attrs = ata_ncq_sdev_attrs
};
const struct attribute_group *ata_ncq_sdev_groups[] = {
&ata_ncq_sdev_attr_group,
NULL
};
EXPORT_SYMBOL_GPL(ata_ncq_sdev_groups);
static ssize_t static ssize_t
ata_scsi_em_message_store(struct device *dev, struct device_attribute *attr, ata_scsi_em_message_store(struct device *dev, struct device_attribute *attr,
......
...@@ -234,11 +234,20 @@ static void ata_scsi_set_invalid_parameter(struct ata_device *dev, ...@@ -234,11 +234,20 @@ static void ata_scsi_set_invalid_parameter(struct ata_device *dev,
field, 0xff, 0); field, 0xff, 0);
} }
struct device_attribute *ata_common_sdev_attrs[] = { static struct attribute *ata_common_sdev_attrs[] = {
&dev_attr_unload_heads, &dev_attr_unload_heads.attr,
NULL NULL
}; };
EXPORT_SYMBOL_GPL(ata_common_sdev_attrs);
static const struct attribute_group ata_common_sdev_attr_group = {
.attrs = ata_common_sdev_attrs
};
const struct attribute_group *ata_common_sdev_groups[] = {
&ata_common_sdev_attr_group,
NULL
};
EXPORT_SYMBOL_GPL(ata_common_sdev_groups);
/** /**
* ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd. * ata_std_bios_param - generic bios head/sector/cylinder calculator used by sd.
......
...@@ -923,7 +923,7 @@ static struct scsi_host_template pata_macio_sht = { ...@@ -923,7 +923,7 @@ static struct scsi_host_template pata_macio_sht = {
*/ */
.max_segment_size = MAX_DBDMA_SEG, .max_segment_size = MAX_DBDMA_SEG,
.slave_configure = pata_macio_slave_config, .slave_configure = pata_macio_slave_config,
.sdev_attrs = ata_common_sdev_attrs, .sdev_groups = ata_common_sdev_groups,
.can_queue = ATA_DEF_QUEUE, .can_queue = ATA_DEF_QUEUE,
.tag_alloc_policy = BLK_TAG_ALLOC_RR, .tag_alloc_policy = BLK_TAG_ALLOC_RR,
}; };
......
...@@ -670,7 +670,7 @@ static struct scsi_host_template mv6_sht = { ...@@ -670,7 +670,7 @@ static struct scsi_host_template mv6_sht = {
.can_queue = MV_MAX_Q_DEPTH - 1, .can_queue = MV_MAX_Q_DEPTH - 1,
.sg_tablesize = MV_MAX_SG_CT / 2, .sg_tablesize = MV_MAX_SG_CT / 2,
.dma_boundary = MV_DMA_BOUNDARY, .dma_boundary = MV_DMA_BOUNDARY,
.sdev_attrs = ata_ncq_sdev_attrs, .sdev_groups = ata_ncq_sdev_groups,
.change_queue_depth = ata_scsi_change_queue_depth, .change_queue_depth = ata_scsi_change_queue_depth,
.tag_alloc_policy = BLK_TAG_ALLOC_RR, .tag_alloc_policy = BLK_TAG_ALLOC_RR,
.slave_configure = ata_scsi_slave_config .slave_configure = ata_scsi_slave_config
......
...@@ -380,7 +380,7 @@ static struct scsi_host_template nv_adma_sht = { ...@@ -380,7 +380,7 @@ static struct scsi_host_template nv_adma_sht = {
.sg_tablesize = NV_ADMA_SGTBL_TOTAL_LEN, .sg_tablesize = NV_ADMA_SGTBL_TOTAL_LEN,
.dma_boundary = NV_ADMA_DMA_BOUNDARY, .dma_boundary = NV_ADMA_DMA_BOUNDARY,
.slave_configure = nv_adma_slave_config, .slave_configure = nv_adma_slave_config,
.sdev_attrs = ata_ncq_sdev_attrs, .sdev_groups = ata_ncq_sdev_groups,
.change_queue_depth = ata_scsi_change_queue_depth, .change_queue_depth = ata_scsi_change_queue_depth,
.tag_alloc_policy = BLK_TAG_ALLOC_RR, .tag_alloc_policy = BLK_TAG_ALLOC_RR,
}; };
...@@ -391,7 +391,7 @@ static struct scsi_host_template nv_swncq_sht = { ...@@ -391,7 +391,7 @@ static struct scsi_host_template nv_swncq_sht = {
.sg_tablesize = LIBATA_MAX_PRD, .sg_tablesize = LIBATA_MAX_PRD,
.dma_boundary = ATA_DMA_BOUNDARY, .dma_boundary = ATA_DMA_BOUNDARY,
.slave_configure = nv_swncq_slave_config, .slave_configure = nv_swncq_slave_config,
.sdev_attrs = ata_ncq_sdev_attrs, .sdev_groups = ata_ncq_sdev_groups,
.change_queue_depth = ata_scsi_change_queue_depth, .change_queue_depth = ata_scsi_change_queue_depth,
.tag_alloc_policy = BLK_TAG_ALLOC_RR, .tag_alloc_policy = BLK_TAG_ALLOC_RR,
}; };
......
...@@ -379,7 +379,7 @@ static struct scsi_host_template sil24_sht = { ...@@ -379,7 +379,7 @@ static struct scsi_host_template sil24_sht = {
.sg_tablesize = SIL24_MAX_SGE, .sg_tablesize = SIL24_MAX_SGE,
.dma_boundary = ATA_DMA_BOUNDARY, .dma_boundary = ATA_DMA_BOUNDARY,
.tag_alloc_policy = BLK_TAG_ALLOC_FIFO, .tag_alloc_policy = BLK_TAG_ALLOC_FIFO,
.sdev_attrs = ata_ncq_sdev_attrs, .sdev_groups = ata_ncq_sdev_groups,
.change_queue_depth = ata_scsi_change_queue_depth, .change_queue_depth = ata_scsi_change_queue_depth,
.slave_configure = ata_scsi_slave_config .slave_configure = ata_scsi_slave_config
}; };
......
...@@ -1388,7 +1388,7 @@ extern int ata_link_nr_enabled(struct ata_link *link); ...@@ -1388,7 +1388,7 @@ extern int ata_link_nr_enabled(struct ata_link *link);
*/ */
extern const struct ata_port_operations ata_base_port_ops; extern const struct ata_port_operations ata_base_port_ops;
extern const struct ata_port_operations sata_port_ops; extern const struct ata_port_operations sata_port_ops;
extern struct device_attribute *ata_common_sdev_attrs[]; extern const struct attribute_group *ata_common_sdev_groups[];
/* /*
* All sht initializers (BASE, PIO, BMDMA, NCQ) must be instantiated * All sht initializers (BASE, PIO, BMDMA, NCQ) must be instantiated
...@@ -1418,14 +1418,14 @@ extern struct device_attribute *ata_common_sdev_attrs[]; ...@@ -1418,14 +1418,14 @@ extern struct device_attribute *ata_common_sdev_attrs[];
#define ATA_BASE_SHT(drv_name) \ #define ATA_BASE_SHT(drv_name) \
ATA_SUBBASE_SHT(drv_name), \ ATA_SUBBASE_SHT(drv_name), \
.sdev_attrs = ata_common_sdev_attrs .sdev_groups = ata_common_sdev_groups
#ifdef CONFIG_SATA_HOST #ifdef CONFIG_SATA_HOST
extern struct device_attribute *ata_ncq_sdev_attrs[]; extern const struct attribute_group *ata_ncq_sdev_groups[];
#define ATA_NCQ_SHT(drv_name) \ #define ATA_NCQ_SHT(drv_name) \
ATA_SUBBASE_SHT(drv_name), \ ATA_SUBBASE_SHT(drv_name), \
.sdev_attrs = ata_ncq_sdev_attrs, \ .sdev_groups = ata_ncq_sdev_groups, \
.change_queue_depth = ata_scsi_change_queue_depth .change_queue_depth = ata_scsi_change_queue_depth
#endif #endif
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment