Lines Matching full:xmep
871 struct xid_map_entry *xmep;
886 xmep = &xid_map[xid_map_next];
891 UNALIGNED_MEMCPY(&xmep->xid, &rp->rm_xid, sizeof(xmep->xid));
893 xmep->ipver = 4;
894 UNALIGNED_MEMCPY(&xmep->client, &ip->ip_src, sizeof(ip->ip_src));
895 UNALIGNED_MEMCPY(&xmep->server, &ip->ip_dst, sizeof(ip->ip_dst));
898 xmep->ipver = 6;
899 UNALIGNED_MEMCPY(&xmep->client, &ip6->ip6_src, sizeof(ip6->ip6_src));
900 UNALIGNED_MEMCPY(&xmep->server, &ip6->ip6_dst, sizeof(ip6->ip6_dst));
902 xmep->proc = EXTRACT_32BITS(&rp->rm_call.cb_proc);
903 xmep->vers = EXTRACT_32BITS(&rp->rm_call.cb_vers);
916 struct xid_map_entry *xmep;
922 UNALIGNED_MEMCPY(&xid, &rp->rm_xid, sizeof(xmep->xid));
926 xmep = &xid_map[i];
928 if (xmep->ipver != IP_V(ip) || xmep->xid != xid)
930 switch (xmep->ipver) {
932 if (UNALIGNED_MEMCMP(&ip->ip_src, &xmep->server,
934 UNALIGNED_MEMCMP(&ip->ip_dst, &xmep->client,
940 if (UNALIGNED_MEMCMP(&ip6->ip6_src, &xmep->server,
942 UNALIGNED_MEMCMP(&ip6->ip6_dst, &xmep->client,
954 *proc = xmep->proc;
955 *vers = xmep->vers;