mirror of
https://github.com/Fishwaldo/Star64_linux.git
synced 2025-06-08 15:48:23 +00:00
sfc: don't score irq moderation points for GRO
We already scored points when handling the RX event, no-one else does this, and looking at the history it appears this was originally meant to only score on merges, not on GRO_NORMAL. Moreover, it gets in the way of changing GRO to not immediately pass GRO_NORMAL skbs to the stack. Performance testing with four TCP streams received on a single CPU (where throughput was line rate of 9.4Gbps in all tests) showed a 13.7% reduction in RX CPU usage (n=6, p=0.03). Signed-off-by: Edward Cree <ecree@solarflare.com> Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
5e6d9fc761
commit
5e040d4b1a
1 changed files with 1 additions and 4 deletions
|
@ -412,7 +412,6 @@ efx_rx_packet_gro(struct efx_channel *channel, struct efx_rx_buffer *rx_buf,
|
||||||
unsigned int n_frags, u8 *eh)
|
unsigned int n_frags, u8 *eh)
|
||||||
{
|
{
|
||||||
struct napi_struct *napi = &channel->napi_str;
|
struct napi_struct *napi = &channel->napi_str;
|
||||||
gro_result_t gro_result;
|
|
||||||
struct efx_nic *efx = channel->efx;
|
struct efx_nic *efx = channel->efx;
|
||||||
struct sk_buff *skb;
|
struct sk_buff *skb;
|
||||||
|
|
||||||
|
@ -449,9 +448,7 @@ efx_rx_packet_gro(struct efx_channel *channel, struct efx_rx_buffer *rx_buf,
|
||||||
|
|
||||||
skb_record_rx_queue(skb, channel->rx_queue.core_index);
|
skb_record_rx_queue(skb, channel->rx_queue.core_index);
|
||||||
|
|
||||||
gro_result = napi_gro_frags(napi);
|
napi_gro_frags(napi);
|
||||||
if (gro_result != GRO_DROP)
|
|
||||||
channel->irq_mod_score += 2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Allocate and construct an SKB around page fragments */
|
/* Allocate and construct an SKB around page fragments */
|
||||||
|
|
Loading…
Add table
Reference in a new issue