Commit 9fa095ae authored by Igor Pylypiv's avatar Igor Pylypiv Committed by Martin K. Petersen

scsi: pm80xx: Add libsas SATA sysfs attributes group

The added sysfs attributes group enables the configuration of NCQ Priority
feature for HBAs that rely on libsas to manage SATA devices.
Acked-by: default avatarJack Wang <jinpu.wang@ionos.com>
Reviewed-by: default avatarJohn Garry <john.g.garry@oracle.com>
Reviewed-by: default avatarDamien Le Moal <dlemoal@kernel.org>
Reviewed-by: default avatarJason Yan <yanaijie@huawei.com>
Reviewed-by: default avatarHannes Reinecke <hare@suse.de>
Reviewed-by: default avatarNiklas Cassel <cassel@kernel.org>
Signed-off-by: default avatarIgor Pylypiv <ipylypiv@google.com>
Link: https://lore.kernel.org/r/20240307214418.3812290-4-ipylypiv@google.comSigned-off-by: default avatarMartin K. Petersen <martin.petersen@oracle.com>
parent b4d3ddd2
...@@ -1039,3 +1039,8 @@ const struct attribute_group *pm8001_host_groups[] = { ...@@ -1039,3 +1039,8 @@ const struct attribute_group *pm8001_host_groups[] = {
&pm8001_host_attr_group, &pm8001_host_attr_group,
NULL NULL
}; };
const struct attribute_group *pm8001_sdev_groups[] = {
&sas_ata_sdev_attr_group,
NULL
};
...@@ -134,6 +134,7 @@ static const struct scsi_host_template pm8001_sht = { ...@@ -134,6 +134,7 @@ static const struct scsi_host_template pm8001_sht = {
.compat_ioctl = sas_ioctl, .compat_ioctl = sas_ioctl,
#endif #endif
.shost_groups = pm8001_host_groups, .shost_groups = pm8001_host_groups,
.sdev_groups = pm8001_sdev_groups,
.track_queue_depth = 1, .track_queue_depth = 1,
.cmd_per_lun = 32, .cmd_per_lun = 32,
.map_queues = pm8001_map_queues, .map_queues = pm8001_map_queues,
......
...@@ -717,6 +717,7 @@ int pm80xx_fatal_errors(struct pm8001_hba_info *pm8001_ha); ...@@ -717,6 +717,7 @@ int pm80xx_fatal_errors(struct pm8001_hba_info *pm8001_ha);
void pm8001_free_dev(struct pm8001_device *pm8001_dev); void pm8001_free_dev(struct pm8001_device *pm8001_dev);
/* ctl shared API */ /* ctl shared API */
extern const struct attribute_group *pm8001_host_groups[]; extern const struct attribute_group *pm8001_host_groups[];
extern const struct attribute_group *pm8001_sdev_groups[];
#define PM8001_INVALID_TAG ((u32)-1) #define PM8001_INVALID_TAG ((u32)-1)
......
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