Home
last modified time | relevance | path

Searched refs:wwn (Results 1 – 12 of 12) sorted by relevance

/freebsd/sys/contrib/openzfs/etc/zfs/
H A Dvdev_id.conf.alias.example3 alias d1 /dev/disk/by-id/wwn-0x5000c5002de3b9ca
4 alias d2 wwn-0x5000c5002def789e
/freebsd/sys/dev/isp/
H A Dispmbox.h738 #define MAKE_NODE_NAME_FROM_WWN(array, wwn) \ argument
739 array[ICB_NNM0] = (uint8_t) ((wwn >> 0) & 0xff), \
740 array[ICB_NNM1] = (uint8_t) ((wwn >> 8) & 0xff), \
741 array[ICB_NNM2] = (uint8_t) ((wwn >> 16) & 0xff), \
742 array[ICB_NNM3] = (uint8_t) ((wwn >> 24) & 0xff), \
743 array[ICB_NNM4] = (uint8_t) ((wwn >> 32) & 0xff), \
744 array[ICB_NNM5] = (uint8_t) ((wwn >> 40) & 0xff), \
745 array[ICB_NNM6] = (uint8_t) ((wwn >> 48) & 0xff), \
746 array[ICB_NNM7] = (uint8_t) ((wwn >> 56) & 0xff)
748 #define MAKE_WWN_FROM_NODE_NAME(wwn, array) \ argument
[all …]
H A Disp.c1611 uint64_t wwn = INI_NONE; in isp_get_wwn() local
1622 return (wwn); in isp_get_wwn()
1632 return (wwn); in isp_get_wwn()
5350 uint64_t wwn; in isp_parse_nvram_2400() local
5367 fcp->isp_wwpn_nvram = wwn; in isp_parse_nvram_2400()
5370 if (wwn) { in isp_parse_nvram_2400()
5371 if ((wwn >> 60) != 2 && (wwn >> 60) != 5) { in isp_parse_nvram_2400()
5372 wwn = 0; in isp_parse_nvram_2400()
5376 wwn = fcp->isp_wwpn_nvram; in isp_parse_nvram_2400()
5377 wwn &= ~((uint64_t) 0xfff << 48); in isp_parse_nvram_2400()
[all …]
/freebsd/sys/dev/ocs_fc/
H A Docs_cam.c2098 uint64_t wwn = 0; in ocs_action() local
2118 wwn = *((uint64_t *)ocs_scsi_get_property_ptr(ocs, OCS_SCSI_WWPN)); in ocs_action()
2119 fc->wwpn = be64toh(wwn); in ocs_action()
2121 wwn = *((uint64_t *)ocs_scsi_get_property_ptr(ocs, OCS_SCSI_WWNN)); in ocs_action()
2122 fc->wwnn = be64toh(wwn); in ocs_action()
2232 uint64_t wwn = 0; in ocs_action() local
2242 wwn = *((uint64_t *)ocs_scsi_get_property_ptr(ocs, in ocs_action()
2244 knob->xport_specific.fc.wwnn = be64toh(wwn); in ocs_action()
2246 wwn = *((uint64_t *)ocs_scsi_get_property_ptr(ocs, in ocs_action()
2248 knob->xport_specific.fc.wwpn = be64toh(wwn); in ocs_action()
H A Docs_common.h111 uint8_t wwn[8]; /**< Switch WWN */ member
H A Docs_domain.c111 fcf_wwn = ocs_be64toh(*((uint64_t*)drec->wwn)); in ocs_domain_cb()
H A Docs_hw.c9202 ocs_memcpy(drec.wwn, read_fcf->fcf_entry.fabric_name_id, in ocs_hw_cb_read_fcf()
9203 sizeof(drec.wwn)); in ocs_hw_cb_read_fcf()
/freebsd/sys/sys/
H A Data.h237 /*108*/ u_int16_t wwn[4]; member
909 uint8_t wwn[16]; member
/freebsd/sys/dev/qlnx/qlnxe/
H A Decore_mcp_api.h1382 struct ecore_ptt *p_ptt, u8 *wwn);
H A Decore_mcp.c4514 struct ecore_ptt *p_ptt, u8 *wwn) in ecore_mcp_update_fcoe_fabric_name() argument
4521 fabric_name.wwn_upper = *(u32 *)wwn; in ecore_mcp_update_fcoe_fabric_name()
4522 fabric_name.wwn_lower = *(u32 *)(wwn + 4); in ecore_mcp_update_fcoe_fabric_name()
/freebsd/sbin/camcontrol/
H A Dcamcontrol.c1584 parm->wwn[0], parm->wwn[1], parm->wwn[2], parm->wwn[3]); in atacapprint()
/freebsd/sys/cam/ata/
H A Data_xpt.c971 bcopy(ident_buf->wwn, in aprobedone()