Re: [PATCH V12 net-next 07/10] net: hibmcge: Implement rx_poll function to receive packets

From: Paolo Abeni
Date: Tue Oct 15 2024 - 06:28:51 EST


On 10/10/24 16:21, Jijie Shao wrote:
@@ -124,6 +129,20 @@ static void hbg_buffer_free_skb(struct hbg_buffer *buffer)
buffer->skb = NULL;
}
+static int hbg_buffer_alloc_skb(struct hbg_buffer *buffer)
+{
+ u32 len = hbg_spec_max_frame_len(buffer->priv, buffer->dir);
+ struct hbg_priv *priv = buffer->priv;
+
+ buffer->skb = netdev_alloc_skb(priv->netdev, len);
+ if (unlikely(!buffer->skb))
+ return -ENOMEM;

It looks like I was not clear enough in my previous feedback: allocating the sk_buff struct at packet reception time, will be much more efficient, because the sk_buff contents will be hot in cache for the RX path, while allocating it here, together with the data pointer itself will almost ensure 2-4 cache misses per RX packet.

You could allocate here the data buffer i.e. via a page allocator and
at rx processing time use build_skb() on top of such data buffer.

I understand it's probably such refactor would be painful at this point, but you should consider it as a follow-up.

Side note: the above always uses the maximum MTU for the packet size, if the device supports jumbo frames (8Kb size packets), it will produce quite bad layout for the incoming packets... Is the device able to use multiple buffers for the incoming packets?

Thanks,

Paolo