| /freebsd-14-stable/tests/sys/cam/ctl/ |
| HD | ctl.subr | 38 LUN=$1 48 HEXLUN=`printf %x $LUN` 83 # Create a CTL LUN 88 atf_check egrep -q "LUN created successfully" lun-create.txt 89 LUN=`awk '/LUN ID:/ {print $NF}' lun-create.txt` 90 if [ -z "$LUN" ]; then 91 atf_fail "Could not find LUN id" 93 find_device $LUN 98 lun_id=`awk '/LUN ID:/ {print $NF}' lun-create.txt`
|
| /freebsd-14-stable/sys/cam/ctl/ |
| HD | README.ctl.txt | 38 - Full task management support (abort, LUN reset, target reset, etc.) 65 - To add a LUN with the RAM disk backend: 70 - You should now see the CTL disk LUN through camcontrol devlist: 85 LUN masking, or separate, per-port configuration. 91 - To add a LUN with the block/file backend: 100 LUN Backend Size (Blocks) BS Serial Number Device ID 114 - You can see the LUN type and backing store for block/file backend LUNs 118 LUN Backend Size (Blocks) BS Serial Number Device ID 176 -o num_threads=4 when creating a LUN with ctladm create.) 178 - Fixed some LUN selection issues in ctlstat(8) and allowed for selection [all …]
|
| /freebsd-14-stable/sys/dev/mps/ |
| HD | mps_sas.h | 158 bzero((req)->LUN, 8); \ 159 (req)->LUN[1] = lun; \
|
| /freebsd-14-stable/sys/dev/mpr/ |
| HD | mpr_sas.h | 164 bzero((req)->LUN, 8); \ 165 (req)->LUN[1] = lun; \
|
| /freebsd-14-stable/sys/dev/mpi3mr/mpi/ |
| HD | mpi30_init.h | 83 U8 LUN[8]; /* 0x18 */ member 220 U8 LUN[8]; /* 0x18 */ member
|
| /freebsd-14-stable/sys/dev/mpr/mpi/ |
| HD | mpi2_init.h | 153 U8 LUN[8]; /* 0x34 */ member 307 U8 LUN[8]; /* 0x34 */ member 461 U8 LUN[8]; /* 0x0C */ member
|
| HD | mpi2_ioc.h | 765 U8 LUN[8]; /* 0x14 */ member 1226 U8 LUN[8]; /* 0x14 */ member
|
| HD | mpi2_history.txt | 91 * Moved LUN field defines from mpi2_init.h. 393 * Moved LUN field defines to mpi2.h becasue they are
|
| /freebsd-14-stable/sys/dev/mpt/mpilib/ |
| HD | mpi_init.h | 114 U8 LUN[8]; /* 0Ch */ member 296 U8 LUN[8]; /* 0Ch */ member 439 U8 LUN[8]; /* 0Ch */ member
|
| HD | mpi_targ.h | 359 U8 LUN[8]; /* 10h */ member 406 U8 LUN[8]; /* 10h */ member 476 U8 LUN[8]; /* 10h */ member
|
| HD | mpi_raid.h | 206 U8 LUN[8]; /* 0Ch */ member
|
| HD | mpi_cnfg.h | 1307 U8 LUN[8]; /* 10h */ member 1329 U8 LUN[8]; /* 10h */ member 1352 U8 LUN[8]; /* 10h */ member 1371 U8 LUN[8]; /* 10h */ member 1390 U8 LUN[8]; /* 10h */ member 1409 U8 LUN[8]; /* 10h */ member
|
| HD | mpi_ioc.h | 595 U8 LUN; /* 03h */ member 625 U8 LUN[8]; /* 18h */ member
|
| /freebsd-14-stable/sys/dev/mpt/ |
| HD | mpt_debug.c | 539 printf("\tLUN: 0x%jx\n", (uintmax_t)be64dec(msg->LUN)); in mpt_print_scsi_io_request() 588 printf("\tLun 0x%jx\n", (uintmax_t)be64dec(msg->LUN)); in mpt_print_scsi_tmf_request() 602 printf("\tLun 0x%jx\n", (uintmax_t)be64dec(msg->LUN)); in mpt_print_scsi_target_assist_request() 618 printf("\tLun 0x%jx\n", (uintmax_t)be64dec(msg->LUN)); in mpt_print_scsi_target_status_send_request()
|
| HD | mpt_cam.c | 2110 be64enc(mpt_req->LUN, CAM_EXTLUN_BYTE_SWIZZLE(ccb->ccb_h.target_lun)); in mpt_start() 3914 be64enc(tmf_req->LUN, CAM_EXTLUN_BYTE_SWIZZLE(lun)); in mpt_scsi_send_tmf() 4380 be64enc(ta->LUN, CAM_EXTLUN_BYTE_SWIZZLE(csio->ccb_h.target_lun)); in mpt_target_start_io() 4485 be64enc(ta->LUN, CAM_EXTLUN_BYTE_SWIZZLE(lun)); in mpt_scsi_tgt_local() 4673 memcpy(tp->LUN, fc->FcpLun, sizeof (tp->LUN)); in mpt_scsi_tgt_status() 4711 memcpy(tp->LUN, ssp->LogicalUnitNumber, sizeof (tp->LUN)); in mpt_scsi_tgt_status() 4716 memcpy(tp->LUN, sp->LogicalUnitNumber, sizeof (tp->LUN)); in mpt_scsi_tgt_status()
|
| /freebsd-14-stable/sys/dev/mps/mpi/ |
| HD | mpi2_init.h | 132 U8 LUN[8]; /* 0x34 */ member 314 U8 LUN[8]; /* 0x0C */ member
|
| HD | mpi2_history.txt | 90 * Moved LUN field defines from mpi2_init.h. 248 * Moved LUN field defines to mpi2.h because they are
|
| HD | mpi2_cnfg.h | 1132 U8 LUN[8]; /* 0x08 */ member 1153 U8 LUN[8]; /* 0x08 */ member
|
| /freebsd-14-stable/usr.sbin/ctld/ |
| HD | parse.y | 63 %token LISTEN LISTEN_ISER LUN MAXPROC OFFLOAD OPENING_BRACKET OPTION 532 lun: LUN lun_name 852 target_lun: LUN lun_number 888 target_lun_ref: LUN STR STR
|
| HD | token.l | 70 lun { return LUN; }
|
| /freebsd-14-stable/sys/dev/pms/RefTisa/tisa/api/ |
| HD | ostiapi.h | 329 bit8 LUN
|
| /freebsd-14-stable/sys/dev/mrsas/ |
| HD | mrsas_cam.c | 1166 io_request->LUN[1] = ccb_h->target_lun & 0xF; in mrsas_build_ldio_nonrw() 1288 io_request->LUN[1] = ccb_h->target_lun & 0xF; in mrsas_build_syspdio() 1979 tm_mpi_request->LUN[1] = 0; in mrsas_reset_targets()
|
| HD | mrsas.h | 422 u_int8_t LUN[8]; /*0x0C */ member 528 u_int8_t LUN[8]; /* 0x34 */ member 906 u_int8_t LUN[8]; member
|
| /freebsd-14-stable/sys/dev/pms/freebsd/driver/ini/src/ |
| HD | osapi.c | 544 bit8 LUN in ostiMapToDevHandle() argument
|
| /freebsd-14-stable/sys/cam/ |
| HD | README.quirks | 131 o NO_GETMAXLUN - Get maximum LUN is a command to identify multiple
|