diff options
author | David S. Miller <davem@davemloft.net> | 2019-11-08 16:50:14 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2019-11-08 16:50:14 -0800 |
commit | a2582cdc32f071422e0197a6c59bd1235b426ce2 (patch) | |
tree | cda039a2e7e4e34bd82e3ebf9b9a8940b9048f72 /drivers/net/ethernet/intel/ice/ice_sched.c | |
parent | deabc87111c690097c03765ea017cd500f7376fc (diff) | |
parent | 0843aa8f12edbd60e64e71f854eab2f452010eaa (diff) | |
download | linux-a2582cdc32f071422e0197a6c59bd1235b426ce2.tar.gz linux-a2582cdc32f071422e0197a6c59bd1235b426ce2.tar.bz2 linux-a2582cdc32f071422e0197a6c59bd1235b426ce2.zip |
Merge branch '40GbE' of git://git.kernel.org/pub/scm/linux/kernel/git/jkirsher/net-queue
Jeff Kirsher says:
====================
Intel Wired LAN Driver Fixes 2019-11-08
This series contains fixes to igb, igc, ixgbe, i40e, iavf and ice
drivers.
Colin Ian King fixes a potentially wrap-around counter in a for-loop.
Nick fixes the default ITR values for the iavf driver to 50 usecs
interval.
Arkadiusz fixes 'ethtool -m' for X722 devices where the correct value
cannot be obtained from the firmware, so add X722 to the check to ensure
the wrong value is not returned.
Jake fixes igb and igc drivers in their implementation of launch time
support by declaring skb->tstamp value as ktime_t instead of s64.
Magnus fixes ixgbe and i40e where the need_wakeup flag for transmit may
not be set for AF_XDP sockets that are only used to send packets.
====================
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ethernet/intel/ice/ice_sched.c')
-rw-r--r-- | drivers/net/ethernet/intel/ice/ice_sched.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/ethernet/intel/ice/ice_sched.c b/drivers/net/ethernet/intel/ice/ice_sched.c index fc624b73d05d..2fde9653a608 100644 --- a/drivers/net/ethernet/intel/ice/ice_sched.c +++ b/drivers/net/ethernet/intel/ice/ice_sched.c @@ -1036,7 +1036,7 @@ enum ice_status ice_sched_query_res_alloc(struct ice_hw *hw) struct ice_aqc_query_txsched_res_resp *buf; enum ice_status status = 0; __le16 max_sibl; - u8 i; + u16 i; if (hw->layer_info) return status; |