/src/sys/arch/next68k/stand/boot/ |
devopen.c | 63 * dev(count, lun, part)file 67 int *count, int *lun, int *part, char **file) 93 *lun = atoi(args[1]); 97 *lun = atoi(args[0]); 123 int count, lun, part; local in function:devopen 128 lun = 0; 131 if ((error = devparse(fname, &dev, &count, &lun, &part, file)) != 0) 141 if ((error = (*dp->dv_open)(f, count, lun, part)) != 0) 143 count, lun, part, error, strerror(error));
|
devopen.c | 63 * dev(count, lun, part)file 67 int *count, int *lun, int *part, char **file) 93 *lun = atoi(args[1]); 97 *lun = atoi(args[0]); 123 int count, lun, part; local in function:devopen 128 lun = 0; 131 if ((error = devparse(fname, &dev, &count, &lun, &part, file)) != 0) 141 if ((error = (*dp->dv_open)(f, count, lun, part)) != 0) 143 count, lun, part, error, strerror(error));
|
boot.c | 73 char count, lun, part; local in function:main 139 count = lun = part = 0; 140 if (devparse(kernel, &dev, &count, &lun, &part, &file) == 0) { 145 snprintf (p, 1024, "(%d,%d,%d)", count, lun, part); /* XXX */
|
boot.c | 73 char count, lun, part; local in function:main 139 count = lun = part = 0; 140 if (devparse(kernel, &dev, &count, &lun, &part, &file) == 0) { 145 snprintf (p, 1024, "(%d,%d,%d)", count, lun, part); /* XXX */
|
/src/sys/arch/next68k/next68k/ |
autoconf.c | 137 int count, lun, part; local in function:cpu_rootconf 139 count = lun = part = 0; 141 devidentparse (rom_boot_info, &count, &lun, &part); 170 * (count, lun, part) 173 devidentparse(const char *spec, int *count, int *lun, int *part) 191 *lun = atoi(args[1]); 195 *lun = atoi(args[0]);
|
autoconf.c | 137 int count, lun, part; local in function:cpu_rootconf 139 count = lun = part = 0; 141 devidentparse (rom_boot_info, &count, &lun, &part); 170 * (count, lun, part) 173 devidentparse(const char *spec, int *count, int *lun, int *part) 191 *lun = atoi(args[1]); 195 *lun = atoi(args[0]);
|
/src/sys/dev/scsipi/ |
scsi_base.c | 82 * Set the LUN in the CDB if we have an older device. We also 199 int lun, announce, mode, period, offset; local in function:scsi_async_event_xfer_mode 201 for (lun = 0; lun < chan->chan_nluns; lun++) { 202 periph = scsipi_lookup_periph_locked(chan, xm->xm_target, lun); 250 int lun, announce, mode; local in function:scsi_fc_sas_async_event_xfer_mode 252 for (lun = 0; lun < chan->chan_nluns; lun++) [all...] |
scsi_base.c | 82 * Set the LUN in the CDB if we have an older device. We also 199 int lun, announce, mode, period, offset; local in function:scsi_async_event_xfer_mode 201 for (lun = 0; lun < chan->chan_nluns; lun++) { 202 periph = scsipi_lookup_periph_locked(chan, xm->xm_target, lun); 250 int lun, announce, mode; local in function:scsi_fc_sas_async_event_xfer_mode 252 for (lun = 0; lun < chan->chan_nluns; lun++) [all...] |
/src/usr.sbin/mmcformat/ |
uscsilib.h | 60 int lun; /* -1 if wildcard */ member in struct:uscsi_addr::__anon076a3679010a::__anon076a36790208
|
uscsilib.h | 60 int lun; /* -1 if wildcard */ member in struct:uscsi_addr::__anon076a3679010a::__anon076a36790208
|
/src/sys/arch/bebox/bebox/ |
autoconf.c | 76 static int bus, target, lun, drive; variable in typeref:typename:int 117 target = lun = drive = -1; 138 lun = (*p++) - '0'; 223 sa->sa_periph->periph_lun == lun)
|
autoconf.c | 76 static int bus, target, lun, drive; variable in typeref:typename:int 117 target = lun = drive = -1; 138 lun = (*p++) - '0'; 223 sa->sa_periph->periph_lun == lun)
|
/src/sys/arch/hp300/include/ |
bootinfo.h | 57 int lun; member in struct:btinfo_bootpath
|
bootinfo.h | 57 int lun; member in struct:btinfo_bootpath
|
/src/sys/arch/sparc64/include/ |
bootinfo.h | 138 uint32_t lun; /* scsi address details */ member in struct:btinfo_bootdev_unit
|
bootinfo.h | 138 uint32_t lun; /* scsi address details */ member in struct:btinfo_bootdev_unit
|
/src/sys/arch/sun3/sun3/ |
autoconf.c | 249 * scsibus number, and the unit number is (targ*8 + LUN). 257 int target, lun; local in function:scsi_find 263 /* Compute SCSI target/LUN from PROM unit. */ 265 lun = unit & 7; 267 /* Find the device at this target/LUN */ 269 periph = scsipi_lookup_periph(sbsc->sc_channel, target, lun);
|
autoconf.c | 249 * scsibus number, and the unit number is (targ*8 + LUN). 257 int target, lun; local in function:scsi_find 263 /* Compute SCSI target/LUN from PROM unit. */ 265 lun = unit & 7; 267 /* Find the device at this target/LUN */ 269 periph = scsipi_lookup_periph(sbsc->sc_channel, target, lun);
|
/src/sys/arch/sun68k/sun68k/ |
autoconf.c | 381 * scsibus number, and the unit number is (targ*8 + LUN). 389 int target, lun; local in function:scsi_find 394 /* Compute SCSI target/LUN from PROM unit. */ 396 lun = unit & 7; 398 /* Find the device at this target/LUN */ 400 periph = scsipi_lookup_periph(sbsc->sc_channel, target, lun);
|
autoconf.c | 381 * scsibus number, and the unit number is (targ*8 + LUN). 389 int target, lun; local in function:scsi_find 394 /* Compute SCSI target/LUN from PROM unit. */ 396 lun = unit & 7; 398 /* Find the device at this target/LUN */ 400 periph = scsipi_lookup_periph(sbsc->sc_channel, target, lun);
|
/src/sys/external/mit/xen-include-public/dist/xen/include/public/io/ |
vscsiif.h | 62 * (host, controller, target, lun, all integers), or a WWN (e.g. 69 * (host, controller, target, lun, all integers). 120 * <domid>/<vhost>/vscsi-devs/dev-0/p-dev = "8:0:2:1" or "naa.wwn:lun" 180 * The target is specified via channel, id and lun. 213 * channel, id, lun and the operation's rqid in ref_rqid. 270 uint16_t channel, id, lun; /* (virtual) device specification */ member in struct:vscsiif_request
|
vscsiif.h | 62 * (host, controller, target, lun, all integers), or a WWN (e.g. 69 * (host, controller, target, lun, all integers). 120 * <domid>/<vhost>/vscsi-devs/dev-0/p-dev = "8:0:2:1" or "naa.wwn:lun" 180 * The target is specified via channel, id and lun. 213 * channel, id, lun and the operation's rqid in ref_rqid. 270 uint16_t channel, id, lun; /* (virtual) device specification */ member in struct:vscsiif_request
|
/src/sys/arch/newsmips/dev/ |
sc_wrap.c | 274 int chan, lun; local in function:sc_sched 296 lun = periph->periph_lun; 298 scb->identify = MSG_IDENT | sc_disconnect | (lun & IDT_DRMASK); 431 scop_rsense(int intr, struct scsi *sc_param, int lun, int ie, int count, 436 sc_param->identify = MSG_IDENT | sc_disconnect | (lun & IDT_DRMASK); 437 sc_param->sc_lun = lun;
|
sc_wrap.c | 274 int chan, lun; local in function:sc_sched 296 lun = periph->periph_lun; 298 scb->identify = MSG_IDENT | sc_disconnect | (lun & IDT_DRMASK); 431 scop_rsense(int intr, struct scsi *sc_param, int lun, int ie, int count, 436 sc_param->identify = MSG_IDENT | sc_disconnect | (lun & IDT_DRMASK); 437 sc_param->sc_lun = lun;
|
/src/sys/arch/acorn32/podulebus/ |
esc.c | 799 int sync, target, lun; local in function:esc_setup_nexus 802 lun = pendp->xs->xs_periph->periph_lun; 820 nexus->ID = ((mode & ESC_SELECT_R) ? 0xC0 : 0x80) | lun; 823 nexus->cbuf[1] |= lun << 5; /* Fix the lun bits */ 831 nexus->lun_unit = (lun << 4) | target;
|