Lines Matching refs:eh
1437 struct ethhdr *eh; in fcoe_rcv() local
1462 eh = eth_hdr(skb); in fcoe_rcv()
1465 !ether_addr_equal(eh->h_source, ctlr->dest_addr)) { in fcoe_rcv()
1467 eh->h_source); in fcoe_rcv()
1482 if (ntoh24(&eh->h_dest[3]) != ntoh24(fh->fh_d_id)) { in fcoe_rcv()
1484 eh->h_dest); in fcoe_rcv()
1589 struct ethhdr *eh; in fcoe_xmit() local
1680 eh = eth_hdr(skb); in fcoe_xmit()
1681 eh->h_proto = htons(ETH_P_FCOE); in fcoe_xmit()
1682 memcpy(eh->h_dest, ctlr->dest_addr, ETH_ALEN); in fcoe_xmit()
1684 memcpy(eh->h_dest + 3, fh->fh_d_id, 3); in fcoe_xmit()
1687 memcpy(eh->h_source, ctlr->ctl_src_addr, ETH_ALEN); in fcoe_xmit()
1689 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN); in fcoe_xmit()
1691 hp = (struct fcoe_hdr *)(eh + 1); in fcoe_xmit()