Displaying 1 result from an estimated 1 matches for "pages_to_send".
2023 Sep 04
0
[PATCH net-next v7 4/4] vsock/virtio: MSG_ZEROCOPY flag support
...add new test!
yep, I agree!
>
>>
>> Can we also mention in the commit description why this is need only for
>> virtio_tranport and not for vhost and loopback?
>>
>>> +??????? int pages_in_iov = iov_iter_npages(iov_iter, MAX_SKB_FRAGS);
>>> +??????? int pages_to_send = min(pages_in_iov, MAX_SKB_FRAGS);
>>> +
>>> +??????? return t_ops->can_msgzerocopy(pages_to_send);
>>> +??? }
>>> +
>>> +??? return true;
>>> +}
>>> +
[...]
>>> @@ -270,6 +395,17 @@ static int virtio_transport_send_pkt_i...