Searched defs:final_mac (Results 1 - 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/io/nxge/
H A Dnxge_espc.c35 struct ether_addr *final_mac)
48 final_mac->ether_addr_octet[0] = (mac_addr & 0xff0000000000) >> 40;
49 final_mac->ether_addr_octet[1] = (mac_addr & 0xff00000000) >> 32;
50 final_mac->ether_addr_octet[2] = (mac_addr & 0xff000000) >> 24;
51 final_mac->ether_addr_octet[3] = (mac_addr & 0xff0000) >> 16;
52 final_mac->ether_addr_octet[4] = (mac_addr & 0xff00) >> 8;
53 final_mac->ether_addr_octet[5] = (mac_addr & 0xff);
34 nxge_espc_get_next_mac_addr(uint8_t *st_mac, uint8_t nxt_cnt, struct ether_addr *final_mac) argument
/illumos-gate/usr/src/uts/common/io/hxge/
H A Dhxge_pfc.c1150 hxge_pfc_get_next_mac_addr(uint8_t *st_mac, struct ether_addr *final_mac) argument
1161 final_mac->ether_addr_octet[0] = (mac_addr & 0xff0000000000) >> 40;
1162 final_mac->ether_addr_octet[1] = (mac_addr & 0xff00000000) >> 32;
1163 final_mac->ether_addr_octet[2] = (mac_addr & 0xff000000) >> 24;
1164 final_mac->ether_addr_octet[3] = (mac_addr & 0xff0000) >> 16;
1165 final_mac->ether_addr_octet[4] = (mac_addr & 0xff00) >> 8;
1166 final_mac->ether_addr_octet[5] = (mac_addr & 0xff);

Completed in 59 milliseconds