diff options
author | Sebastian Ott <sebott@linux.vnet.ibm.com> | 2009-03-31 19:16:07 +0200 |
---|---|---|
committer | Martin Schwidefsky <schwidefsky@de.ibm.com> | 2009-03-31 19:17:07 +0200 |
commit | 99f6a570eedc885675b6aa36b7acdbdcc3a7f55b (patch) | |
tree | 5695c53060a59c00a2ba093264b2342ed56835d1 | |
parent | b5cd99e6b002776c0e946f38292adbb0258b7983 (diff) | |
download | linux-3.10-99f6a570eedc885675b6aa36b7acdbdcc3a7f55b.tar.gz linux-3.10-99f6a570eedc885675b6aa36b7acdbdcc3a7f55b.tar.bz2 linux-3.10-99f6a570eedc885675b6aa36b7acdbdcc3a7f55b.zip |
[S390] cio: online_store - trigger recognition for boxed devices
Start a new device recognition if someone writes to sysfs online attribute
of a boxed ccw device. The current test will fail, since cu_type != 0
for devices which were recognized before.
Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
-rw-r--r-- | drivers/s390/cio/device.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/s390/cio/device.c b/drivers/s390/cio/device.c index e47aa3f0476..35441fa16be 100644 --- a/drivers/s390/cio/device.c +++ b/drivers/s390/cio/device.c @@ -468,7 +468,7 @@ static int online_store_recog_and_online(struct ccw_device *cdev) int ret; /* Do device recognition, if needed. */ - if (cdev->id.cu_type == 0) { + if (cdev->private->state == DEV_STATE_BOXED) { ret = ccw_device_recognition(cdev); if (ret) { CIO_MSG_EVENT(0, "Couldn't start recognition " |