[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20210416080508.25030590@canb.auug.org.au>
Date: Fri, 16 Apr 2021 08:05:08 +1000
From: Stephen Rothwell <sfr@...b.auug.org.au>
To: "Ong, Boon Leong" <boon.leong.ong@...el.com>
Cc: David Miller <davem@...emloft.net>,
Networking <netdev@...r.kernel.org>,
Linux Kernel Mailing List <linux-kernel@...r.kernel.org>,
"Linux Next Mailing List" <linux-next@...r.kernel.org>,
Thierry Reding <treding@...dia.com>
Subject: Re: linux-next: manual merge of the net-next tree with the net tree
Hi all,
On Thu, 15 Apr 2021 14:00:16 +0000 "Ong, Boon Leong" <boon.leong.ong@...el.com> wrote:
>
> I check linux-next merge fix above and spotted an additional fix needed.
> Please see below.
>
> >+ /**
> >+ * dma_recycle_rx_skbufs - recycle RX dma buffers
> >+ * @priv: private structure
> >+ * @queue: RX queue index
> >+ */
> >+ static void dma_recycle_rx_skbufs(struct stmmac_priv *priv, u32 queue)
> >+ {
> >+ struct stmmac_rx_queue *rx_q = &priv->rx_queue[queue];
> >+ int i;
> >+
> >+ for (i = 0; i < priv->dma_rx_size; i++) {
> >+ struct stmmac_rx_buffer *buf = &rx_q->buf_pool[i];
> >+
> >+ if (buf->page) {
> >+ page_pool_recycle_direct(rx_q->page_pool, buf-
> >>page);
> >+ buf->page = NULL;
> >+ }
> >+
> >+ if (priv->sph && buf->sec_page) {
> >+ page_pool_recycle_direct(rx_q->page_pool, buf-
> >>sec_page);
> >+ buf->sec_page = NULL;
> >+ }
> >+ }
> >+ }
>
> With https://git.kernel.org/netdev/net/c/00423969d806 that reverts
> stmmac_reinit_rx_buffers(), then the above dma_recycle_rx_skbufs()
> is no longer needed when net-next is sent for merge.
Thanks. I have added removal of that (now unused) function to my merge
resolution.
--
Cheers,
Stephen Rothwell
Content of type "application/pgp-signature" skipped
Powered by blists - more mailing lists