Commit 97166f52 authored by Cornelia Huck's avatar Cornelia Huck Committed by Martin Schwidefsky

[S390] cio: Put referernce on correct device after moving.

Signed-off-by: default avatarCornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent c619d422
...@@ -875,14 +875,14 @@ void ccw_device_move_to_orphanage(struct work_struct *work) ...@@ -875,14 +875,14 @@ void ccw_device_move_to_orphanage(struct work_struct *work)
if (replacing_cdev) { if (replacing_cdev) {
sch_attach_disconnected_device(sch, replacing_cdev); sch_attach_disconnected_device(sch, replacing_cdev);
/* Release reference from get_disc_ccwdev_by_dev_id() */ /* Release reference from get_disc_ccwdev_by_dev_id() */
put_device(&cdev->dev); put_device(&replacing_cdev->dev);
return; return;
} }
replacing_cdev = get_orphaned_ccwdev_by_dev_id(css, &dev_id); replacing_cdev = get_orphaned_ccwdev_by_dev_id(css, &dev_id);
if (replacing_cdev) { if (replacing_cdev) {
sch_attach_orphaned_device(sch, replacing_cdev); sch_attach_orphaned_device(sch, replacing_cdev);
/* Release reference from get_orphaned_ccwdev_by_dev_id() */ /* Release reference from get_orphaned_ccwdev_by_dev_id() */
put_device(&cdev->dev); put_device(&replacing_cdev->dev);
return; return;
} }
sch_create_and_recog_new_device(sch); sch_create_and_recog_new_device(sch);
......
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