Home
last modified time | relevance | path

Searched refs:sfunc (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/uts/common/io/scsi/conf/
H A Dscsi_confsubr.c1396 int tgt, lun, sfunc; in scsi_hba_ua_get_reportdev() local
1413 sfunc = scsi_device_prop_get_int(sd, SCSI_DEVICE_PROP_PATH, in scsi_hba_ua_get_reportdev()
1421 if (sfunc == -1) in scsi_hba_ua_get_reportdev()
1428 SCSI_ADDR_PROP_TARGET_PORT, tgt_port, lun64, sfunc); in scsi_hba_ua_get_reportdev()
1431 if (sfunc == -1) in scsi_hba_ua_get_reportdev()
1438 SCSI_ADDR_PROP_TARGET, tgt, lun64, sfunc); in scsi_hba_ua_get_reportdev()
1480 int tgt, lun, sfunc; in scsi_hba_ua_get() local
1497 sfunc = scsi_device_prop_get_int(sd, SCSI_DEVICE_PROP_PATH, in scsi_hba_ua_get()
1500 if (sfunc == -1) in scsi_hba_ua_get()
1505 tgt_port, lun64, sfunc); in scsi_hba_ua_get()
[all …]
/illumos-gate/usr/src/uts/common/io/scsi/impl/
H A Dscsi_hba.c1868 int sfunc; in scsi_busctl_initchild() local
1929 sfunc = ddi_prop_get_int(DDI_DEV_T_ANY, child, in scsi_busctl_initchild()
1979 if (sfunc == -1) in scsi_busctl_initchild()
1982 sd->sd_address.a_sublun = (uchar_t)sfunc + 1; in scsi_busctl_initchild()
3443 int sfunc; in scsi_addr_to_sfunc() local
3458 for (sfunc = 0, i = 0; *s && (i < 2); s++, i++) { in scsi_addr_to_sfunc()
3460 sfunc = (sfunc << 4) + (*s - '0'); in scsi_addr_to_sfunc()
3462 sfunc = (sfunc << 4) + 10 + (*s - 'A'); in scsi_addr_to_sfunc()
3464 sfunc = (sfunc << 4) + 10 + (*s - 'a'); in scsi_addr_to_sfunc()
3469 sfunc = -1; /* illegal */ in scsi_addr_to_sfunc()
[all …]
/illumos-gate/usr/src/lib/libdtrace/common/
H A Ddt_aggregate.c1527 int (*sfunc)(const void *, const void *)) in dt_aggregate_walk_sorted()
1564 if (sfunc == NULL) { in dt_aggregate_walk_sorted()
1573 qsort(sorted, nentries, sizeof (dt_ahashent_t *), sfunc); in dt_aggregate_walk_sorted()