Re: [PATCH net-next 1/2] net: introduce skb_coalesce_rx_frag()

2013-10-31 Thread Jason Wang
On 10/31/2013 07:05 PM, Kmindg G wrote: > On Thu, Oct 31, 2013 at 6:28 PM, Jason Wang wrote: >> > Sometimes we need to coalesce the rx frags to avoid frag list. One example >> > is >> > virtio-net driver which tries to use small frags for both MTU sized packet >> > and >> > GSO packet. So this p

Re: [PATCH net-next 1/2] net: introduce skb_coalesce_rx_frag()

2013-10-31 Thread Michael S. Tsirkin
On Thu, Oct 31, 2013 at 06:28:32PM +0800, Jason Wang wrote: > Sometimes we need to coalesce the rx frags to avoid frag list. One example is > virtio-net driver which tries to use small frags for both MTU sized packet and > GSO packet. So this patch introduce skb_coalesce_rx_frag() to do this. > >

Re: [PATCH net-next 1/2] net: introduce skb_coalesce_rx_frag()

2013-10-31 Thread Kmindg G
On Thu, Oct 31, 2013 at 6:28 PM, Jason Wang wrote: > Sometimes we need to coalesce the rx frags to avoid frag list. One example is > virtio-net driver which tries to use small frags for both MTU sized packet and > GSO packet. So this patch introduce skb_coalesce_rx_frag() to do this. > > Cc: Rusty