From: David Ahern <dsahern@kernel.org>
To: David Wei <dw@davidwei.uk>, Jens Axboe <axboe@kernel.dk>,
Pavel Begunkov <asml.silence@gmail.com>
Cc: io-uring@vger.kernel.org, netdev@vger.kernel.org,
Mina Almasry <almasrymina@google.com>,
Jakub Kicinski <kuba@kernel.org>
Subject: Re: [PATCH 04/11] io_uring: setup ZC for an RX queue when registering an ifq
Date: Fri, 25 Aug 2023 20:26:14 -0600 [thread overview]
Message-ID: <d307c2a5-3d30-3e86-c376-e1c5faf19683@kernel.org> (raw)
In-Reply-To: <20230826011954.1801099-5-dw@davidwei.uk>
On 8/25/23 6:19 PM, David Wei wrote:
> diff --git a/io_uring/zc_rx.c b/io_uring/zc_rx.c
> index 6c57c9b06e05..8cc66731af5b 100644
> --- a/io_uring/zc_rx.c
> +++ b/io_uring/zc_rx.c
> @@ -10,6 +11,35 @@
> #include "kbuf.h"
> #include "zc_rx.h"
>
> +typedef int (*bpf_op_t)(struct net_device *dev, struct netdev_bpf *bpf);
> +
> +static int __io_queue_mgmt(struct net_device *dev, struct io_zc_rx_ifq *ifq,
> + u16 queue_id)
> +{
> + struct netdev_bpf cmd;
> + bpf_op_t ndo_bpf;
> +
> + ndo_bpf = dev->netdev_ops->ndo_bpf;
This is not bpf related, so it seems wrong to be overloading this ndo.
> + if (!ndo_bpf)
> + return -EINVAL;
> +
> + cmd.command = XDP_SETUP_ZC_RX;
> + cmd.zc_rx.ifq = ifq;
> + cmd.zc_rx.queue_id = queue_id;
> +
> + return ndo_bpf(dev, &cmd);
> +}
> +
> +static int io_open_zc_rxq(struct io_zc_rx_ifq *ifq)
> +{
> + return __io_queue_mgmt(ifq->dev, ifq, ifq->if_rxq_id);
> +}
> +
> +static int io_close_zc_rxq(struct io_zc_rx_ifq *ifq)
> +{
> + return __io_queue_mgmt(ifq->dev, NULL, ifq->if_rxq_id);
> +}
> +
> static struct io_zc_rx_ifq *io_zc_rx_ifq_alloc(struct io_ring_ctx *ctx)
> {
> struct io_zc_rx_ifq *ifq;
> @@ -19,12 +49,17 @@ static struct io_zc_rx_ifq *io_zc_rx_ifq_alloc(struct io_ring_ctx *ctx)
> return NULL;
>
> ifq->ctx = ctx;
> + ifq->if_rxq_id = -1;
>
> return ifq;
> }
>
> static void io_zc_rx_ifq_free(struct io_zc_rx_ifq *ifq)
> {
> + if (ifq->if_rxq_id != -1)
> + io_close_zc_rxq(ifq);
> + if (ifq->dev)
> + dev_put(ifq->dev);
> io_free_rbuf_ring(ifq);
> kfree(ifq);
> }
> @@ -41,17 +76,22 @@ int io_register_zc_rx_ifq(struct io_ring_ctx *ctx,
> return -EFAULT;
> if (ctx->ifq)
> return -EBUSY;
> + if (reg.if_rxq_id == -1)
> + return -EINVAL;
>
> ifq = io_zc_rx_ifq_alloc(ctx);
> if (!ifq)
> return -ENOMEM;
>
> - /* TODO: initialise network interface */
> -
> ret = io_allocate_rbuf_ring(ifq, ®);
> if (ret)
> goto err;
>
> + ret = -ENODEV;
> + ifq->dev = dev_get_by_index(&init_net, reg.if_idx);
What's the plan for other namespaces? Ideally the device bind comes from
a socket and that gives you the namespace.
> + if (!ifq->dev)
> + goto err;
> +
> /* TODO: map zc region and initialise zc pool */
>
> ifq->rq_entries = reg.rq_entries;
next prev parent reply other threads:[~2023-08-26 2:26 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-08-26 1:19 [RFC RESEND 00/11] Zero copy network RX using io_uring David Wei
2023-08-26 1:19 ` [PATCH 01/11] io_uring: add interface queue David Wei
2023-08-26 1:19 ` [PATCH 02/11] io_uring: add mmap support for shared ifq ringbuffers David Wei
2023-08-26 1:19 ` [PATCH 03/11] netdev: add XDP_SETUP_ZC_RX command David Wei
2023-08-26 2:21 ` David Ahern
2023-08-26 21:37 ` David Wei
2023-08-26 1:19 ` [PATCH 04/11] io_uring: setup ZC for an RX queue when registering an ifq David Wei
2023-08-26 2:26 ` David Ahern [this message]
2023-08-26 22:00 ` David Wei
2023-08-26 1:19 ` [PATCH 05/11] io_uring: add ZC buf and pool David Wei
2023-08-26 1:19 ` [PATCH 06/11] io_uring: add ZC pool API David Wei
2023-08-26 1:19 ` [PATCH 07/11] skbuff: add SKBFL_FIXED_FRAG and skb_fixed() David Wei
2023-08-26 1:19 ` [PATCH 08/11] io_uring: allocate a uarg for freeing zero copy skbs David Wei
2023-08-26 1:19 ` [PATCH 09/11] io_uring: delay ZC pool destruction David Wei
2023-08-26 1:19 ` [PATCH 10/11] netdev/bnxt: add data pool and use it in BNXT driver David Wei
2023-08-26 1:19 ` [PATCH 11/11] io_uring: add io_recvzc request David Wei
2023-10-22 19:06 ` [RFC RESEND 00/11] Zero copy network RX using io_uring Gal Pressman
2023-10-23 3:35 ` David Wei
-- strict thread matches above, loose matches on Subject: below --
2023-08-25 22:55 [RFC PATCH " David Wei
2023-08-25 22:55 ` [PATCH 04/11] io_uring: setup ZC for an RX queue when registering an ifq David Wei
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=d307c2a5-3d30-3e86-c376-e1c5faf19683@kernel.org \
--to=dsahern@kernel.org \
--cc=almasrymina@google.com \
--cc=asml.silence@gmail.com \
--cc=axboe@kernel.dk \
--cc=dw@davidwei.uk \
--cc=io-uring@vger.kernel.org \
--cc=kuba@kernel.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.