Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 150122
b: refs/heads/master
c: c9c7d2e
h: refs/heads/master
v: v3
  • Loading branch information
Nelson, Shannon authored and David S. Miller committed May 7, 2009
1 parent 17e2a00 commit f4bfb38
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: bf069c9726b592432ed646e72b910ac3c098d025
refs/heads/master: c9c7d2e5a06cd3a26b6be096949e3371ec2aa123
6 changes: 3 additions & 3 deletions trunk/drivers/net/ixgbe/ixgbe_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -1307,7 +1307,7 @@ static inline void map_vector_to_rxq(struct ixgbe_adapter *a, int v_idx,

set_bit(r_idx, q_vector->rxr_idx);
q_vector->rxr_count++;
a->rx_ring[r_idx].v_idx = 1 << v_idx;
a->rx_ring[r_idx].v_idx = (u64)1 << v_idx;
}

static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,
Expand All @@ -1317,7 +1317,7 @@ static inline void map_vector_to_txq(struct ixgbe_adapter *a, int v_idx,

set_bit(t_idx, q_vector->txr_idx);
q_vector->txr_count++;
a->tx_ring[t_idx].v_idx = 1 << v_idx;
a->tx_ring[t_idx].v_idx = (u64)1 << v_idx;
}

/**
Expand Down Expand Up @@ -4057,7 +4057,7 @@ static void ixgbe_watchdog(unsigned long data)
int i;

for (i = 0; i < adapter->num_msix_vectors - NON_Q_VECTORS; i++)
eics |= (1 << i);
eics |= ((u64)1 << i);

/* Cause software interrupt to ensure rx rings are cleaned */
switch (hw->mac.type) {
Expand Down

0 comments on commit f4bfb38

Please sign in to comment.