diff options
Diffstat (limited to 'drivers/net/ixgbe/ixgbe.h')
-rw-r--r-- | drivers/net/ixgbe/ixgbe.h | 55 |
1 files changed, 55 insertions, 0 deletions
diff --git a/drivers/net/ixgbe/ixgbe.h b/drivers/net/ixgbe/ixgbe.h index 59167d7e08ca..7adf959e2038 100644 --- a/drivers/net/ixgbe/ixgbe.h +++ b/drivers/net/ixgbe/ixgbe.h | |||
@@ -402,6 +402,61 @@ extern int ixgbe_init_interrupt_scheme(struct ixgbe_adapter *adapter); | |||
402 | extern void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter); | 402 | extern void ixgbe_clear_interrupt_scheme(struct ixgbe_adapter *adapter); |
403 | extern void ixgbe_write_eitr(struct ixgbe_q_vector *); | 403 | extern void ixgbe_write_eitr(struct ixgbe_q_vector *); |
404 | extern int ethtool_ioctl(struct ifreq *ifr); | 404 | extern int ethtool_ioctl(struct ifreq *ifr); |
405 | extern s32 ixgbe_reinit_fdir_tables_82599(struct ixgbe_hw *hw); | ||
406 | extern s32 ixgbe_init_fdir_signature_82599(struct ixgbe_hw *hw, u32 pballoc); | ||
407 | extern s32 ixgbe_init_fdir_perfect_82599(struct ixgbe_hw *hw, u32 pballoc); | ||
408 | extern s32 ixgbe_fdir_add_signature_filter_82599(struct ixgbe_hw *hw, | ||
409 | struct ixgbe_atr_input *input, | ||
410 | u8 queue); | ||
411 | extern s32 ixgbe_fdir_add_perfect_filter_82599(struct ixgbe_hw *hw, | ||
412 | struct ixgbe_atr_input *input, | ||
413 | u16 soft_id, | ||
414 | u8 queue); | ||
415 | extern u16 ixgbe_atr_compute_hash_82599(struct ixgbe_atr_input *input, u32 key); | ||
416 | extern s32 ixgbe_atr_set_vlan_id_82599(struct ixgbe_atr_input *input, | ||
417 | u16 vlan_id); | ||
418 | extern s32 ixgbe_atr_set_src_ipv4_82599(struct ixgbe_atr_input *input, | ||
419 | u32 src_addr); | ||
420 | extern s32 ixgbe_atr_set_dst_ipv4_82599(struct ixgbe_atr_input *input, | ||
421 | u32 dst_addr); | ||
422 | extern s32 ixgbe_atr_set_src_ipv6_82599(struct ixgbe_atr_input *input, | ||
423 | u32 src_addr_1, u32 src_addr_2, | ||
424 | u32 src_addr_3, u32 src_addr_4); | ||
425 | extern s32 ixgbe_atr_set_dst_ipv6_82599(struct ixgbe_atr_input *input, | ||
426 | u32 dst_addr_1, u32 dst_addr_2, | ||
427 | u32 dst_addr_3, u32 dst_addr_4); | ||
428 | extern s32 ixgbe_atr_set_src_port_82599(struct ixgbe_atr_input *input, | ||
429 | u16 src_port); | ||
430 | extern s32 ixgbe_atr_set_dst_port_82599(struct ixgbe_atr_input *input, | ||
431 | u16 dst_port); | ||
432 | extern s32 ixgbe_atr_set_flex_byte_82599(struct ixgbe_atr_input *input, | ||
433 | u16 flex_byte); | ||
434 | extern s32 ixgbe_atr_set_vm_pool_82599(struct ixgbe_atr_input *input, | ||
435 | u8 vm_pool); | ||
436 | extern s32 ixgbe_atr_set_l4type_82599(struct ixgbe_atr_input *input, | ||
437 | u8 l4type); | ||
438 | extern s32 ixgbe_atr_get_vlan_id_82599(struct ixgbe_atr_input *input, | ||
439 | u16 *vlan_id); | ||
440 | extern s32 ixgbe_atr_get_src_ipv4_82599(struct ixgbe_atr_input *input, | ||
441 | u32 *src_addr); | ||
442 | extern s32 ixgbe_atr_get_dst_ipv4_82599(struct ixgbe_atr_input *input, | ||
443 | u32 *dst_addr); | ||
444 | extern s32 ixgbe_atr_get_src_ipv6_82599(struct ixgbe_atr_input *input, | ||
445 | u32 *src_addr_1, u32 *src_addr_2, | ||
446 | u32 *src_addr_3, u32 *src_addr_4); | ||
447 | extern s32 ixgbe_atr_get_dst_ipv6_82599(struct ixgbe_atr_input *input, | ||
448 | u32 *dst_addr_1, u32 *dst_addr_2, | ||
449 | u32 *dst_addr_3, u32 *dst_addr_4); | ||
450 | extern s32 ixgbe_atr_get_src_port_82599(struct ixgbe_atr_input *input, | ||
451 | u16 *src_port); | ||
452 | extern s32 ixgbe_atr_get_dst_port_82599(struct ixgbe_atr_input *input, | ||
453 | u16 *dst_port); | ||
454 | extern s32 ixgbe_atr_get_flex_byte_82599(struct ixgbe_atr_input *input, | ||
455 | u16 *flex_byte); | ||
456 | extern s32 ixgbe_atr_get_vm_pool_82599(struct ixgbe_atr_input *input, | ||
457 | u8 *vm_pool); | ||
458 | extern s32 ixgbe_atr_get_l4type_82599(struct ixgbe_atr_input *input, | ||
459 | u8 *l4type); | ||
405 | #ifdef IXGBE_FCOE | 460 | #ifdef IXGBE_FCOE |
406 | extern void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter); | 461 | extern void ixgbe_configure_fcoe(struct ixgbe_adapter *adapter); |
407 | extern int ixgbe_fso(struct ixgbe_adapter *adapter, | 462 | extern int ixgbe_fso(struct ixgbe_adapter *adapter, |