From: Tom Herbert <tom@herbertland.com>
To: <davem@davemloft.net>, <netdev@vger.kernel.org>,
<john.fastabend@gmail.com>
Cc: <kernel-team@fb.com>
Subject: [PATCH RFC] e1000: Send XDP_TX packets using dev_queue_xmit
Date: Mon, 12 Sep 2016 09:21:10 -0700 [thread overview]
Message-ID: <1473697270-3906793-1-git-send-email-tom@herbertland.com> (raw)
In order to use XDP with non multi-queue drivers (such as e1000) we need
a method to handle XDP_TX return code from xdp program. Since there is
only one queue the XDP transmit path needs to share that queue with the
normal stack path, and in order to do that we can't break the existing
stack's mechanisms of locking, qdiscs, and BQL for the queue.
This patch allocates an skbuff when XDP_TX is returned from the XDP
program and call dev_queue_xmit to transmit the skbuff.
Note that this is expected to be a performance hit (which needs to be
quantified) relative to a MQ XDP implementation where we can reserve
queues to be used by XDP. The first intent of these patches is
correctness. This should not affect performance in the XDP_DROP path.
This patch needs to be applied after "e1000: add initial XDP support".
Tested: I've only built this, need to see if I can find some e1000
machines. John, if you could try this that would be much appreciated.
Signed-off-by: Tom Herbert <tom@herbertland.com>
---
drivers/net/ethernet/intel/e1000/e1000_main.c | 29 ++++++++++++++++++++-------
1 file changed, 22 insertions(+), 7 deletions(-)
diff --git a/drivers/net/ethernet/intel/e1000/e1000_main.c b/drivers/net/ethernet/intel/e1000/e1000_main.c
index 91d5c87..f457ea8 100644
--- a/drivers/net/ethernet/intel/e1000/e1000_main.c
+++ b/drivers/net/ethernet/intel/e1000/e1000_main.c
@@ -4338,13 +4338,28 @@ static bool e1000_clean_jumbo_rx_irq(struct e1000_adapter *adapter,
case XDP_PASS:
break;
case XDP_TX:
- dma_sync_single_for_device(&pdev->dev,
- dma,
- length,
- DMA_TO_DEVICE);
- e1000_xmit_raw_frame(buffer_info, length,
- netdev, adapter);
- buffer_info->rxbuf.page = NULL;
+ /* There is only one transmit queue so we need
+ * to inject the packet at the qdisc layer
+ * to maintain sanity in the stack. We allocate
+ * an skbuff, set up frags with the page, and
+ * then do dev_queue_xmit.
+ */
+ skb = alloc_skb(0, GFP_ATOMIC);
+ if (skb) {
+ dma_unmap_page(&pdev->dev,
+ buffer_info->dma,
+ adapter->rx_buffer_len,
+ DMA_FROM_DEVICE);
+ skb->dev = netdev;
+ skb_fill_page_desc(skb, 0,
+ buffer_info->rxbuf.page,
+ 0, length);
+ dev_queue_xmit(skb);
+ goto next_desc;
+ }
+ /* Fallthrough, if we are unable to handle
+ * XDP_TX then we need to drop.
+ */
case XDP_DROP:
default:
/* re-use mapped page. keep buffer_info->dma
--
2.8.0.rc2
next reply other threads:[~2016-09-12 16:21 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-12 16:21 Tom Herbert [this message]
2016-09-12 16:36 ` [PATCH RFC] e1000: Send XDP_TX packets using dev_queue_xmit Eric Dumazet
2016-09-12 19:11 ` Alexei Starovoitov
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1473697270-3906793-1-git-send-email-tom@herbertland.com \
--to=tom@herbertland.com \
--cc=davem@davemloft.net \
--cc=john.fastabend@gmail.com \
--cc=kernel-team@fb.com \
--cc=netdev@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).