qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Wei Xu <wexu@redhat.com>
To: Jason Wang <jasowang@redhat.com>, qemu-devel@nongnu.org
Cc: victork@redhat.com, mst@redhat.com, yvugenfi@redhat.com,
	marcel@redhat.com, dfleytma@redhat.com
Subject: Re: [Qemu-devel] [ RFC Patch v6 3/3] virtio-net rsc: add 2 new rsc information fields to 'virtio_net_hdr'
Date: Fri, 3 Jun 2016 00:23:29 +0800	[thread overview]
Message-ID: <57505D81.1010605@redhat.com> (raw)
In-Reply-To: <574BD636.6070901@redhat.com>



On 2016年05月30日 13:57, Jason Wang wrote:
>
>
> On 2016年05月29日 00:37, wexu@redhat.com wrote:
>> From: Wei Xu <wexu@redhat.com>
>>
>> Field 'coalesced' is to indicate how many packets are coalesced and field
>> 'dup_ack' is how many duplicate acks are merged, guest driver can use
>> these
>> information to notify what's the exact scene of original traffic over the
>> networks.
>>
>> Signed-off-by: Wei Xu <wexu@redhat.com>
>> ---
>>   hw/net/virtio-net.c                         | 8 ++++++++
>>   include/standard-headers/linux/virtio_net.h | 2 ++
>>   2 files changed, 10 insertions(+)
>>
>> diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
>> index cc8cbe4..20f552a 100644
>> --- a/hw/net/virtio-net.c
>> +++ b/hw/net/virtio-net.c
>> @@ -1768,6 +1768,10 @@ static size_t
>> virtio_net_rsc_drain_seg(NetRscChain *chain, NetRscSeg *seg)
>>       if ((chain->proto == ETH_P_IP) && seg->is_coalesced) {
>>           virtio_net_rsc_ipv4_checksum(h, seg->unit.ip);
>>       }
>> +    h->coalesced = seg->packets;
>> +    h->dup_ack = seg->dup_ack;
>> +    h->gso_type = chain->gso_type;
>> +    h->gso_size = chain->max_payload;
>>       ret = virtio_net_do_receive(seg->nc, seg->buf, seg->size);
>>       QTAILQ_REMOVE(&chain->buffers, seg, next);
>>       g_free(seg->buf);
>> @@ -2302,9 +2306,13 @@ static ssize_t
>> virtio_net_receive(NetClientState *nc,
>>                                     const uint8_t *buf, size_t size)
>>   {
>>       VirtIONet *n;
>> +    struct virtio_net_hdr *h;
>>       n = qemu_get_nic_opaque(nc);
>>       if (n->host_features & (1ULL << VIRTIO_NET_F_GUEST_RSC)) {
>> +        h = (struct virtio_net_hdr *)buf;
>> +        h->coalesced = 0;
>> +        h->dup_ack = 0;
>>           return virtio_net_rsc_receive(nc, buf, size);
>>       } else {
>>           return virtio_net_do_receive(nc, buf, size);
>> diff --git a/include/standard-headers/linux/virtio_net.h
>> b/include/standard-headers/linux/virtio_net.h
>> index 5b95762..c837417 100644
>> --- a/include/standard-headers/linux/virtio_net.h
>> +++ b/include/standard-headers/linux/virtio_net.h
>> @@ -114,6 +114,8 @@ struct virtio_net_hdr {
>>       __virtio16 gso_size;        /* Bytes to append to hdr_len per
>> frame */
>>       __virtio16 csum_start;    /* Position to start checksumming from */
>>       __virtio16 csum_offset;    /* Offset after that to place
>> checksum */
>> +    __virtio16 coalesced;   /* packets coalesced by host */
>
> Can we just reuse gso_segs for this?
That's really a good idea, in particular, if we can multiplex the 
capability field and header fields, then i'm supposing we don't need 
change the spec, this feature may work if we don't coalesce any 
'dup_ack' packet due to my latest test.
>
>> +    __virtio16 dup_ack;     /* duplicate ack count */
>>   };
>>   /* This is the version of the header to use when the MRG_RXBUF
>

  reply	other threads:[~2016-06-02 16:24 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-05-28 16:37 [Qemu-devel] [ RFC Patch v6 0/2] Support Receive-Segment-Offload(RSC) for WHQL wexu
2016-05-28 16:37 ` [Qemu-devel] [ RFC Patch v6 1/3] virtio-net rsc: support coalescing ipv4 tcp traffic wexu
2016-05-30  4:20   ` Jason Wang
2016-06-02 16:16     ` Wei Xu
2016-05-28 16:37 ` [Qemu-devel] [ RFC Patch v6 2/3] virtio-net rsc: support coalescing ipv6 " wexu
2016-05-30  4:25   ` Jason Wang
2016-06-02 16:17     ` Wei Xu
2016-05-28 16:37 ` [Qemu-devel] [ RFC Patch v6 3/3] virtio-net rsc: add 2 new rsc information fields to 'virtio_net_hdr' wexu
2016-05-30  5:57   ` Jason Wang
2016-06-02 16:23     ` Wei Xu [this message]
2016-05-30  4:22 ` [Qemu-devel] [ RFC Patch v6 0/2] Support Receive-Segment-Offload(RSC) for WHQL Jason Wang
2016-05-30  4:50   ` Wei Xu

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=57505D81.1010605@redhat.com \
    --to=wexu@redhat.com \
    --cc=dfleytma@redhat.com \
    --cc=jasowang@redhat.com \
    --cc=marcel@redhat.com \
    --cc=mst@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=victork@redhat.com \
    --cc=yvugenfi@redhat.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).