diff options
author | Eric Sesterhenn <snakebyte@gmx.de> | 2006-06-23 05:06:06 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 10:43:08 -0400 |
commit | 125e18745f16685f69a34fd6130d47598fc4bf54 (patch) | |
tree | c97ed94b0525a572efa1bd4990a55b18be5d781d /drivers | |
parent | 78ce89c92bc6eaf5933b5664bff64253a7103bd7 (diff) |
[PATCH] More BUG_ON conversion
Signed-off-by: Eric Sesterhenn <snakebyte@gmx.de>
Signed-off-by: Alexey Dobriyan <adobriyan@gmail.com>
Cc: Bartlomiej Zolnierkiewicz <B.Zolnierkiewicz@elka.pw.edu.pl>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Acked-by: "Salyzyn, Mark" <mark_salyzyn@adaptec.com>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/ide/ide-cd.c | 3 | ||||
-rw-r--r-- | drivers/ide/ide-dma.c | 6 | ||||
-rw-r--r-- | drivers/ide/ide-floppy.c | 12 | ||||
-rw-r--r-- | drivers/ide/ide-iops.c | 12 | ||||
-rw-r--r-- | drivers/ide/ide-lib.c | 3 | ||||
-rw-r--r-- | drivers/ide/ide-taskfile.c | 3 | ||||
-rw-r--r-- | drivers/ide/ide.c | 3 | ||||
-rw-r--r-- | drivers/ide/pci/trm290.c | 3 | ||||
-rw-r--r-- | drivers/scsi/53c700.h | 6 | ||||
-rw-r--r-- | drivers/scsi/aacraid/aachba.c | 15 | ||||
-rw-r--r-- | drivers/scsi/aacraid/commsup.c | 6 | ||||
-rw-r--r-- | drivers/scsi/arm/queue.c | 6 | ||||
-rw-r--r-- | drivers/scsi/ibmmca.c | 3 | ||||
-rw-r--r-- | drivers/scsi/ide-scsi.c | 6 | ||||
-rw-r--r-- | drivers/scsi/megaraid.c | 2 |
15 files changed, 30 insertions, 59 deletions
diff --git a/drivers/ide/ide-cd.c b/drivers/ide/ide-cd.c index abb83d95df57..6de3cd3d6e8e 100644 --- a/drivers/ide/ide-cd.c +++ b/drivers/ide/ide-cd.c | |||
@@ -1725,8 +1725,7 @@ static ide_startstop_t cdrom_newpc_intr(ide_drive_t *drive) | |||
1725 | } | 1725 | } |
1726 | } | 1726 | } |
1727 | 1727 | ||
1728 | if (HWGROUP(drive)->handler != NULL) | 1728 | BUG_ON(HWGROUP(drive)->handler != NULL); |
1729 | BUG(); | ||
1730 | 1729 | ||
1731 | ide_set_handler(drive, cdrom_newpc_intr, rq->timeout, NULL); | 1730 | ide_set_handler(drive, cdrom_newpc_intr, rq->timeout, NULL); |
1732 | return ide_started; | 1731 | return ide_started; |
diff --git a/drivers/ide/ide-dma.c b/drivers/ide/ide-dma.c index c481be8b807f..783a2475ee8b 100644 --- a/drivers/ide/ide-dma.c +++ b/drivers/ide/ide-dma.c | |||
@@ -206,8 +206,7 @@ int ide_build_sglist(ide_drive_t *drive, struct request *rq) | |||
206 | ide_hwif_t *hwif = HWIF(drive); | 206 | ide_hwif_t *hwif = HWIF(drive); |
207 | struct scatterlist *sg = hwif->sg_table; | 207 | struct scatterlist *sg = hwif->sg_table; |
208 | 208 | ||
209 | if ((rq->flags & REQ_DRIVE_TASKFILE) && rq->nr_sectors > 256) | 209 | BUG_ON((rq->flags & REQ_DRIVE_TASKFILE) && rq->nr_sectors > 256); |
210 | BUG(); | ||
211 | 210 | ||
212 | ide_map_sg(drive, rq); | 211 | ide_map_sg(drive, rq); |
213 | 212 | ||
@@ -947,8 +946,7 @@ void ide_setup_dma (ide_hwif_t *hwif, unsigned long dma_base, unsigned int num_p | |||
947 | } | 946 | } |
948 | printk("\n"); | 947 | printk("\n"); |
949 | 948 | ||
950 | if (!(hwif->dma_master)) | 949 | BUG_ON(!hwif->dma_master); |
951 | BUG(); | ||
952 | } | 950 | } |
953 | 951 | ||
954 | EXPORT_SYMBOL_GPL(ide_setup_dma); | 952 | EXPORT_SYMBOL_GPL(ide_setup_dma); |
diff --git a/drivers/ide/ide-floppy.c b/drivers/ide/ide-floppy.c index a53e3ce4a142..a1179e924962 100644 --- a/drivers/ide/ide-floppy.c +++ b/drivers/ide/ide-floppy.c | |||
@@ -898,8 +898,7 @@ static ide_startstop_t idefloppy_pc_intr (ide_drive_t *drive) | |||
898 | "to send us more data than expected " | 898 | "to send us more data than expected " |
899 | "- discarding data\n"); | 899 | "- discarding data\n"); |
900 | idefloppy_discard_data(drive,bcount.all); | 900 | idefloppy_discard_data(drive,bcount.all); |
901 | if (HWGROUP(drive)->handler != NULL) | 901 | BUG_ON(HWGROUP(drive)->handler != NULL); |
902 | BUG(); | ||
903 | ide_set_handler(drive, | 902 | ide_set_handler(drive, |
904 | &idefloppy_pc_intr, | 903 | &idefloppy_pc_intr, |
905 | IDEFLOPPY_WAIT_CMD, | 904 | IDEFLOPPY_WAIT_CMD, |
@@ -932,8 +931,7 @@ static ide_startstop_t idefloppy_pc_intr (ide_drive_t *drive) | |||
932 | pc->actually_transferred += bcount.all; | 931 | pc->actually_transferred += bcount.all; |
933 | pc->current_position += bcount.all; | 932 | pc->current_position += bcount.all; |
934 | 933 | ||
935 | if (HWGROUP(drive)->handler != NULL) | 934 | BUG_ON(HWGROUP(drive)->handler != NULL); |
936 | BUG(); | ||
937 | ide_set_handler(drive, &idefloppy_pc_intr, IDEFLOPPY_WAIT_CMD, NULL); /* And set the interrupt handler again */ | 935 | ide_set_handler(drive, &idefloppy_pc_intr, IDEFLOPPY_WAIT_CMD, NULL); /* And set the interrupt handler again */ |
938 | return ide_started; | 936 | return ide_started; |
939 | } | 937 | } |
@@ -960,8 +958,7 @@ static ide_startstop_t idefloppy_transfer_pc (ide_drive_t *drive) | |||
960 | "issuing a packet command\n"); | 958 | "issuing a packet command\n"); |
961 | return ide_do_reset(drive); | 959 | return ide_do_reset(drive); |
962 | } | 960 | } |
963 | if (HWGROUP(drive)->handler != NULL) | 961 | BUG_ON(HWGROUP(drive)->handler != NULL); |
964 | BUG(); | ||
965 | /* Set the interrupt routine */ | 962 | /* Set the interrupt routine */ |
966 | ide_set_handler(drive, &idefloppy_pc_intr, IDEFLOPPY_WAIT_CMD, NULL); | 963 | ide_set_handler(drive, &idefloppy_pc_intr, IDEFLOPPY_WAIT_CMD, NULL); |
967 | /* Send the actual packet */ | 964 | /* Send the actual packet */ |
@@ -1017,8 +1014,7 @@ static ide_startstop_t idefloppy_transfer_pc1 (ide_drive_t *drive) | |||
1017 | * 40 and 50msec work well. idefloppy_pc_intr will not be actually | 1014 | * 40 and 50msec work well. idefloppy_pc_intr will not be actually |
1018 | * used until after the packet is moved in about 50 msec. | 1015 | * used until after the packet is moved in about 50 msec. |
1019 | */ | 1016 | */ |
1020 | if (HWGROUP(drive)->handler != NULL) | 1017 | BUG_ON(HWGROUP(drive)->handler != NULL); |
1021 | BUG(); | ||
1022 | ide_set_handler(drive, | 1018 | ide_set_handler(drive, |
1023 | &idefloppy_pc_intr, /* service routine for packet command */ | 1019 | &idefloppy_pc_intr, /* service routine for packet command */ |
1024 | floppy->ticks, /* wait this long before "failing" */ | 1020 | floppy->ticks, /* wait this long before "failing" */ |
diff --git a/drivers/ide/ide-iops.c b/drivers/ide/ide-iops.c index b72dde70840a..97a49e77a8f1 100644 --- a/drivers/ide/ide-iops.c +++ b/drivers/ide/ide-iops.c | |||
@@ -939,8 +939,7 @@ void ide_execute_command(ide_drive_t *drive, task_ioreg_t cmd, ide_handler_t *ha | |||
939 | 939 | ||
940 | spin_lock_irqsave(&ide_lock, flags); | 940 | spin_lock_irqsave(&ide_lock, flags); |
941 | 941 | ||
942 | if(hwgroup->handler) | 942 | BUG_ON(hwgroup->handler); |
943 | BUG(); | ||
944 | hwgroup->handler = handler; | 943 | hwgroup->handler = handler; |
945 | hwgroup->expiry = expiry; | 944 | hwgroup->expiry = expiry; |
946 | hwgroup->timer.expires = jiffies + timeout; | 945 | hwgroup->timer.expires = jiffies + timeout; |
@@ -981,8 +980,7 @@ static ide_startstop_t atapi_reset_pollfunc (ide_drive_t *drive) | |||
981 | printk("%s: ATAPI reset complete\n", drive->name); | 980 | printk("%s: ATAPI reset complete\n", drive->name); |
982 | } else { | 981 | } else { |
983 | if (time_before(jiffies, hwgroup->poll_timeout)) { | 982 | if (time_before(jiffies, hwgroup->poll_timeout)) { |
984 | if (HWGROUP(drive)->handler != NULL) | 983 | BUG_ON(HWGROUP(drive)->handler != NULL); |
985 | BUG(); | ||
986 | ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL); | 984 | ide_set_handler(drive, &atapi_reset_pollfunc, HZ/20, NULL); |
987 | /* continue polling */ | 985 | /* continue polling */ |
988 | return ide_started; | 986 | return ide_started; |
@@ -1021,8 +1019,7 @@ static ide_startstop_t reset_pollfunc (ide_drive_t *drive) | |||
1021 | 1019 | ||
1022 | if (!OK_STAT(tmp = hwif->INB(IDE_STATUS_REG), 0, BUSY_STAT)) { | 1020 | if (!OK_STAT(tmp = hwif->INB(IDE_STATUS_REG), 0, BUSY_STAT)) { |
1023 | if (time_before(jiffies, hwgroup->poll_timeout)) { | 1021 | if (time_before(jiffies, hwgroup->poll_timeout)) { |
1024 | if (HWGROUP(drive)->handler != NULL) | 1022 | BUG_ON(HWGROUP(drive)->handler != NULL); |
1025 | BUG(); | ||
1026 | ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL); | 1023 | ide_set_handler(drive, &reset_pollfunc, HZ/20, NULL); |
1027 | /* continue polling */ | 1024 | /* continue polling */ |
1028 | return ide_started; | 1025 | return ide_started; |
@@ -1138,8 +1135,7 @@ static ide_startstop_t do_reset1 (ide_drive_t *drive, int do_not_try_atapi) | |||
1138 | hwgroup = HWGROUP(drive); | 1135 | hwgroup = HWGROUP(drive); |
1139 | 1136 | ||
1140 | /* We must not reset with running handlers */ | 1137 | /* We must not reset with running handlers */ |
1141 | if(hwgroup->handler != NULL) | 1138 | BUG_ON(hwgroup->handler != NULL); |
1142 | BUG(); | ||
1143 | 1139 | ||
1144 | /* For an ATAPI device, first try an ATAPI SRST. */ | 1140 | /* For an ATAPI device, first try an ATAPI SRST. */ |
1145 | if (drive->media != ide_disk && !do_not_try_atapi) { | 1141 | if (drive->media != ide_disk && !do_not_try_atapi) { |
diff --git a/drivers/ide/ide-lib.c b/drivers/ide/ide-lib.c index 41d46dbe6c24..16a143133f93 100644 --- a/drivers/ide/ide-lib.c +++ b/drivers/ide/ide-lib.c | |||
@@ -164,8 +164,7 @@ u8 ide_rate_filter (u8 mode, u8 speed) | |||
164 | // printk("%s: mode 0x%02x, speed 0x%02x\n", __FUNCTION__, mode, speed); | 164 | // printk("%s: mode 0x%02x, speed 0x%02x\n", __FUNCTION__, mode, speed); |
165 | 165 | ||
166 | /* So that we remember to update this if new modes appear */ | 166 | /* So that we remember to update this if new modes appear */ |
167 | if (mode > 4) | 167 | BUG_ON(mode > 4); |
168 | BUG(); | ||
169 | return min(speed, speed_max[mode]); | 168 | return min(speed, speed_max[mode]); |
170 | #else /* !CONFIG_BLK_DEV_IDEDMA */ | 169 | #else /* !CONFIG_BLK_DEV_IDEDMA */ |
171 | return min(speed, (u8)XFER_PIO_4); | 170 | return min(speed, (u8)XFER_PIO_4); |
diff --git a/drivers/ide/ide-taskfile.c b/drivers/ide/ide-taskfile.c index 9233b8109a0f..a839b2a8f6f4 100644 --- a/drivers/ide/ide-taskfile.c +++ b/drivers/ide/ide-taskfile.c | |||
@@ -196,8 +196,7 @@ ide_startstop_t set_geometry_intr (ide_drive_t *drive) | |||
196 | if (stat & (ERR_STAT|DRQ_STAT)) | 196 | if (stat & (ERR_STAT|DRQ_STAT)) |
197 | return ide_error(drive, "set_geometry_intr", stat); | 197 | return ide_error(drive, "set_geometry_intr", stat); |
198 | 198 | ||
199 | if (HWGROUP(drive)->handler != NULL) | 199 | BUG_ON(HWGROUP(drive)->handler != NULL); |
200 | BUG(); | ||
201 | ide_set_handler(drive, &set_geometry_intr, WAIT_WORSTCASE, NULL); | 200 | ide_set_handler(drive, &set_geometry_intr, WAIT_WORSTCASE, NULL); |
202 | return ide_started; | 201 | return ide_started; |
203 | } | 202 | } |
diff --git a/drivers/ide/ide.c b/drivers/ide/ide.c index f5a60912c271..9799aed772e1 100644 --- a/drivers/ide/ide.c +++ b/drivers/ide/ide.c | |||
@@ -1367,8 +1367,7 @@ int generic_ide_ioctl(ide_drive_t *drive, struct file *file, struct block_device | |||
1367 | 1367 | ||
1368 | ide_abort(drive, "drive reset"); | 1368 | ide_abort(drive, "drive reset"); |
1369 | 1369 | ||
1370 | if(HWGROUP(drive)->handler) | 1370 | BUG_ON(HWGROUP(drive)->handler); |
1371 | BUG(); | ||
1372 | 1371 | ||
1373 | /* Ensure nothing gets queued after we | 1372 | /* Ensure nothing gets queued after we |
1374 | drop the lock. Reset will clear the busy */ | 1373 | drop the lock. Reset will clear the busy */ |
diff --git a/drivers/ide/pci/trm290.c b/drivers/ide/pci/trm290.c index c26c8ca90dd4..fe80295974e1 100644 --- a/drivers/ide/pci/trm290.c +++ b/drivers/ide/pci/trm290.c | |||
@@ -183,8 +183,7 @@ static void trm290_ide_dma_exec_cmd(ide_drive_t *drive, u8 command) | |||
183 | { | 183 | { |
184 | ide_hwif_t *hwif = HWIF(drive); | 184 | ide_hwif_t *hwif = HWIF(drive); |
185 | 185 | ||
186 | if (HWGROUP(drive)->handler != NULL) /* paranoia check */ | 186 | BUG_ON(HWGROUP(drive)->handler != NULL); /* paranoia check */ |
187 | BUG(); | ||
188 | ide_set_handler(drive, &ide_dma_intr, WAIT_CMD, NULL); | 187 | ide_set_handler(drive, &ide_dma_intr, WAIT_CMD, NULL); |
189 | /* issue cmd to drive */ | 188 | /* issue cmd to drive */ |
190 | hwif->OUTB(command, IDE_COMMAND_REG); | 189 | hwif->OUTB(command, IDE_COMMAND_REG); |
diff --git a/drivers/scsi/53c700.h b/drivers/scsi/53c700.h index d8041952b1b5..7f22a06fe5ec 100644 --- a/drivers/scsi/53c700.h +++ b/drivers/scsi/53c700.h | |||
@@ -474,8 +474,7 @@ NCR_700_readl(struct Scsi_Host *host, __u32 reg) | |||
474 | ioread32(hostdata->base + reg); | 474 | ioread32(hostdata->base + reg); |
475 | #if 1 | 475 | #if 1 |
476 | /* sanity check the register */ | 476 | /* sanity check the register */ |
477 | if((reg & 0x3) != 0) | 477 | BUG_ON((reg & 0x3) != 0); |
478 | BUG(); | ||
479 | #endif | 478 | #endif |
480 | 479 | ||
481 | return value; | 480 | return value; |
@@ -498,8 +497,7 @@ NCR_700_writel(__u32 value, struct Scsi_Host *host, __u32 reg) | |||
498 | 497 | ||
499 | #if 1 | 498 | #if 1 |
500 | /* sanity check the register */ | 499 | /* sanity check the register */ |
501 | if((reg & 0x3) != 0) | 500 | BUG_ON((reg & 0x3) != 0); |
502 | BUG(); | ||
503 | #endif | 501 | #endif |
504 | 502 | ||
505 | bEBus ? iowrite32be(value, hostdata->base + reg): | 503 | bEBus ? iowrite32be(value, hostdata->base + reg): |
diff --git a/drivers/scsi/aacraid/aachba.c b/drivers/scsi/aacraid/aachba.c index ea9e038813eb..83b5c7d085f2 100644 --- a/drivers/scsi/aacraid/aachba.c +++ b/drivers/scsi/aacraid/aachba.c | |||
@@ -396,8 +396,7 @@ static void get_container_name_callback(void *context, struct fib * fibptr) | |||
396 | scsicmd->SCp.phase = AAC_OWNER_MIDLEVEL; | 396 | scsicmd->SCp.phase = AAC_OWNER_MIDLEVEL; |
397 | 397 | ||
398 | dprintk((KERN_DEBUG "get_container_name_callback[cpu %d]: t = %ld.\n", smp_processor_id(), jiffies)); | 398 | dprintk((KERN_DEBUG "get_container_name_callback[cpu %d]: t = %ld.\n", smp_processor_id(), jiffies)); |
399 | if (fibptr == NULL) | 399 | BUG_ON(fibptr == NULL); |
400 | BUG(); | ||
401 | 400 | ||
402 | get_name_reply = (struct aac_get_name_resp *) fib_data(fibptr); | 401 | get_name_reply = (struct aac_get_name_resp *) fib_data(fibptr); |
403 | /* Failure is irrelevant, using default value instead */ | 402 | /* Failure is irrelevant, using default value instead */ |
@@ -956,8 +955,7 @@ static void io_callback(void *context, struct fib * fibptr) | |||
956 | smp_processor_id(), (unsigned long long)lba, jiffies); | 955 | smp_processor_id(), (unsigned long long)lba, jiffies); |
957 | } | 956 | } |
958 | 957 | ||
959 | if (fibptr == NULL) | 958 | BUG_ON(fibptr == NULL); |
960 | BUG(); | ||
961 | 959 | ||
962 | if(scsicmd->use_sg) | 960 | if(scsicmd->use_sg) |
963 | pci_unmap_sg(dev->pdev, | 961 | pci_unmap_sg(dev->pdev, |
@@ -1092,8 +1090,7 @@ static int aac_read(struct scsi_cmnd * scsicmd, int cid) | |||
1092 | 1090 | ||
1093 | aac_build_sgraw(scsicmd, &readcmd->sg); | 1091 | aac_build_sgraw(scsicmd, &readcmd->sg); |
1094 | fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(readcmd->sg.count) - 1) * sizeof (struct sgentryraw)); | 1092 | fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(readcmd->sg.count) - 1) * sizeof (struct sgentryraw)); |
1095 | if (fibsize > (dev->max_fib_size - sizeof(struct aac_fibhdr))) | 1093 | BUG_ON(fibsize > (dev->max_fib_size - sizeof(struct aac_fibhdr))); |
1096 | BUG(); | ||
1097 | /* | 1094 | /* |
1098 | * Now send the Fib to the adapter | 1095 | * Now send the Fib to the adapter |
1099 | */ | 1096 | */ |
@@ -1261,8 +1258,7 @@ static int aac_write(struct scsi_cmnd * scsicmd, int cid) | |||
1261 | 1258 | ||
1262 | aac_build_sgraw(scsicmd, &writecmd->sg); | 1259 | aac_build_sgraw(scsicmd, &writecmd->sg); |
1263 | fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(writecmd->sg.count) - 1) * sizeof (struct sgentryraw)); | 1260 | fibsize = sizeof(struct aac_raw_io) + ((le32_to_cpu(writecmd->sg.count) - 1) * sizeof (struct sgentryraw)); |
1264 | if (fibsize > (dev->max_fib_size - sizeof(struct aac_fibhdr))) | 1261 | BUG_ON(fibsize > (dev->max_fib_size - sizeof(struct aac_fibhdr))); |
1265 | BUG(); | ||
1266 | /* | 1262 | /* |
1267 | * Now send the Fib to the adapter | 1263 | * Now send the Fib to the adapter |
1268 | */ | 1264 | */ |
@@ -1904,8 +1900,7 @@ static void aac_srb_callback(void *context, struct fib * fibptr) | |||
1904 | scsicmd->SCp.phase = AAC_OWNER_MIDLEVEL; | 1900 | scsicmd->SCp.phase = AAC_OWNER_MIDLEVEL; |
1905 | dev = (struct aac_dev *)scsicmd->device->host->hostdata; | 1901 | dev = (struct aac_dev *)scsicmd->device->host->hostdata; |
1906 | 1902 | ||
1907 | if (fibptr == NULL) | 1903 | BUG_ON(fibptr == NULL); |
1908 | BUG(); | ||
1909 | 1904 | ||
1910 | srbreply = (struct aac_srb_reply *) fib_data(fibptr); | 1905 | srbreply = (struct aac_srb_reply *) fib_data(fibptr); |
1911 | 1906 | ||
diff --git a/drivers/scsi/aacraid/commsup.c b/drivers/scsi/aacraid/commsup.c index d2ef17ea44fa..3f27419c66af 100644 --- a/drivers/scsi/aacraid/commsup.c +++ b/drivers/scsi/aacraid/commsup.c | |||
@@ -229,8 +229,7 @@ void aac_fib_init(struct fib *fibptr) | |||
229 | static void fib_dealloc(struct fib * fibptr) | 229 | static void fib_dealloc(struct fib * fibptr) |
230 | { | 230 | { |
231 | struct hw_fib *hw_fib = fibptr->hw_fib; | 231 | struct hw_fib *hw_fib = fibptr->hw_fib; |
232 | if(hw_fib->header.StructType != FIB_MAGIC) | 232 | BUG_ON(hw_fib->header.StructType != FIB_MAGIC); |
233 | BUG(); | ||
234 | hw_fib->header.XferState = 0; | 233 | hw_fib->header.XferState = 0; |
235 | } | 234 | } |
236 | 235 | ||
@@ -530,8 +529,7 @@ int aac_fib_send(u16 command, struct fib *fibptr, unsigned long size, | |||
530 | } | 529 | } |
531 | } else | 530 | } else |
532 | down(&fibptr->event_wait); | 531 | down(&fibptr->event_wait); |
533 | if(fibptr->done == 0) | 532 | BUG_ON(fibptr->done == 0); |
534 | BUG(); | ||
535 | 533 | ||
536 | if((fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT)){ | 534 | if((fibptr->flags & FIB_CONTEXT_FLAG_TIMED_OUT)){ |
537 | return -ETIMEDOUT; | 535 | return -ETIMEDOUT; |
diff --git a/drivers/scsi/arm/queue.c b/drivers/scsi/arm/queue.c index b10750bb5c09..8caa5903ce38 100644 --- a/drivers/scsi/arm/queue.c +++ b/drivers/scsi/arm/queue.c | |||
@@ -118,8 +118,7 @@ int __queue_add(Queue_t *queue, Scsi_Cmnd *SCpnt, int head) | |||
118 | list_del(l); | 118 | list_del(l); |
119 | 119 | ||
120 | q = list_entry(l, QE_t, list); | 120 | q = list_entry(l, QE_t, list); |
121 | if (BAD_MAGIC(q, QUEUE_MAGIC_FREE)) | 121 | BUG_ON(BAD_MAGIC(q, QUEUE_MAGIC_FREE)); |
122 | BUG(); | ||
123 | 122 | ||
124 | SET_MAGIC(q, QUEUE_MAGIC_USED); | 123 | SET_MAGIC(q, QUEUE_MAGIC_USED); |
125 | q->SCpnt = SCpnt; | 124 | q->SCpnt = SCpnt; |
@@ -144,8 +143,7 @@ static Scsi_Cmnd *__queue_remove(Queue_t *queue, struct list_head *ent) | |||
144 | */ | 143 | */ |
145 | list_del(ent); | 144 | list_del(ent); |
146 | q = list_entry(ent, QE_t, list); | 145 | q = list_entry(ent, QE_t, list); |
147 | if (BAD_MAGIC(q, QUEUE_MAGIC_USED)) | 146 | BUG_ON(BAD_MAGIC(q, QUEUE_MAGIC_USED)); |
148 | BUG(); | ||
149 | 147 | ||
150 | SET_MAGIC(q, QUEUE_MAGIC_FREE); | 148 | SET_MAGIC(q, QUEUE_MAGIC_FREE); |
151 | list_add(ent, &queue->free); | 149 | list_add(ent, &queue->free); |
diff --git a/drivers/scsi/ibmmca.c b/drivers/scsi/ibmmca.c index 0c6dc31bb14d..115f55471ed3 100644 --- a/drivers/scsi/ibmmca.c +++ b/drivers/scsi/ibmmca.c | |||
@@ -2241,8 +2241,7 @@ static int __ibmmca_host_reset(Scsi_Cmnd * cmd) | |||
2241 | int host_index; | 2241 | int host_index; |
2242 | unsigned long imm_command; | 2242 | unsigned long imm_command; |
2243 | 2243 | ||
2244 | if (cmd == NULL) | 2244 | BUG_ON(cmd == NULL); |
2245 | BUG(); | ||
2246 | 2245 | ||
2247 | ticks = IM_RESET_DELAY * HZ; | 2246 | ticks = IM_RESET_DELAY * HZ; |
2248 | shpnt = cmd->device->host; | 2247 | shpnt = cmd->device->host; |
diff --git a/drivers/scsi/ide-scsi.c b/drivers/scsi/ide-scsi.c index 39b760a24241..988e6f7af01a 100644 --- a/drivers/scsi/ide-scsi.c +++ b/drivers/scsi/ide-scsi.c | |||
@@ -600,8 +600,7 @@ static ide_startstop_t idescsi_transfer_pc(ide_drive_t *drive) | |||
600 | "issuing a packet command\n"); | 600 | "issuing a packet command\n"); |
601 | return ide_do_reset (drive); | 601 | return ide_do_reset (drive); |
602 | } | 602 | } |
603 | if (HWGROUP(drive)->handler != NULL) | 603 | BUG_ON(HWGROUP(drive)->handler != NULL); |
604 | BUG(); | ||
605 | /* Set the interrupt routine */ | 604 | /* Set the interrupt routine */ |
606 | ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry); | 605 | ide_set_handler(drive, &idescsi_pc_intr, get_timeout(pc), idescsi_expiry); |
607 | /* Send the actual packet */ | 606 | /* Send the actual packet */ |
@@ -691,8 +690,7 @@ static ide_startstop_t idescsi_issue_pc (ide_drive_t *drive, idescsi_pc_t *pc) | |||
691 | set_bit(PC_DMA_OK, &pc->flags); | 690 | set_bit(PC_DMA_OK, &pc->flags); |
692 | 691 | ||
693 | if (test_bit(IDESCSI_DRQ_INTERRUPT, &scsi->flags)) { | 692 | if (test_bit(IDESCSI_DRQ_INTERRUPT, &scsi->flags)) { |
694 | if (HWGROUP(drive)->handler != NULL) | 693 | BUG_ON(HWGROUP(drive)->handler != NULL); |
695 | BUG(); | ||
696 | ide_set_handler(drive, &idescsi_transfer_pc, | 694 | ide_set_handler(drive, &idescsi_transfer_pc, |
697 | get_timeout(pc), idescsi_expiry); | 695 | get_timeout(pc), idescsi_expiry); |
698 | /* Issue the packet command */ | 696 | /* Issue the packet command */ |
diff --git a/drivers/scsi/megaraid.c b/drivers/scsi/megaraid.c index c33857e7b33b..5d2cefb5e52d 100644 --- a/drivers/scsi/megaraid.c +++ b/drivers/scsi/megaraid.c | |||
@@ -1828,7 +1828,7 @@ mega_build_sglist(adapter_t *adapter, scb_t *scb, u32 *buf, u32 *len) | |||
1828 | 1828 | ||
1829 | scb->dma_type = MEGA_SGLIST; | 1829 | scb->dma_type = MEGA_SGLIST; |
1830 | 1830 | ||
1831 | if( sgcnt > adapter->sglen ) BUG(); | 1831 | BUG_ON(sgcnt > adapter->sglen); |
1832 | 1832 | ||
1833 | *len = 0; | 1833 | *len = 0; |
1834 | 1834 | ||