diff options
| author | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2013-10-30 14:04:47 +0000 |
|---|---|---|
| committer | Nathan Whitehorn <nwhitehorn@FreeBSD.org> | 2013-10-30 14:04:47 +0000 |
| commit | 123055f01fc8cd655ecd99467e3f8770a58c0c1f (patch) | |
| tree | f38033fa78e1b6966fc4d3461bb2d766a6325ac2 /sys/dev/asr | |
| parent | 630e459e517b73df408ae38e80c841c978464a8d (diff) | |
Notes
Diffstat (limited to 'sys/dev/asr')
| -rw-r--r-- | sys/dev/asr/asr.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/dev/asr/asr.c b/sys/dev/asr/asr.c index 1e4f1a618a41..ac97483b5a11 100644 --- a/sys/dev/asr/asr.c +++ b/sys/dev/asr/asr.c @@ -2740,12 +2740,13 @@ asr_action(struct cam_sim *sim, union ccb *ccb) } if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_INPROG) { printf( - "asr%d WARNING: scsi_cmd(%x) already done on b%dt%du%d\n", + "asr%d WARNING: scsi_cmd(%x) already done on b%dt%d " + "LUN %jx\n", cam_sim_unit(xpt_path_sim(ccb->ccb_h.path)), ccb->csio.cdb_io.cdb_bytes[0], cam_sim_bus(sim), ccb->ccb_h.target_id, - ccb->ccb_h.target_lun); + (uintmax_t)ccb->ccb_h.target_lun); } debug_asr_cmd_printf("(%d,%d,%d,%d)", cam_sim_unit(sim), cam_sim_bus(sim), ccb->ccb_h.target_id, |
