Commit 5bdfcfcc authored by Cornelia Huck's avatar Cornelia Huck Committed by Linus Torvalds

[PATCH] s390: cio max channels checks

Fix max channel check in cio_ignore display function.
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 60b2737d
/* /*
* drivers/s390/cio/blacklist.c * drivers/s390/cio/blacklist.c
* S/390 common I/O routines -- blacklisting of specific devices * S/390 common I/O routines -- blacklisting of specific devices
* $Revision: 1.33 $ * $Revision: 1.34 $
* *
* Copyright (C) 1999-2002 IBM Deutschland Entwicklung GmbH, * Copyright (C) 1999-2002 IBM Deutschland Entwicklung GmbH,
* IBM Corporation * IBM Corporation
...@@ -289,7 +289,7 @@ static int cio_ignore_read (char *page, char **start, off_t off, ...@@ -289,7 +289,7 @@ static int cio_ignore_read (char *page, char **start, off_t off,
len = 0; len = 0;
for (devno = off; /* abuse the page variable for (devno = off; /* abuse the page variable
* as counter, see fs/proc/generic.c */ * as counter, see fs/proc/generic.c */
devno <= __MAX_SUBCHANNELS && len + entry_size < count; devno++) { devno < __MAX_SUBCHANNELS && len + entry_size < count; devno++) {
if (!test_bit(devno, bl_dev)) if (!test_bit(devno, bl_dev))
continue; continue;
len += sprintf(page + len, "0.0.%04lx", devno); len += sprintf(page + len, "0.0.%04lx", devno);
...@@ -302,7 +302,7 @@ static int cio_ignore_read (char *page, char **start, off_t off, ...@@ -302,7 +302,7 @@ static int cio_ignore_read (char *page, char **start, off_t off,
len += sprintf(page + len, "\n"); len += sprintf(page + len, "\n");
} }
if (devno <= __MAX_SUBCHANNELS) if (devno < __MAX_SUBCHANNELS)
*eof = 1; *eof = 1;
*start = (char *) (devno - off); /* number of checked entries */ *start = (char *) (devno - off); /* number of checked entries */
return len; return len;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment