svn commit: r195274 - head/sys/dev/mpt
Xin LI
delphij at FreeBSD.org
Thu Jul 2 00:41:37 UTC 2009
Author: delphij
Date: Thu Jul 2 00:41:37 2009
New Revision: 195274
URL: http://svn.freebsd.org/changeset/base/195274
Log:
Change explicit maximium numbers to the defined macro MPT_MAX_LUNS.
Approved by: re (kensmith)
Modified:
head/sys/dev/mpt/mpt_cam.c
Modified: head/sys/dev/mpt/mpt_cam.c
==============================================================================
--- head/sys/dev/mpt/mpt_cam.c Thu Jul 2 00:39:25 2009 (r195273)
+++ head/sys/dev/mpt/mpt_cam.c Thu Jul 2 00:41:37 2009 (r195274)
@@ -2152,7 +2152,7 @@ mpt_start(struct cam_sim *sim, union ccb
mpt_req->TargetID = tgt;
/* We assume a single level LUN type */
- if (ccb->ccb_h.target_lun >= 256) {
+ if (ccb->ccb_h.target_lun >= MPT_MAX_LUNS) {
mpt_req->LUN[0] = 0x40 | ((ccb->ccb_h.target_lun >> 8) & 0x3f);
mpt_req->LUN[1] = ccb->ccb_h.target_lun & 0xff;
} else {
@@ -4025,7 +4025,7 @@ mpt_scsi_send_tmf(struct mpt_softc *mpt,
tmf_req->MsgFlags = flags;
tmf_req->MsgContext =
htole32(mpt->tmf_req->index | scsi_tmf_handler_id);
- if (lun > 256) {
+ if (lun > MPT_MAX_LUNS) {
tmf_req->LUN[0] = 0x40 | ((lun >> 8) & 0x3f);
tmf_req->LUN[1] = lun & 0xff;
} else {
@@ -4499,7 +4499,7 @@ mpt_target_start_io(struct mpt_softc *mp
ta->Function = MPI_FUNCTION_TARGET_ASSIST;
ta->MsgContext = htole32(req->index | mpt->scsi_tgt_handler_id);
ta->ReplyWord = htole32(tgt->reply_desc);
- if (csio->ccb_h.target_lun > 256) {
+ if (csio->ccb_h.target_lun > MPT_MAX_LUNS) {
ta->LUN[0] =
0x40 | ((csio->ccb_h.target_lun >> 8) & 0x3f);
ta->LUN[1] = csio->ccb_h.target_lun & 0xff;
@@ -4651,7 +4651,7 @@ mpt_scsi_tgt_local(struct mpt_softc *mpt
ta->Function = MPI_FUNCTION_TARGET_ASSIST;
ta->MsgContext = htole32(req->index | mpt->scsi_tgt_handler_id);
ta->ReplyWord = htole32(tgt->reply_desc);
- if (lun > 256) {
+ if (lun > MPT_MAX_LUNS) {
ta->LUN[0] = 0x40 | ((lun >> 8) & 0x3f);
ta->LUN[1] = lun & 0xff;
} else {
More information about the svn-src-head
mailing list