Commit 24a1872d authored by Sebastian Ott's avatar Sebastian Ott Committed by Martin Schwidefsky

[S390] cio: add per device initialization status flag

The function ccw_device_unregister has to ensure to remove
all references obtained by device_add and device_initialize.
Unfortunately it gets called for devices which are
1) uninitialized, 2) initialized but unregistered, and
3) registered devices. To distinguish 1) and 2) this patch
introduces a new flag "initialized", which is 1 as long as we
hold the initial device reference.
Signed-off-by: default avatarSebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent 7d253b9a
...@@ -304,7 +304,11 @@ int ccw_device_is_orphan(struct ccw_device *cdev) ...@@ -304,7 +304,11 @@ int ccw_device_is_orphan(struct ccw_device *cdev)
static void ccw_device_unregister(struct ccw_device *cdev) static void ccw_device_unregister(struct ccw_device *cdev)
{ {
if (device_is_registered(&cdev->dev)) { if (device_is_registered(&cdev->dev)) {
/* Undo device_add(). */
device_del(&cdev->dev); device_del(&cdev->dev);
}
if (cdev->private->flags.initialized) {
cdev->private->flags.initialized = 0;
/* Release reference from device_initialize(). */ /* Release reference from device_initialize(). */
put_device(&cdev->dev); put_device(&cdev->dev);
} }
...@@ -716,6 +720,7 @@ static int io_subchannel_initialize_dev(struct subchannel *sch, ...@@ -716,6 +720,7 @@ static int io_subchannel_initialize_dev(struct subchannel *sch,
put_device(&cdev->dev); put_device(&cdev->dev);
return -ENODEV; return -ENODEV;
} }
cdev->private->flags.initialized = 1;
return 0; return 0;
} }
...@@ -998,6 +1003,7 @@ static int io_subchannel_probe(struct subchannel *sch) ...@@ -998,6 +1003,7 @@ static int io_subchannel_probe(struct subchannel *sch)
cdev = sch_get_cdev(sch); cdev = sch_get_cdev(sch);
cdev->dev.groups = ccwdev_attr_groups; cdev->dev.groups = ccwdev_attr_groups;
device_initialize(&cdev->dev); device_initialize(&cdev->dev);
cdev->private->flags.initialized = 1;
ccw_device_register(cdev); ccw_device_register(cdev);
/* /*
* Check if the device is already online. If it is * Check if the device is already online. If it is
......
...@@ -167,6 +167,7 @@ struct ccw_device_private { ...@@ -167,6 +167,7 @@ struct ccw_device_private {
unsigned int resuming:1; /* recognition while resume */ unsigned int resuming:1; /* recognition while resume */
unsigned int pgroup:1; /* pathgroup is set up */ unsigned int pgroup:1; /* pathgroup is set up */
unsigned int mpath:1; /* multipathing is set up */ unsigned int mpath:1; /* multipathing is set up */
unsigned int initialized:1; /* set if initial reference held */
} __attribute__((packed)) flags; } __attribute__((packed)) flags;
unsigned long intparm; /* user interruption parameter */ unsigned long intparm; /* user interruption parameter */
struct qdio_irq *qdio_data; struct qdio_irq *qdio_data;
......
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