Lines Matching refs:eh
1356 struct ethhdr *eh; in fcoe_rcv() local
1381 eh = eth_hdr(skb); in fcoe_rcv()
1384 !ether_addr_equal(eh->h_source, ctlr->dest_addr)) { in fcoe_rcv()
1386 eh->h_source); in fcoe_rcv()
1401 if (ntoh24(&eh->h_dest[3]) != ntoh24(fh->fh_d_id)) { in fcoe_rcv()
1403 eh->h_dest); in fcoe_rcv()
1487 struct ethhdr *eh; in fcoe_xmit() local
1576 eh = eth_hdr(skb); in fcoe_xmit()
1577 eh->h_proto = htons(ETH_P_FCOE); in fcoe_xmit()
1578 memcpy(eh->h_dest, ctlr->dest_addr, ETH_ALEN); in fcoe_xmit()
1580 memcpy(eh->h_dest + 3, fh->fh_d_id, 3); in fcoe_xmit()
1583 memcpy(eh->h_source, ctlr->ctl_src_addr, ETH_ALEN); in fcoe_xmit()
1585 memcpy(eh->h_source, port->data_src_addr, ETH_ALEN); in fcoe_xmit()
1587 hp = (struct fcoe_hdr *)(eh + 1); in fcoe_xmit()