Searched refs:san_mac_addr (Results 1 – 4 of 4) sorted by relevance
/titanic_44/usr/src/uts/common/io/ixgbe/core/ |
H A D | ixgbe_common.h | 129 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr); 130 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr);
|
H A D | ixgbe_api.h | 190 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr); 191 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr);
|
H A D | ixgbe_api.c | 332 s32 ixgbe_get_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_get_san_mac_addr() argument 335 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED); in ixgbe_get_san_mac_addr() 345 s32 ixgbe_set_san_mac_addr(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_set_san_mac_addr() argument 348 (hw, san_mac_addr), IXGBE_NOT_IMPLEMENTED); in ixgbe_set_san_mac_addr()
|
H A D | ixgbe_common.c | 3480 s32 ixgbe_get_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_get_san_mac_addr_generic() argument 3510 san_mac_addr[i * 2] = (u8)(san_mac_data); in ixgbe_get_san_mac_addr_generic() 3511 san_mac_addr[i * 2 + 1] = (u8)(san_mac_data >> 8); in ixgbe_get_san_mac_addr_generic() 3522 san_mac_addr[i] = 0xFF; in ixgbe_get_san_mac_addr_generic() 3533 s32 ixgbe_set_san_mac_addr_generic(struct ixgbe_hw *hw, u8 *san_mac_addr) in ixgbe_set_san_mac_addr_generic() argument 3553 san_mac_data = (u16)((u16)(san_mac_addr[i * 2 + 1]) << 8); in ixgbe_set_san_mac_addr_generic() 3554 san_mac_data |= (u16)(san_mac_addr[i * 2]); in ixgbe_set_san_mac_addr_generic()
|