aboutsummaryrefslogtreecommitdiff
path: root/sys/cam
diff options
context:
space:
mode:
authorPoul-Henning Kamp <phk@FreeBSD.org>2003-06-01 09:01:02 +0000
committerPoul-Henning Kamp <phk@FreeBSD.org>2003-06-01 09:01:02 +0000
commit058675037b1186f913560e5f65f62f91b5ea769d (patch)
tree593669b4e81809c57ff381070c7b4b20a7a8327b /sys/cam
parent798c9e50b0340d247e6f80bcbb65779dd1263351 (diff)
Notes
Diffstat (limited to 'sys/cam')
-rw-r--r--sys/cam/cam_periph.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/cam/cam_periph.c b/sys/cam/cam_periph.c
index 5aee9ea3d91b6..016e085093745 100644
--- a/sys/cam/cam_periph.c
+++ b/sys/cam/cam_periph.c
@@ -1553,24 +1553,28 @@ cam_periph_error(union ccb *ccb, cam_flags camflags,
printf("Request completed with CAM_REQ_CMP_ERR\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_CMD_TIMEOUT:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Command timed out\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_UNEXP_BUSFREE:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Unexpected Bus Free\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_UNCOR_PARITY:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);
printf("Uncorrected Parity Error\n");
printed++;
}
+ /* FALLTHROUGH */
case CAM_DATA_RUN_ERR:
if (bootverbose && printed == 0) {
xpt_print_path(ccb->ccb_h.path);