dect
/
linux-2.6
Archived
13
0
Fork 0

[S390] cio: 0 is a valid chpid.

In order to determine chpid validity, we need to check whether the
corresponding path is specified in the pim.

Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
This commit is contained in:
Cornelia Huck 2006-10-06 16:38:29 +02:00 committed by Martin Schwidefsky
parent 2d103d5a80
commit 7e8ae7bfe8
1 changed files with 16 additions and 9 deletions

View File

@ -200,11 +200,13 @@ css_get_ssd_info(struct subchannel *sch)
spin_unlock_irq(&sch->lock); spin_unlock_irq(&sch->lock);
free_page((unsigned long)page); free_page((unsigned long)page);
if (!ret) { if (!ret) {
int j, chpid; int j, chpid, mask;
/* Allocate channel path structures, if needed. */ /* Allocate channel path structures, if needed. */
for (j = 0; j < 8; j++) { for (j = 0; j < 8; j++) {
mask = 0x80 >> j;
chpid = sch->ssd_info.chpid[j]; chpid = sch->ssd_info.chpid[j];
if (chpid && (get_chp_status(chpid) < 0)) if ((sch->schib.pmcw.pim & mask) &&
(get_chp_status(chpid) < 0))
new_channel_path(chpid); new_channel_path(chpid);
} }
} }
@ -222,13 +224,15 @@ s390_subchannel_remove_chpid(struct device *dev, void *data)
sch = to_subchannel(dev); sch = to_subchannel(dev);
chpid = data; chpid = data;
for (j = 0; j < 8; j++) for (j = 0; j < 8; j++) {
if (sch->schib.pmcw.chpid[j] == chpid->id) mask = 0x80 >> j;
if ((sch->schib.pmcw.pim & mask) &&
(sch->schib.pmcw.chpid[j] == chpid->id))
break; break;
}
if (j >= 8) if (j >= 8)
return 0; return 0;
mask = 0x80 >> j;
spin_lock_irq(&sch->lock); spin_lock_irq(&sch->lock);
stsch(sch->schid, &schib); stsch(sch->schid, &schib);
@ -620,7 +624,7 @@ __chp_add_new_sch(struct subchannel_id schid)
static int static int
__chp_add(struct subchannel_id schid, void *data) __chp_add(struct subchannel_id schid, void *data)
{ {
int i; int i, mask;
struct channel_path *chp; struct channel_path *chp;
struct subchannel *sch; struct subchannel *sch;
@ -630,8 +634,10 @@ __chp_add(struct subchannel_id schid, void *data)
/* Check if the subchannel is now available. */ /* Check if the subchannel is now available. */
return __chp_add_new_sch(schid); return __chp_add_new_sch(schid);
spin_lock_irq(&sch->lock); spin_lock_irq(&sch->lock);
for (i=0; i<8; i++) for (i=0; i<8; i++) {
if (sch->schib.pmcw.chpid[i] == chp->id) { mask = 0x80 >> i;
if ((sch->schib.pmcw.pim & mask) &&
(sch->schib.pmcw.chpid[i] == chp->id)) {
if (stsch(sch->schid, &sch->schib) != 0) { if (stsch(sch->schid, &sch->schib) != 0) {
/* Endgame. */ /* Endgame. */
spin_unlock_irq(&sch->lock); spin_unlock_irq(&sch->lock);
@ -639,6 +645,7 @@ __chp_add(struct subchannel_id schid, void *data)
} }
break; break;
} }
}
if (i==8) { if (i==8) {
spin_unlock_irq(&sch->lock); spin_unlock_irq(&sch->lock);
return 0; return 0;
@ -646,7 +653,7 @@ __chp_add(struct subchannel_id schid, void *data)
sch->lpm = ((sch->schib.pmcw.pim & sch->lpm = ((sch->schib.pmcw.pim &
sch->schib.pmcw.pam & sch->schib.pmcw.pam &
sch->schib.pmcw.pom) sch->schib.pmcw.pom)
| 0x80 >> i) & sch->opm; | mask) & sch->opm;
if (sch->driver && sch->driver->verify) if (sch->driver && sch->driver->verify)
sch->driver->verify(&sch->dev); sch->driver->verify(&sch->dev);