|
@@ -90,10 +90,10 @@ static inline void _tg3_flag_clear(enum TG3_FLAGS flag, unsigned long *bits)
|
|
|
|
|
|
#define DRV_MODULE_NAME "tg3"
|
|
|
#define TG3_MAJ_NUM 3
|
|
|
-#define TG3_MIN_NUM 126
|
|
|
+#define TG3_MIN_NUM 127
|
|
|
#define DRV_MODULE_VERSION \
|
|
|
__stringify(TG3_MAJ_NUM) "." __stringify(TG3_MIN_NUM)
|
|
|
-#define DRV_MODULE_RELDATE "November 05, 2012"
|
|
|
+#define DRV_MODULE_RELDATE "November 14, 2012"
|
|
|
|
|
|
#define RESET_KIND_SHUTDOWN 0
|
|
|
#define RESET_KIND_INIT 1
|
|
@@ -8710,14 +8710,14 @@ static void tg3_rss_check_indir_tbl(struct tg3 *tp)
|
|
|
if (!tg3_flag(tp, SUPPORT_MSIX))
|
|
|
return;
|
|
|
|
|
|
- if (tp->irq_cnt <= 2) {
|
|
|
+ if (tp->rxq_cnt == 1) {
|
|
|
memset(&tp->rss_ind_tbl[0], 0, sizeof(tp->rss_ind_tbl));
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
/* Validate table against current IRQ count */
|
|
|
for (i = 0; i < TG3_RSS_INDIR_TBL_SIZE; i++) {
|
|
|
- if (tp->rss_ind_tbl[i] >= tp->irq_cnt - 1)
|
|
|
+ if (tp->rss_ind_tbl[i] >= tp->rxq_cnt)
|
|
|
break;
|
|
|
}
|
|
|
|