*/
 static void srp_del_scsi_host_attr(struct Scsi_Host *shost)
 {
-       struct device_attribute **attr;
+       const struct attribute_group **g;
+       struct attribute **attr;
 
-       for (attr = shost->hostt->shost_attrs; attr && *attr; ++attr)
-               device_remove_file(&shost->shost_dev, *attr);
+       for (g = shost->hostt->shost_groups; *g; ++g) {
+               for (attr = (*g)->attrs; *attr; ++attr) {
+                       struct device_attribute *dev_attr =
+                               container_of(*attr, typeof(*dev_attr), attr);
+
+                       device_remove_file(&shost->shost_dev, dev_attr);
+               }
+       }
 }
 
 static void srp_remove_target(struct srp_target_port *target)
 
 static DEVICE_ATTR_RO(allow_ext_sg);
 
-static struct device_attribute *srp_host_attrs[] = {
-       &dev_attr_id_ext,
-       &dev_attr_ioc_guid,
-       &dev_attr_service_id,
-       &dev_attr_pkey,
-       &dev_attr_sgid,
-       &dev_attr_dgid,
-       &dev_attr_orig_dgid,
-       &dev_attr_req_lim,
-       &dev_attr_zero_req_lim,
-       &dev_attr_local_ib_port,
-       &dev_attr_local_ib_device,
-       &dev_attr_ch_count,
-       &dev_attr_comp_vector,
-       &dev_attr_tl_retry_count,
-       &dev_attr_cmd_sg_entries,
-       &dev_attr_allow_ext_sg,
+static struct attribute *srp_host_attrs[] = {
+       &dev_attr_id_ext.attr,
+       &dev_attr_ioc_guid.attr,
+       &dev_attr_service_id.attr,
+       &dev_attr_pkey.attr,
+       &dev_attr_sgid.attr,
+       &dev_attr_dgid.attr,
+       &dev_attr_orig_dgid.attr,
+       &dev_attr_req_lim.attr,
+       &dev_attr_zero_req_lim.attr,
+       &dev_attr_local_ib_port.attr,
+       &dev_attr_local_ib_device.attr,
+       &dev_attr_ch_count.attr,
+       &dev_attr_comp_vector.attr,
+       &dev_attr_tl_retry_count.attr,
+       &dev_attr_cmd_sg_entries.attr,
+       &dev_attr_allow_ext_sg.attr,
        NULL
 };
 
+ATTRIBUTE_GROUPS(srp_host);
+
 static struct scsi_host_template srp_template = {
        .module                         = THIS_MODULE,
        .name                           = "InfiniBand SRP initiator",
        .can_queue                      = SRP_DEFAULT_CMD_SQ_SIZE,
        .this_id                        = -1,
        .cmd_per_lun                    = SRP_DEFAULT_CMD_SQ_SIZE,
-       .shost_attrs                    = srp_host_attrs,
+       .shost_groups                   = srp_host_groups,
        .track_queue_depth              = 1,
        .cmd_size                       = sizeof(struct srp_request),
 };