diff options
author | Ben Hutchings <bhutchings@solarflare.com> | 2009-10-29 03:21:33 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2009-10-30 00:37:07 -0400 |
commit | c3c6336504c59d9febc30de199dfee6a65a5d6ae (patch) | |
tree | 471fcfe87ff06a27455c81bd91ac7db80e3c3ca3 /drivers | |
parent | 18e1d2beb6c2307d3cab7ecb44fd3d4382adcf6a (diff) |
sfc: Enable heuristic selection between page and skb RX buffers
Now that we can tell whether GRO is being applied, this heuristic is
effective once more.
Signed-off-by: Ben Hutchings <bhutchings@solarflare.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/net/sfc/rx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/net/sfc/rx.c b/drivers/net/sfc/rx.c index 9277e9aaad09..a60c7188fdad 100644 --- a/drivers/net/sfc/rx.c +++ b/drivers/net/sfc/rx.c | |||
@@ -61,7 +61,7 @@ | |||
61 | * rx_alloc_method = (rx_alloc_level > RX_ALLOC_LEVEL_LRO ? | 61 | * rx_alloc_method = (rx_alloc_level > RX_ALLOC_LEVEL_LRO ? |
62 | * RX_ALLOC_METHOD_PAGE : RX_ALLOC_METHOD_SKB) | 62 | * RX_ALLOC_METHOD_PAGE : RX_ALLOC_METHOD_SKB) |
63 | */ | 63 | */ |
64 | static int rx_alloc_method = RX_ALLOC_METHOD_PAGE; | 64 | static int rx_alloc_method = RX_ALLOC_METHOD_AUTO; |
65 | 65 | ||
66 | #define RX_ALLOC_LEVEL_LRO 0x2000 | 66 | #define RX_ALLOC_LEVEL_LRO 0x2000 |
67 | #define RX_ALLOC_LEVEL_MAX 0x3000 | 67 | #define RX_ALLOC_LEVEL_MAX 0x3000 |