diff options
author | Vlad Zolotarov <vladz@cloudius-systems.com> | 2015-03-30 21:35:26 +0300 |
---|---|---|
committer | Jeff Kirsher <jeffrey.t.kirsher@intel.com> | 2015-04-11 09:26:19 -0700 |
commit | 94cf66f87064b8e4b24412f042b98e7cba4ebce2 (patch) | |
tree | b2450364d63bf549f4b3bd9227f4189c4392405c /drivers/net/ethernet/intel/ixgbevf/vf.h | |
parent | 4ce37a4c05cfb5bfd445419d5b880a91bb19228f (diff) | |
download | kernel_replicant_linux-94cf66f87064b8e4b24412f042b98e7cba4ebce2.tar.gz kernel_replicant_linux-94cf66f87064b8e4b24412f042b98e7cba4ebce2.tar.bz2 kernel_replicant_linux-94cf66f87064b8e4b24412f042b98e7cba4ebce2.zip |
ixgbevf: Add a RETA query code
We will currently support only 82599 and x540 devices. Support for other
devices will be added later.
- Added a new API version support.
- Added the query implementation in the ixgbevf.
Signed-off-by: Vlad Zolotarov <vladz@cloudius-systems.com>
Tested-by: Phil Schmitt <phillip.j.schmitt@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
Diffstat (limited to 'drivers/net/ethernet/intel/ixgbevf/vf.h')
-rw-r--r-- | drivers/net/ethernet/intel/ixgbevf/vf.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/net/ethernet/intel/ixgbevf/vf.h b/drivers/net/ethernet/intel/ixgbevf/vf.h index 6688250da7a1..e17f9eb47b78 100644 --- a/drivers/net/ethernet/intel/ixgbevf/vf.h +++ b/drivers/net/ethernet/intel/ixgbevf/vf.h @@ -210,4 +210,5 @@ void ixgbevf_rlpml_set_vf(struct ixgbe_hw *hw, u16 max_size); int ixgbevf_negotiate_api_version(struct ixgbe_hw *hw, int api); int ixgbevf_get_queues(struct ixgbe_hw *hw, unsigned int *num_tcs, unsigned int *default_tc); +int ixgbevf_get_reta_locked(struct ixgbe_hw *hw, u32 *reta, int num_rx_queues); #endif /* __IXGBE_VF_H__ */ |