qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jason Wang <jasowang@redhat.com>
To: Scott Feldman <sfeldma@gmail.com>
Cc: "Jiří Pírko" <jiri@resnulli.us>,
	"Stefan Hajnoczi" <stefanha@gmail.com>,
	"Roopa Prabhu" <roopa@cumulusnetworks.com>,
	"john fastabend" <john.fastabend@gmail.com>,
	"QEMU Developers" <qemu-devel@nongnu.org>,
	"Paolo Bonzini" <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v3 6/9] rocker: add new rocker switch device
Date: Wed, 21 Jan 2015 03:44:46 +0008	[thread overview]
Message-ID: <1421811406.9637.1@smtp.corp.redhat.com> (raw)
In-Reply-To: <CAE4R7bB03TPQfg_MBn4Ty0JD0RraEPRZBntq7JiTaEz2CqeZfw@mail.gmail.com>



On Fri, Jan 16, 2015 at 5:48 PM, Scott Feldman <sfeldma@gmail.com> 
wrote:
> On Fri, Jan 16, 2015 at 1:15 AM, Jason Wang <jasowang@redhat.com> 
> wrote:
>> 
>>  On 01/11/2015 11:57 AM, sfeldma@gmail.com wrote:
>>>  Each port is a netdev and can be paired with using -netdev 
>>> id=<port name>.
>>> 
>>>  Signed-off-by: Scott Feldman <sfeldma@gmail.com>
>>>  Signed-off-by: Jiri Pirko <jiri@resnulli.us>
>>>  ---
>> 
>>  Looks like the devices does not support state saving. How about 
>> tagging
>>  it with unmigratable first?
> 
> State saving would be nice to add in the future.  How do we tag is
> unmigratable for now?

E.g For VFIO it does:

static const VMStateDescription vfio_pci_vmstate = {
    .name = "vfio-pci",
    .unmigratable = 1,
};
> 
> 
>>>  +    uint64_t switch_id;          /* switch id */
>> 
>>  Looks like the function of name ad switch_id are duplicated?
> 
> Don't follow...

I mean it looks to me that name is used to find a rocker through qmp. 
Can't we just do this through switch_id (many devices or netdev just 
have an 'id' property to do this)?
> 
> 
>>>  +    if (iovcnt) {
>>>  +        /* XXX perform Tx offloads */
>>>  +        /* XXX   silence compiler for now */
>> 
>>  Need add TSO here (e1000 is a good reference) or disable TSO in 
>> driver.
> 
> TSO is not enabled in driver, currently.  This is lower priority now
> since the I/O path for traffic to/from the guest CPU is not
> performance critical.  The forwarding path offloaded by the device is
> the hot path, but that doesn't involve I/O to guest CPU, so Tx/Rx
> offloads aren't in play.
> 
> But, someday, it would be nice to enable Rx/Tx offloads.

I see, thanks.
> 
> 
>>>  +    rocker_tlv_put_le32(buf, &pos, ROCKER_TLV_EVENT_TYPE,
>>>  +                        ROCKER_TLV_EVENT_TYPE_LINK_CHANGED);
>>>  +    nest = rocker_tlv_nest_start(buf, &pos, 
>>> ROCKER_TLV_EVENT_INFO);
>>>  +    rocker_tlv_put_le32(buf, &pos, 
>>> ROCKER_TLV_EVENT_LINK_CHANGED_PPORT, pport);
>>>  +    rocker_tlv_put_u8(buf, &pos, 
>>> ROCKER_TLV_EVENT_LINK_CHANGED_LINKUP,
>>>  +                      link_up ? 1 : 0);
>> 
>>  Looks like those types are not documented.
> 
> Ok, I'll double check spec to make sure we're covered, for the items 
> you found.
> 
>>>  +    rocker_tlv_put_le16(buf, &pos, ROCKER_TLV_RX_FLAGS, rx_flags);
>>>  +    rocker_tlv_put_le16(buf, &pos, ROCKER_TLV_RX_CSUM, rx_csum);
>> 
>>  Note: Some backend (e.g tap) can do offloading, may consider to add 
>> the
>>  support in the future.
> 
> Yup, on TODO list for Rx/Tx offloads.
> 
>>  Using only 1 queues is ok for multiqueue backend. In the future may
>>  consider to use all.
> 
> When we get to QoS for working, I think we'll want to enable these
> multiqueues.  QoS support is not implemented in rocker, currently, but
> there is support defined in the OF-DPA spec as part of ACL processing.
> So this is future work.

Yes.

Notes: some netdev backend (e.g tap) can be a multiple queue device. 
But since performance is not a major consideration now. It's ok to just 
use one queue.
> 
> 
>>  Thanks
> 
> Thanks for reviewing.

  reply	other threads:[~2015-01-21  3:37 UTC|newest]

Thread overview: 20+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-01-11  3:57 [Qemu-devel] [PATCH v3 0/9] rocker: add new rocker ethernet switch device sfeldma
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 1/9] net: add MAC address string printer sfeldma
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 2/9] virtio-net: use qemu_mac_strdup_printf sfeldma
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 3/9] rocker: add register programming guide sfeldma
2015-01-12 11:40   ` Paolo Bonzini
2015-01-16  8:14     ` Scott Feldman
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 4/9] pci: add rocker device ID sfeldma
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 5/9] pci: add network device class 'other' for network switches sfeldma
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 6/9] rocker: add new rocker switch device sfeldma
2015-01-12 12:57   ` Paolo Bonzini
2015-01-14 23:20     ` Scott Feldman
2015-01-15  9:08       ` Paolo Bonzini
2015-01-16  9:15   ` Jason Wang
2015-01-16  9:48     ` Scott Feldman
2015-01-21  3:36       ` Jason Wang [this message]
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 7/9] qmp: add rocker device support sfeldma
2015-01-16  9:26   ` Jason Wang
2015-01-16  9:59     ` Scott Feldman
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 8/9] rocker: add tests sfeldma
2015-01-11  3:57 ` [Qemu-devel] [PATCH v3 9/9] MAINTAINERS: add rocker sfeldma

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=1421811406.9637.1@smtp.corp.redhat.com \
    --to=jasowang@redhat.com \
    --cc=jiri@resnulli.us \
    --cc=john.fastabend@gmail.com \
    --cc=pbonzini@redhat.com \
    --cc=qemu-devel@nongnu.org \
    --cc=roopa@cumulusnetworks.com \
    --cc=sfeldma@gmail.com \
    --cc=stefanha@gmail.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).