aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/s390/cio/device.c
diff options
context:
space:
mode:
authorSebastian Ott <sebott@linux.vnet.ibm.com>2009-09-22 16:58:35 -0400
committerMartin Schwidefsky <schwidefsky@de.ibm.com>2009-09-22 16:58:41 -0400
commit8ea7f5590142c0b9ab319aa3cae85cf430a207d8 (patch)
treea23b12fbfe51077cc8df6694f4ab7225462b657d /drivers/s390/cio/device.c
parent255305536c1b56ad09590f1400fb2c788265e34e (diff)
[S390] cio: introduce css_settle
Introduce the css_driver callback settle which can be implemented by a subchannel driver to wait for the subchannel type specific asynchronous work to finish. In channel_subsystem_init_sync we call that for each subchannel driver. Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com> Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
Diffstat (limited to 'drivers/s390/cio/device.c')
-rw-r--r--drivers/s390/cio/device.c18
1 files changed, 12 insertions, 6 deletions
diff --git a/drivers/s390/cio/device.c b/drivers/s390/cio/device.c
index 4093adc12f2c..f780bdd3a04e 100644
--- a/drivers/s390/cio/device.c
+++ b/drivers/s390/cio/device.c
@@ -131,6 +131,10 @@ static void io_subchannel_shutdown(struct subchannel *);
131static int io_subchannel_sch_event(struct subchannel *, int); 131static int io_subchannel_sch_event(struct subchannel *, int);
132static int io_subchannel_chp_event(struct subchannel *, struct chp_link *, 132static int io_subchannel_chp_event(struct subchannel *, struct chp_link *,
133 int); 133 int);
134static void recovery_func(unsigned long data);
135struct workqueue_struct *ccw_device_work;
136wait_queue_head_t ccw_device_init_wq;
137atomic_t ccw_device_init_count;
134 138
135static struct css_device_id io_subchannel_ids[] = { 139static struct css_device_id io_subchannel_ids[] = {
136 { .match_flags = 0x1, .type = SUBCHANNEL_TYPE_IO, }, 140 { .match_flags = 0x1, .type = SUBCHANNEL_TYPE_IO, },
@@ -151,6 +155,13 @@ static int io_subchannel_prepare(struct subchannel *sch)
151 return 0; 155 return 0;
152} 156}
153 157
158static void io_subchannel_settle(void)
159{
160 wait_event(ccw_device_init_wq,
161 atomic_read(&ccw_device_init_count) == 0);
162 flush_workqueue(ccw_device_work);
163}
164
154static struct css_driver io_subchannel_driver = { 165static struct css_driver io_subchannel_driver = {
155 .owner = THIS_MODULE, 166 .owner = THIS_MODULE,
156 .subchannel_type = io_subchannel_ids, 167 .subchannel_type = io_subchannel_ids,
@@ -162,14 +173,9 @@ static struct css_driver io_subchannel_driver = {
162 .remove = io_subchannel_remove, 173 .remove = io_subchannel_remove,
163 .shutdown = io_subchannel_shutdown, 174 .shutdown = io_subchannel_shutdown,
164 .prepare = io_subchannel_prepare, 175 .prepare = io_subchannel_prepare,
176 .settle = io_subchannel_settle,
165}; 177};
166 178
167struct workqueue_struct *ccw_device_work;
168wait_queue_head_t ccw_device_init_wq;
169atomic_t ccw_device_init_count;
170
171static void recovery_func(unsigned long data);
172
173int __init io_subchannel_init(void) 179int __init io_subchannel_init(void)
174{ 180{
175 int ret; 181 int ret;