* debian/patches/series/0experimental.1: Update.

* debian/patches/s390-drivers-subchannel-fix.patch: Add.

svn path=/dists/trunk/linux-2.6/; revision=6196
This commit is contained in:
Bastian Blank 2006-03-17 17:54:13 +00:00
parent 3cdcb46833
commit d835bd1ceb
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,14 @@
diff --git a/drivers/s390/cio/css.c b/drivers/s390/cio/css.c
index 1bbf231..3c77d65 100644
--- a/drivers/s390/cio/css.c
+++ b/drivers/s390/cio/css.c
@@ -409,6 +409,9 @@ __init_channel_subsystem(struct subchann
/* -ENXIO: no more subchannels. */
case -ENXIO:
return ret;
+ /* -EIO: this subchannel set not supported. */
+ case -EIO:
+ return ret;
default:
return 0;
}

View File

@ -26,3 +26,4 @@
+ mips-io-bad-code.patch
+ s390-drivers-ccw-uevent-modalias.patch
+ s390-drivers-ccw-uevent-cleanup.patch
+ s390-drivers-subchannel-fix.patch