aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/mpt
diff options
context:
space:
mode:
authorHiren Panchasara <hiren@FreeBSD.org>2014-06-20 21:18:35 +0000
committerHiren Panchasara <hiren@FreeBSD.org>2014-06-20 21:18:35 +0000
commita2e4bd70ecfe2d2351eb036c05ddbc9198f80513 (patch)
treedaff4476fe33d82b08b9f3ef62d9bafaf8ee021c /sys/dev/mpt
parent0835ddc76689a6c358070fa37cb24268c9045e18 (diff)
Notes
Diffstat (limited to 'sys/dev/mpt')
-rw-r--r--sys/dev/mpt/mpt_cam.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/sys/dev/mpt/mpt_cam.c b/sys/dev/mpt/mpt_cam.c
index 7e3c140c22a4..25c4f33584f5 100644
--- a/sys/dev/mpt/mpt_cam.c
+++ b/sys/dev/mpt/mpt_cam.c
@@ -2449,8 +2449,11 @@ mpt_cam_event(struct mpt_softc *mpt, request_t *req,
pqf = (PTR_EVENT_DATA_QUEUE_FULL)msg->Data;
pqf->CurrentDepth = le16toh(pqf->CurrentDepth);
- mpt_prt(mpt, "QUEUE FULL EVENT: Bus 0x%02x Target 0x%02x Depth "
- "%d\n", pqf->Bus, pqf->TargetID, pqf->CurrentDepth);
+ if (bootverbose) {
+ mpt_prt(mpt, "QUEUE FULL EVENT: Bus 0x%02x Target 0x%02x "
+ "Depth %d\n",
+ pqf->Bus, pqf->TargetID, pqf->CurrentDepth);
+ }
if (mpt->phydisk_sim && mpt_is_raid_member(mpt,
pqf->TargetID) != 0) {
sim = mpt->phydisk_sim;