Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1479949 > unrolled thread
| Started by | Christophe Leroy <christophe.leroy@c-s.fr> |
|---|---|
| First post | 2016-09-09 14:40 +0200 |
| Last post | 2016-09-11 06:20 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH v2 0/3] Optimisation of fs_enet ethernet driver Christophe Leroy <christophe.leroy@c-s.fr> - 2016-09-09 14:40 +0200
Re: [PATCH v2 0/3] Optimisation of fs_enet ethernet driver David Miller <davem@davemloft.net> - 2016-09-11 06:20 +0200
| From | Christophe Leroy <christophe.leroy@c-s.fr> |
|---|---|
| Date | 2016-09-09 14:40 +0200 |
| Subject | [PATCH v2 0/3] Optimisation of fs_enet ethernet driver |
| Message-ID | <sftg5-2OA-13@gated-at.bofh.it> |
This set optimises the freescale fs_enet ethernet driver: 1/ Merge of RX and TX NAPI functions in order to limit the amount of interrupts 2/ Do not unmap DMA when packets len is below copybreak, otherwise there is no benefit in copying the skb instead of allocating a new one 3/ Make copybreak value configurable as the optimised value is not the same on all targets Christophe Leroy (3): net: fs_enet: merge NAPI RX and NAPI TX net: fs_enet: don't unmap DMA when packet len is below copybreak net: fs_enet: make rx_copybreak value configurable .../net/ethernet/freescale/fs_enet/fs_enet-main.c | 344 +++++++++++---------- drivers/net/ethernet/freescale/fs_enet/fs_enet.h | 16 +- drivers/net/ethernet/freescale/fs_enet/mac-fcc.c | 57 +--- drivers/net/ethernet/freescale/fs_enet/mac-fec.c | 57 +--- drivers/net/ethernet/freescale/fs_enet/mac-scc.c | 57 +--- 5 files changed, 220 insertions(+), 311 deletions(-) -- 2.1.0
[toc] | [next] | [standalone]
| From | David Miller <davem@davemloft.net> |
|---|---|
| Date | 2016-09-11 06:20 +0200 |
| Message-ID | <sg4pj-1hA-1@gated-at.bofh.it> |
| In reply to | #1479949 |
From: Christophe Leroy <christophe.leroy@c-s.fr> Date: Fri, 9 Sep 2016 14:26:18 +0200 (CEST) > This set optimises the freescale fs_enet ethernet driver: > 1/ Merge of RX and TX NAPI functions in order to limit the amount of > interrupts > 2/ Do not unmap DMA when packets len is below copybreak, otherwise there > is no benefit in copying the skb instead of allocating a new one > 3/ Make copybreak value configurable as the optimised value is not the > same on all targets Series applied, thanks.
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web