[S390] bus_id -> dev_set_name() changes
Convert most s390 users setting bus_id to dev_set_name(). css and ccw busses are deferred since they need some special treatment. Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
committed by
Martin Schwidefsky
parent
2a0217d5c7
commit
1bf5b28539
@@ -343,7 +343,7 @@ dcssblk_add_store(struct device *dev, struct device_attribute *attr, const char
|
|||||||
}
|
}
|
||||||
|
|
||||||
strcpy(dev_info->segment_name, local_buf);
|
strcpy(dev_info->segment_name, local_buf);
|
||||||
strlcpy(dev_info->dev.bus_id, local_buf, BUS_ID_SIZE);
|
dev_set_name(&dev_info->dev, local_buf);
|
||||||
dev_info->dev.release = dcssblk_release_segment;
|
dev_info->dev.release = dcssblk_release_segment;
|
||||||
INIT_LIST_HEAD(&dev_info->lh);
|
INIT_LIST_HEAD(&dev_info->lh);
|
||||||
|
|
||||||
|
@@ -724,8 +724,7 @@ static int vmlogrdr_register_device(struct vmlogrdr_priv_t *priv)
|
|||||||
|
|
||||||
dev = kzalloc(sizeof(struct device), GFP_KERNEL);
|
dev = kzalloc(sizeof(struct device), GFP_KERNEL);
|
||||||
if (dev) {
|
if (dev) {
|
||||||
snprintf(dev->bus_id, BUS_ID_SIZE, "%s",
|
dev_set_name(dev, priv->internal_name);
|
||||||
priv->internal_name);
|
|
||||||
dev->bus = &iucv_bus;
|
dev->bus = &iucv_bus;
|
||||||
dev->parent = iucv_root;
|
dev->parent = iucv_root;
|
||||||
dev->driver = &vmlogrdr_driver;
|
dev->driver = &vmlogrdr_driver;
|
||||||
|
@@ -269,8 +269,7 @@ int ccwgroup_create_from_string(struct device *root, unsigned int creator_id,
|
|||||||
goto error;
|
goto error;
|
||||||
}
|
}
|
||||||
|
|
||||||
snprintf (gdev->dev.bus_id, BUS_ID_SIZE, "%s",
|
dev_set_name(&gdev->dev, "%s", dev_name(&gdev->cdev[0]->dev));
|
||||||
dev_name(&gdev->cdev[0]->dev));
|
|
||||||
|
|
||||||
rc = device_add(&gdev->dev);
|
rc = device_add(&gdev->dev);
|
||||||
if (rc)
|
if (rc)
|
||||||
|
@@ -393,8 +393,7 @@ int chp_new(struct chp_id chpid)
|
|||||||
chp->state = 1;
|
chp->state = 1;
|
||||||
chp->dev.parent = &channel_subsystems[chpid.cssid]->device;
|
chp->dev.parent = &channel_subsystems[chpid.cssid]->device;
|
||||||
chp->dev.release = chp_release;
|
chp->dev.release = chp_release;
|
||||||
snprintf(chp->dev.bus_id, BUS_ID_SIZE, "chp%x.%02x", chpid.cssid,
|
dev_set_name(&chp->dev, "chp%x.%02x", chpid.cssid, chpid.id);
|
||||||
chpid.id);
|
|
||||||
|
|
||||||
/* Obtain channel path description and fill it in. */
|
/* Obtain channel path description and fill it in. */
|
||||||
ret = chsc_determine_base_channel_path_desc(chpid, &chp->desc);
|
ret = chsc_determine_base_channel_path_desc(chpid, &chp->desc);
|
||||||
|
@@ -698,7 +698,7 @@ static int __init setup_css(int nr)
|
|||||||
return -ENOMEM;
|
return -ENOMEM;
|
||||||
css->pseudo_subchannel->dev.parent = &css->device;
|
css->pseudo_subchannel->dev.parent = &css->device;
|
||||||
css->pseudo_subchannel->dev.release = css_subchannel_release;
|
css->pseudo_subchannel->dev.release = css_subchannel_release;
|
||||||
sprintf(css->pseudo_subchannel->dev.bus_id, "defunct");
|
dev_set_name(&css->pseudo_subchannel->dev, "defunct");
|
||||||
ret = cio_create_sch_lock(css->pseudo_subchannel);
|
ret = cio_create_sch_lock(css->pseudo_subchannel);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
kfree(css->pseudo_subchannel);
|
kfree(css->pseudo_subchannel);
|
||||||
@@ -707,7 +707,7 @@ static int __init setup_css(int nr)
|
|||||||
mutex_init(&css->mutex);
|
mutex_init(&css->mutex);
|
||||||
css->valid = 1;
|
css->valid = 1;
|
||||||
css->cssid = nr;
|
css->cssid = nr;
|
||||||
sprintf(css->device.bus_id, "css%x", nr);
|
dev_set_name(&css->device, "css%x", nr);
|
||||||
css->device.release = channel_subsystem_release;
|
css->device.release = channel_subsystem_release;
|
||||||
tod_high = (u32) (get_clock() >> 32);
|
tod_high = (u32) (get_clock() >> 32);
|
||||||
css_generate_pgid(css, tod_high);
|
css_generate_pgid(css, tod_high);
|
||||||
|
@@ -892,8 +892,8 @@ static void ap_scan_bus(struct work_struct *unused)
|
|||||||
|
|
||||||
ap_dev->device.bus = &ap_bus_type;
|
ap_dev->device.bus = &ap_bus_type;
|
||||||
ap_dev->device.parent = ap_root_device;
|
ap_dev->device.parent = ap_root_device;
|
||||||
snprintf(ap_dev->device.bus_id, BUS_ID_SIZE, "card%02x",
|
dev_set_name(&ap_dev->device, "card%02x",
|
||||||
AP_QID_DEVICE(ap_dev->qid));
|
AP_QID_DEVICE(ap_dev->qid));
|
||||||
ap_dev->device.release = ap_device_release;
|
ap_dev->device.release = ap_device_release;
|
||||||
rc = device_register(&ap_dev->device);
|
rc = device_register(&ap_dev->device);
|
||||||
if (rc) {
|
if (rc) {
|
||||||
|
@@ -1724,7 +1724,7 @@ static int netiucv_register_device(struct net_device *ndev)
|
|||||||
IUCV_DBF_TEXT(trace, 3, __func__);
|
IUCV_DBF_TEXT(trace, 3, __func__);
|
||||||
|
|
||||||
if (dev) {
|
if (dev) {
|
||||||
snprintf(dev->bus_id, BUS_ID_SIZE, "net%s", ndev->name);
|
dev_set_name(dev, "net%s", ndev->name);
|
||||||
dev->bus = &iucv_bus;
|
dev->bus = &iucv_bus;
|
||||||
dev->parent = iucv_root;
|
dev->parent = iucv_root;
|
||||||
/*
|
/*
|
||||||
|
@@ -30,7 +30,7 @@ s390_root_dev_register(const char *name)
|
|||||||
dev = kzalloc(sizeof(struct device), GFP_KERNEL);
|
dev = kzalloc(sizeof(struct device), GFP_KERNEL);
|
||||||
if (!dev)
|
if (!dev)
|
||||||
return ERR_PTR(-ENOMEM);
|
return ERR_PTR(-ENOMEM);
|
||||||
strncpy(dev->bus_id, name, min(strlen(name), (size_t)BUS_ID_SIZE));
|
dev_set_name(dev, name);
|
||||||
dev->release = s390_root_dev_release;
|
dev->release = s390_root_dev_release;
|
||||||
ret = device_register(dev);
|
ret = device_register(dev);
|
||||||
if (ret) {
|
if (ret) {
|
||||||
|
@@ -283,8 +283,8 @@ struct zfcp_unit *zfcp_unit_enqueue(struct zfcp_port *port, u64 fcp_lun)
|
|||||||
unit->port = port;
|
unit->port = port;
|
||||||
unit->fcp_lun = fcp_lun;
|
unit->fcp_lun = fcp_lun;
|
||||||
|
|
||||||
snprintf(unit->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx",
|
dev_set_name(&unit->sysfs_device, "0x%016llx",
|
||||||
(unsigned long long) fcp_lun);
|
(unsigned long long) fcp_lun);
|
||||||
unit->sysfs_device.parent = &port->sysfs_device;
|
unit->sysfs_device.parent = &port->sysfs_device;
|
||||||
unit->sysfs_device.release = zfcp_sysfs_unit_release;
|
unit->sysfs_device.release = zfcp_sysfs_unit_release;
|
||||||
dev_set_drvdata(&unit->sysfs_device, unit);
|
dev_set_drvdata(&unit->sysfs_device, unit);
|
||||||
@@ -610,8 +610,7 @@ struct zfcp_port *zfcp_port_enqueue(struct zfcp_adapter *adapter, u64 wwpn,
|
|||||||
atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
|
atomic_set_mask(status | ZFCP_STATUS_COMMON_REMOVE, &port->status);
|
||||||
atomic_set(&port->refcount, 0);
|
atomic_set(&port->refcount, 0);
|
||||||
|
|
||||||
snprintf(port->sysfs_device.bus_id, BUS_ID_SIZE, "0x%016llx",
|
dev_set_name(&port->sysfs_device, "0x%016llx", wwpn);
|
||||||
(unsigned long long) wwpn);
|
|
||||||
port->sysfs_device.parent = &adapter->ccw_device->dev;
|
port->sysfs_device.parent = &adapter->ccw_device->dev;
|
||||||
|
|
||||||
port->sysfs_device.release = zfcp_sysfs_port_release;
|
port->sysfs_device.release = zfcp_sysfs_port_release;
|
||||||
|
Reference in New Issue
Block a user