projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
1947030
)
net: s2io: remove useless variable in fill_rx_buffers
author
Gustavo A. R. Silva
<
[email protected]
>
Thu, 15 Jun 2017 02:58:17 +0000
(21:58 -0500)
committer
David S. Miller
<
[email protected]
>
Thu, 15 Jun 2017 18:15:13 +0000
(14:15 -0400)
Remove useless variable rxd_index and code related.
Addresses-Coverity-ID:
1397691
Signed-off-by: Gustavo A. R. Silva <
[email protected]
>
Signed-off-by: David S. Miller <
[email protected]
>
drivers/net/ethernet/neterion/s2io.c
patch
|
blob
|
history
diff --git
a/drivers/net/ethernet/neterion/s2io.c
b/drivers/net/ethernet/neterion/s2io.c
index 118723ea681a45ff5f117c2b9cef017d815a6c0f..fd2ec36c6fa148de53c88cda66457e8c4fc29ef4 100644
(file)
--- a/
drivers/net/ethernet/neterion/s2io.c
+++ b/
drivers/net/ethernet/neterion/s2io.c
@@
-2459,7
+2459,6
@@
static int fill_rx_buffers(struct s2io_nic *nic, struct ring_info *ring,
struct buffAdd *ba;
struct RxD_t *first_rxdp = NULL;
u64 Buffer0_ptr = 0, Buffer1_ptr = 0;
- int rxd_index = 0;
struct RxD1 *rxdp1;
struct RxD3 *rxdp3;
struct swStat *swstats = &ring->nic->mac_control.stats_info->sw_stat;
@@
-2474,10
+2473,6
@@
static int fill_rx_buffers(struct s2io_nic *nic, struct ring_info *ring,
rxdp = ring->rx_blocks[block_no].rxds[off].virt_addr;
- rxd_index = off + 1;
- if (block_no)
- rxd_index += (block_no * ring->rxd_count);
-
if ((block_no == block_no1) &&
(off == ring->rx_curr_get_info.offset) &&
(rxdp->Host_Control)) {