Lines Matching refs:fd2
1798 flow_desc_t *fd1 = &f1->fe_flow_desc, *fd2 = &f2->fe_flow_desc; in flow_l2_match_fe() local
1800 ASSERT(fd1->fd_mac_len == fd2->fd_mac_len && fd1->fd_mac_len != 0); in flow_l2_match_fe()
1801 return (bcmp(&fd1->fd_dst_mac, &fd2->fd_dst_mac, in flow_l2_match_fe()
1802 fd1->fd_mac_len) == 0 && fd1->fd_vid == fd2->fd_vid); in flow_l2_match_fe()
2103 flow_desc_t *fd1 = &f1->fe_flow_desc, *fd2 = &f2->fe_flow_desc; in flow_ip_proto_match_fe() local
2105 return (fd1->fd_protocol == fd2->fd_protocol); in flow_ip_proto_match_fe()
2112 flow_desc_t *fd1 = &f1->fe_flow_desc, *fd2 = &f2->fe_flow_desc; in flow_ip_match_fe() local
2115 ASSERT(fd1->fd_mask == fd2->fd_mask); in flow_ip_match_fe()
2117 return (fd1->fd_dsfield == fd2->fd_dsfield && in flow_ip_match_fe()
2118 fd1->fd_dsfield_mask == fd2->fd_dsfield_mask); in flow_ip_match_fe()
2125 if (fd1->fd_ipversion != fd2->fd_ipversion) in flow_ip_match_fe()
2132 a2 = &fd2->fd_local_addr; in flow_ip_match_fe()
2133 m2 = &fd2->fd_local_netmask; in flow_ip_match_fe()
2138 a2 = &fd2->fd_remote_addr; in flow_ip_match_fe()
2139 m2 = &fd2->fd_remote_netmask; in flow_ip_match_fe()
2431 flow_desc_t *fd1 = &f1->fe_flow_desc, *fd2 = &f2->fe_flow_desc; in flow_transport_match_fe() local
2433 if (fd1->fd_protocol != fd2->fd_protocol) in flow_transport_match_fe()
2437 return (fd1->fd_local_port == fd2->fd_local_port); in flow_transport_match_fe()
2440 return (fd1->fd_remote_port == fd2->fd_remote_port); in flow_transport_match_fe()