diff options
author | David S. Miller <davem@davemloft.net> | 2011-02-11 21:09:04 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2011-02-11 21:09:04 -0800 |
commit | 58bb4bd0e0b1ab560a7320a760141ba52db68791 (patch) | |
tree | 47ca0cfe15778e851c7515e5eac1f9df0593c90c /drivers/net/ixgbe/ixgbe_dcb_82599.h | |
parent | dd68153def6b890a23288776cbd5bd2bad223a3f (diff) | |
parent | 1b1c0a489c1dcc1fa640c13404ca69e7beae07d9 (diff) | |
download | kernel_goldelico_gta04-58bb4bd0e0b1ab560a7320a760141ba52db68791.zip kernel_goldelico_gta04-58bb4bd0e0b1ab560a7320a760141ba52db68791.tar.gz kernel_goldelico_gta04-58bb4bd0e0b1ab560a7320a760141ba52db68791.tar.bz2 |
Merge branch 'master' of master.kernel.org:/pub/scm/linux/kernel/git/jkirsher/net-next-2.6
Diffstat (limited to 'drivers/net/ixgbe/ixgbe_dcb_82599.h')
-rw-r--r-- | drivers/net/ixgbe/ixgbe_dcb_82599.h | 24 |
1 files changed, 21 insertions, 3 deletions
diff --git a/drivers/net/ixgbe/ixgbe_dcb_82599.h b/drivers/net/ixgbe/ixgbe_dcb_82599.h index 3841649..5b0ca85 100644 --- a/drivers/net/ixgbe/ixgbe_dcb_82599.h +++ b/drivers/net/ixgbe/ixgbe_dcb_82599.h @@ -102,11 +102,29 @@ /* DCB hardware-specific driver APIs */ /* DCB PFC functions */ -s32 ixgbe_dcb_config_pfc_82599(struct ixgbe_hw *hw, - struct ixgbe_dcb_config *dcb_config); +s32 ixgbe_dcb_config_pfc_82599(struct ixgbe_hw *hw, u8 pfc_en); /* DCB hw initialization */ +s32 ixgbe_dcb_config_rx_arbiter_82599(struct ixgbe_hw *hw, + u16 *refill, + u16 *max, + u8 *bwg_id, + u8 *prio_type); + +s32 ixgbe_dcb_config_tx_desc_arbiter_82599(struct ixgbe_hw *hw, + u16 *refill, + u16 *max, + u8 *bwg_id, + u8 *prio_type); + +s32 ixgbe_dcb_config_tx_data_arbiter_82599(struct ixgbe_hw *hw, + u16 *refill, + u16 *max, + u8 *bwg_id, + u8 *prio_type); + s32 ixgbe_dcb_hw_config_82599(struct ixgbe_hw *hw, - struct ixgbe_dcb_config *config); + u8 rx_pba, u8 pfc_en, u16 *refill, + u16 *max, u8 *bwg_id, u8 *prio_type); #endif /* _DCB_82599_CONFIG_H */ |