[PATCH 9/9] ixgb: remove unused variable

!MAILaRCHIVE_VOTE_RePLACE
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]
To: <jeff@...>
Cc: <netdev@...>, <e1000-devel@...>
Date: Friday, March 21, 2008 - 2:07 pm

From: Julia Lawall <julia@diku.dk>

The variable num_group_tail_writes is initialized but never used otherwise.

The semantic patch that makes this change is as follows:
(http://www.emn.fr/x-info/coccinelle/)

// <smpl>
@@
type T;
identifier i;
constant C;
@@

(
extern T i;
|
- T i;
  <+... when != i
- i = C;
  ...+>
)
// </smpl>

Signed-off-by: Julia Lawall <julia@diku.dk>
Signed-off-by: Auke Kok <auke-jan.h.kok@intel.com>
---

 drivers/net/ixgb/ixgb_main.c |    2 --
 1 files changed, 0 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ixgb/ixgb_main.c b/drivers/net/ixgb/ixgb_main.c
index 9c9bf31..c68b182 100644
--- a/drivers/net/ixgb/ixgb_main.c
+++ b/drivers/net/ixgb/ixgb_main.c
@@ -2092,14 +2092,12 @@ ixgb_alloc_rx_buffers(struct ixgb_adapter *adapter)
 	struct ixgb_buffer *buffer_info;
 	struct sk_buff *skb;
 	unsigned int i;
-	int num_group_tail_writes;
 	long cleancount;
 
 	i = rx_ring->next_to_use;
 	buffer_info = &rx_ring->buffer_info[i];
 	cleancount = IXGB_DESC_UNUSED(rx_ring);
 
-	num_group_tail_writes = IXGB_RX_BUFFER_WRITE;
 
 	/* leave three descriptors unused */
 	while(--cleancount > 2) {

--
To unsubscribe from this list: send the line "unsubscribe netdev" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Previous message: [thread] [date] [author]
Next message: [thread] [date] [author]

Messages in current thread:
[PATCH 1/9] e1000: Convert boolean_t to bool, Auke Kok, (Fri Mar 21, 2:06 pm)
Re: [PATCH 1/9] e1000: Convert boolean_t to bool, Jeff Garzik, (Wed Mar 26, 12:34 am)
[PATCH 8/9] ixgb: remove irq_sem, Auke Kok, (Fri Mar 21, 2:07 pm)
[PATCH 9/9] ixgb: remove unused variable, Auke Kok, (Fri Mar 21, 2:07 pm)
[PATCH 6/9] e1000e: remove irq_sem, Auke Kok, (Fri Mar 21, 2:06 pm)
[PATCH 3/9] ixgb: convert boolean_t to bool, Auke Kok, (Fri Mar 21, 2:06 pm)
[PATCH 2/9] ixgb: add explicit state checking, Auke Kok, (Fri Mar 21, 2:06 pm)
[PATCH 7/9] e1000: remove irq_sem, Auke Kok, (Fri Mar 21, 2:06 pm)
[PATCH 4/9] ixgb: move externs out of .c files, Auke Kok, (Fri Mar 21, 2:06 pm)