Re: [PATCH net-next v15 08/14] net: support non paged skb frags

2024-07-02 Thread Eric Dumazet
On Fri, Jun 28, 2024 at 2:33 AM Mina Almasry wrote: > > Make skb_frag_page() fail in the case where the frag is not backed > by a page, and fix its relevant callers to handle this case. > > Signed-off-by: Mina Almasry > Reviewed-by: Eric Dumazet

[PATCH net-next v15 08/14] net: support non paged skb frags

2024-06-27 Thread Mina Almasry
Make skb_frag_page() fail in the case where the frag is not backed by a page, and fix its relevant callers to handle this case. Signed-off-by: Mina Almasry --- v10: - Fixed newly generated kdoc warnings found by patchwork. While we're at it, fix the Return section of the functions I touched.