From: Cornelia Huck The chps[] array in struct channel_subsystem is one too short; therefore the code doesn't realize the chpid ff is already known. When several devices on chpid ff become available, the message "new_channel_path: could not register ff" is displayed for every device but the first one. Signed-off-by: Cornelia Huck Signed-off-by: Martin Schwidefsky Signed-off-by: Andrew Morton --- drivers/s390/cio/css.h | 2 +- 1 files changed, 1 insertion(+), 1 deletion(-) diff -puN drivers/s390/cio/css.h~s390-chps-array-too-short drivers/s390/cio/css.h --- 25/drivers/s390/cio/css.h~s390-chps-array-too-short Thu Jan 12 17:02:45 2006 +++ 25-akpm/drivers/s390/cio/css.h Thu Jan 12 17:02:45 2006 @@ -147,7 +147,7 @@ extern int for_each_subchannel(int(*fn)( struct channel_subsystem { u8 cssid; int valid; - struct channel_path *chps[__MAX_CHPID]; + struct channel_path *chps[__MAX_CHPID + 1]; struct device device; struct pgid global_pgid; }; _