{PATCH] megaraid.c is broken in 2.4.0

From: Anwar Payyoorayil (anwar@austin.rr.com)
Date: Tue Jan 09 2001 - 19:30:40 EST


Checking for the return value of I/O allocation is reversed.

Patch against 2.4.0 follows. Definitely 2.4.1 material !!

--- linux/drivers/scsi/megaraid.c.orig Wed Dec 6 14:06:18 2000
+++ linux/drivers/scsi/megaraid.c Tue Jan 9 18:09:34 2001
@@ -1527,7 +1527,7 @@
     megaCtlrs[numCtlrs++] = megaCfg;
     if (flag != BOARD_QUARTZ) {
       /* Request our IO Range */
- if (request_region (megaBase, 16, "megaraid")) {
+ if (!request_region (megaBase, 16, "megaraid")) {
        printk (KERN_WARNING "megaraid: Couldn't register I/O range!" CRLFSTR);
        scsi_unregister (host);
        continue;
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
Please read the FAQ at http://www.tux.org/lkml/



This archive was generated by hypermail 2b29 : Mon Jan 15 2001 - 21:00:24 EST