Home
last modified time | relevance | path

Searched refs:rnid (Results 1 – 4 of 4) sorted by relevance

/titanic_41/usr/src/lib/sun_fc/common/
H A DFCHBAPort.cc858 fc_rnid_t rnid; in getRNIDMgmtInfo() local
868 memset(&rnid, 0, sizeof (fc_rnid_t)); in getRNIDMgmtInfo()
874 fcio.fcio_obuf = (caddr_t)&rnid; in getRNIDMgmtInfo()
878 memcpy(&info->wwn, &(rnid.global_id), sizeof (info->wwn)); in getRNIDMgmtInfo()
879 memcpy(&info->unittype, &(rnid.unit_type), sizeof (info->unittype)); in getRNIDMgmtInfo()
880 memcpy(&info->PortId, &(rnid.port_id), sizeof (info->PortId)); in getRNIDMgmtInfo()
881 memcpy(&info->NumberOfAttachedNodes, &(rnid.num_attached), in getRNIDMgmtInfo()
883 memcpy(&info->IPVersion, &(rnid.ip_version), sizeof (info->IPVersion)); in getRNIDMgmtInfo()
884 memcpy(&info->UDPPort, &(rnid.udp_port), sizeof (info->UDPPort)); in getRNIDMgmtInfo()
885 memcpy(&info->IPAddress, &(rnid.ip_addr), sizeof (info->IPAddress)); in getRNIDMgmtInfo()
[all …]
/titanic_41/usr/src/uts/common/io/fibre-channel/fca/emlxs/
H A Demlxs_solaris.c5582 fc_rnid_t *rnid; in emlxs_fca_port_manage() local
5594 rnid = (fc_rnid_t *)pm->pm_data_buf; in emlxs_fca_port_manage()
5596 (void) snprintf((char *)rnid->global_id, in emlxs_fca_port_manage()
5597 (sizeof (rnid->global_id)-1), in emlxs_fca_port_manage()
5604 rnid->unit_type = RNID_HBA; in emlxs_fca_port_manage()
5605 rnid->port_id = port->did; in emlxs_fca_port_manage()
5606 rnid->ip_version = RNID_IPV4; in emlxs_fca_port_manage()
5609 "GET_NODE_ID: wwpn: %s", rnid->global_id); in emlxs_fca_port_manage()
5611 "GET_NODE_ID: unit_type: 0x%x", rnid->unit_type); in emlxs_fca_port_manage()
5613 "GET_NODE_ID: port_id: 0x%x", rnid->port_id); in emlxs_fca_port_manage()
[all …]
/titanic_41/usr/src/uts/common/io/fibre-channel/impl/
H A Dfp.c9699 fc_rnid_t *rnid; in fp_set_rnid() local
9703 rnid = kmem_zalloc(sizeof (fc_rnid_t), KM_SLEEP); in fp_set_rnid()
9705 if (ddi_copyin(fcio->fcio_ibuf, rnid, sizeof (fc_rnid_t), mode)) { in fp_set_rnid()
9707 kmem_free(rnid, sizeof (fc_rnid_t)); in fp_set_rnid()
9716 pm.pm_data_len = sizeof (*rnid); in fp_set_rnid()
9717 pm.pm_data_buf = (caddr_t)rnid; in fp_set_rnid()
9732 bcopy(rnid, &port->fp_rnid_params, in fp_set_rnid()
9737 kmem_free(rnid, sizeof (fc_rnid_t)); in fp_set_rnid()
9752 fc_rnid_t *rnid; in fp_get_rnid() local
9758 rnid = kmem_zalloc(sizeof (fc_rnid_t), KM_SLEEP); in fp_get_rnid()
[all …]
/titanic_41/usr/src/uts/common/sys/fibre-channel/fca/emlxs/
H A Demlxs_hw.h1770 RNID rnid; /* Payload for RNID */ member