[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <1884e171-cc87-4238-abd1-0f6be1e0b279@redhat.com>
Date: Tue, 10 Sep 2024 16:04:05 +0200
From: Paolo Abeni <pabeni@...hat.com>
To: Yunsheng Lin <linyunsheng@...wei.com>, davem@...emloft.net,
kuba@...nel.org
Cc: netdev@...r.kernel.org, linux-kernel@...r.kernel.org,
Alexander Duyck <alexander.duyck@...il.com>,
Ayush Sawal <ayush.sawal@...lsio.com>, Eric Dumazet <edumazet@...gle.com>,
Willem de Bruijn <willemdebruijn.kernel@...il.com>,
Jason Wang <jasowang@...hat.com>, Ingo Molnar <mingo@...hat.com>,
Peter Zijlstra <peterz@...radead.org>, Juri Lelli <juri.lelli@...hat.com>,
Vincent Guittot <vincent.guittot@...aro.org>,
Dietmar Eggemann <dietmar.eggemann@....com>,
Steven Rostedt <rostedt@...dmis.org>, Ben Segall <bsegall@...gle.com>,
Mel Gorman <mgorman@...e.de>, Valentin Schneider <vschneid@...hat.com>,
John Fastabend <john.fastabend@...il.com>,
Jakub Sitnicki <jakub@...udflare.com>, David Ahern <dsahern@...nel.org>,
Matthieu Baerts <matttbe@...nel.org>, Mat Martineau <martineau@...nel.org>,
Geliang Tang <geliang@...nel.org>, Jamal Hadi Salim <jhs@...atatu.com>,
Cong Wang <xiyou.wangcong@...il.com>, Jiri Pirko <jiri@...nulli.us>,
Boris Pismenny <borisp@...dia.com>, bpf@...r.kernel.org,
mptcp@...ts.linux.dev
Subject: Re: [PATCH net-next v18 12/14] net: replace page_frag with
page_frag_cache
On 9/6/24 09:36, Yunsheng Lin wrote:
> diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c
> index 49811c9281d4..6190d9bfd618 100644
> --- a/net/ipv4/ip_output.c
> +++ b/net/ipv4/ip_output.c
> @@ -953,7 +953,7 @@ static int __ip_append_data(struct sock *sk,
> struct flowi4 *fl4,
> struct sk_buff_head *queue,
> struct inet_cork *cork,
> - struct page_frag *pfrag,
> + struct page_frag_cache *nc,
> int getfrag(void *from, char *to, int offset,
> int len, int odd, struct sk_buff *skb),
> void *from, int length, int transhdrlen,
> @@ -1228,13 +1228,19 @@ static int __ip_append_data(struct sock *sk,
> copy = err;
> wmem_alloc_delta += copy;
> } else if (!zc) {
> + struct page_frag page_frag, *pfrag;
> int i = skb_shinfo(skb)->nr_frags;
> + void *va;
>
> err = -ENOMEM;
> - if (!sk_page_frag_refill(sk, pfrag))
> + pfrag = &page_frag;
> + va = sk_page_frag_alloc_refill_prepare(sk, nc, pfrag);
> + if (!va)
> goto error;
>
> skb_zcopy_downgrade_managed(skb);
> + copy = min_t(int, copy, pfrag->size);
> +
> if (!skb_can_coalesce(skb, i, pfrag->page,
> pfrag->offset)) {
> err = -EMSGSIZE;
> @@ -1242,18 +1248,18 @@ static int __ip_append_data(struct sock *sk,
> goto error;
>
> __skb_fill_page_desc(skb, i, pfrag->page,
> - pfrag->offset, 0);
> + pfrag->offset, copy);
> skb_shinfo(skb)->nr_frags = ++i;
> - get_page(pfrag->page);
> + page_frag_commit(nc, pfrag, copy);
> + } else {
> + skb_frag_size_add(&skb_shinfo(skb)->frags[i - 1],
> + copy);
> + page_frag_commit_noref(nc, pfrag, copy);
> }
> - copy = min_t(int, copy, pfrag->size - pfrag->offset);
> - if (getfrag(from,
> - page_address(pfrag->page) + pfrag->offset,
> - offset, copy, skb->len, skb) < 0)
> +
> + if (getfrag(from, va, offset, copy, skb->len, skb) < 0)
> goto error_efault;
Should the 'commit' happen only when 'getfrag' is successful?
Similar question in the ipv6 code.
Thanks,
Paolo
Powered by blists - more mailing lists