From: Lorenzo Bianconi <lorenzo.bianconi@redhat.com>
To: Jonathan Lemon <jonathan.lemon@gmail.com>
Cc: Jesper Dangaard Brouer <brouer@redhat.com>,
Lorenzo Bianconi <lorenzo@kernel.org>,
netdev@vger.kernel.org, davem@davemloft.net,
ilias.apalodimas@linaro.org, mcroce@redhat.com
Subject: Re: [PATCH v4 net-next 3/3] net: mvneta: get rid of huge dma sync in mvneta_rx_refill
Date: Wed, 20 Nov 2019 11:21:20 +0200 [thread overview]
Message-ID: <20191120092120.GA2538@localhost.localdomain> (raw)
In-Reply-To: <188EF030-DAB4-4FD0-AFD1-107C24A10943@gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3058 bytes --]
> On 19 Nov 2019, at 7:38, Lorenzo Bianconi wrote:
>
> > [...]
> > > > > > - page_pool_recycle_direct(rxq->page_pool,
> > > > > > - virt_to_head_page(xdp->data));
> > > > > > + __page_pool_put_page(rxq->page_pool,
> > > > > > + virt_to_head_page(xdp->data),
> > > > > > + xdp->data_end - xdp->data_hard_start,
> > > > > > + true);
> > > > >
> > > > > This does beg for the question: Should we create an API wrapper for
> > > > > this in the header file?
> > > > >
> > > > > But what to name it?
> > > > >
> > > > > I know Jonathan doesn't like the "direct" part of the
> > > > > previous function
> > > > > name page_pool_recycle_direct. (I do considered calling
> > > > > this 'napi'
> > > > > instead, as it would be inline with networking use-cases,
> > > > > but it seemed
> > > > > limited if other subsystem end-up using this).
> > > > >
> > > > > Does is 'page_pool_put_page_len' sound better?
> > > > >
> > > > > But I want also want hide the bool 'allow_direct' in the API name.
> > > > > (As it makes it easier to identify users that uses this from
> > > > > softirq)
> > > > >
> > > > > Going for 'page_pool_put_page_len_napi' starts to be come
> > > > > rather long.
> > > >
> > > > What about removing the second 'page'? Something like:
> > > > - page_pool_put_len_napi()
> > >
> > > Well, we (unfortunately) already have page_pool_put(), which is used
> > > for refcnt on the page_pool object itself.
> >
> > __page_pool_put_page(pp, data, len, true) is a more generic version of
> > page_pool_recycle_direct where we can specify even the length. So what
> > about:
> >
> > - page_pool_recycle_len_direct
> > - page_pool_recycle_len_napi
>
> I'd suggest:
>
> /* elevated refcounts, page may seen by networking stack */
> page_pool_drain(pool, page, count) /* non napi, len = -1 */
> page_pool_drain_direct(pool, page, count) /* len = -1 */
>
> page_pool_check_put_page(page) /* may not belong to pool */
>
> /* recycle variants drain/expect refcount == 1 */
> page_pool_recycle(pool, page, len)
> page_pool_recycle_direct(pool, page, len)
>
> page_pool_put_page(pool, page, len, mode) /* generic, for __xdp_return
I am not against the suggestion but personally I would prefer to explicitate in
the routine name where/how it is actually used. Moreover page_pool_recycle_direct or
page_pool_put_page are currently used by multiple drivers and it seems to me
out of the scope of this series. I think we can address it in a follow-up series
and use __page_pool_put_page for the moment (it is actually just used by mvneta).
Agree?
Regards,
Lorenzo
> */
>
>
> I'd rather add len as a parameter, than add more wrapper variants.
> --
> Jonathan
>
>
> >
> > Regards,
> > Lorenzo
> >
> > >
> > > --
> > > Best regards,
> > > Jesper Dangaard Brouer
> > > MSc.CS, Principal Kernel Engineer at Red Hat
> > > LinkedIn: http://www.linkedin.com/in/brouer
> > >
>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 228 bytes --]
next prev parent reply other threads:[~2019-11-20 9:21 UTC|newest]
Thread overview: 19+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-18 13:33 [PATCH v4 net-next 0/3] add DMA-sync-for-device capability to page_pool API Lorenzo Bianconi
2019-11-18 13:33 ` [PATCH v4 net-next 1/3] net: mvneta: rely on page_pool_recycle_direct in mvneta_run_xdp Lorenzo Bianconi
2019-11-18 13:33 ` [PATCH v4 net-next 2/3] net: page_pool: add the possibility to sync DMA memory for device Lorenzo Bianconi
2019-11-19 11:23 ` Jesper Dangaard Brouer
2019-11-19 11:33 ` Ilias Apalodimas
2019-11-19 15:11 ` Jesper Dangaard Brouer
2019-11-19 15:23 ` Ilias Apalodimas
2019-11-19 12:14 ` Lorenzo Bianconi
2019-11-19 15:13 ` Jesper Dangaard Brouer
2019-11-19 15:25 ` Lorenzo Bianconi
2019-11-19 21:17 ` Jesper Dangaard Brouer
2019-11-18 13:33 ` [PATCH v4 net-next 3/3] net: mvneta: get rid of huge dma sync in mvneta_rx_refill Lorenzo Bianconi
2019-11-19 11:38 ` Jesper Dangaard Brouer
2019-11-19 12:19 ` Lorenzo Bianconi
2019-11-19 14:51 ` Jesper Dangaard Brouer
2019-11-19 15:38 ` Lorenzo Bianconi
2019-11-19 22:23 ` Jonathan Lemon
2019-11-20 9:21 ` Lorenzo Bianconi [this message]
2019-11-20 16:29 ` Jonathan Lemon
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=20191120092120.GA2538@localhost.localdomain \
--to=lorenzo.bianconi@redhat.com \
--cc=brouer@redhat.com \
--cc=davem@davemloft.net \
--cc=ilias.apalodimas@linaro.org \
--cc=jonathan.lemon@gmail.com \
--cc=lorenzo@kernel.org \
--cc=mcroce@redhat.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).