projects
/
platform
/
kernel
/
linux-stable.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
90ac24a
)
[S390] cio: airq - fix array boundary
author
Sebastian Ott
<sebott@linux.vnet.ibm.com>
Thu, 26 Mar 2009 14:24:12 +0000
(15:24 +0100)
committer
Martin Schwidefsky
<schwidefsky@de.ibm.com>
Thu, 26 Mar 2009 14:24:14 +0000
(15:24 +0100)
MAX_ISC is a valid isc number, so arrays with an index of isc
need to have a length of MAX_ISC+1
Signed-off-by: Sebastian Ott <sebott@linux.vnet.ibm.com>
Signed-off-by: Martin Schwidefsky <schwidefsky@de.ibm.com>
drivers/s390/cio/airq.c
patch
|
blob
|
history
diff --git
a/drivers/s390/cio/airq.c
b/drivers/s390/cio/airq.c
index
d3850dc
..
65d2e76
100644
(file)
--- a/
drivers/s390/cio/airq.c
+++ b/
drivers/s390/cio/airq.c
@@
-34,8
+34,8
@@
struct airq_t {
void *drv_data;
};
-static union indicator_t indicators[MAX_ISC];
-static struct airq_t *airqs[MAX_ISC][NR_AIRQS];
+static union indicator_t indicators[MAX_ISC
+1
];
+static struct airq_t *airqs[MAX_ISC
+1
][NR_AIRQS];
static int register_airq(struct airq_t *airq, u8 isc)
{