]> Pileus Git - ~andy/linux/commitdiff
igb: Add macro for size of RETA indirection table
authorLaura Mihaela Vasilescu <laura.vasilescu@rosedu.org>
Wed, 31 Jul 2013 20:19:48 +0000 (20:19 +0000)
committerJeff Kirsher <jeffrey.t.kirsher@intel.com>
Thu, 22 Aug 2013 09:26:18 +0000 (02:26 -0700)
RETA indirection table is used to assign the received data to a CPU
in order to maintain an efficient distribution of network receive
processing across multiple CPUs.

This patch removes the hard-coded value for the size of the indirection
table and defines a new macro.

Signed-off-by: Laura Mihaela Vasilescu <laura.vasilescu@rosedu.org>
Tested-by: Aaron Brown <aaron.f.brown@intel.com>
Signed-off-by: Jeff Kirsher <jeffrey.t.kirsher@intel.com>
drivers/net/ethernet/intel/igb/igb.h
drivers/net/ethernet/intel/igb/igb_main.c

index 15ea8dc9dad3dc1c5c86e6682882802da574d9d3..5a2659bf0c322925fcbd32cf34e995365dbe38c4 100644 (file)
@@ -343,6 +343,8 @@ struct hwmon_buff {
        };
 #endif
 
+#define IGB_RETA_SIZE  128
+
 /* board specific private data structure */
 struct igb_adapter {
        unsigned long active_vlans[BITS_TO_LONGS(VLAN_N_VID)];
index 7f6cf654b30756684989165b441b3fec91f6c2be..1acd9c06026af17236f638d75a165a4937679d64 100644 (file)
@@ -3157,7 +3157,7 @@ static void igb_setup_mrqc(struct igb_adapter *adapter)
         * we are generating the results for n and n+2 and then interleaving
         * those with the results with n+1 and n+3.
         */
-       for (j = 0; j < 32; j++) {
+       for (j = 0; j < IGB_RETA_SIZE / 4; j++) {
                /* first pass generates n and n+2 */
                u32 base = ((j * 0x00040004) + 0x00020000) * num_rx_queues;
                u32 reta = (base & 0x07800780) >> (7 - shift);