From: Scott Feldman <sfeldma@gmail.com>
To: Jason Wang <jasowang@redhat.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: Fri, 16 Jan 2015 01:48:45 -0800 [thread overview]
Message-ID: <CAE4R7bB03TPQfg_MBn4Ty0JD0RraEPRZBntq7JiTaEz2CqeZfw@mail.gmail.com> (raw)
In-Reply-To: <54B8D6C8.6090405@redhat.com>
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?
>> + uint64_t switch_id; /* switch id */
>
> Looks like the function of name ad switch_id are duplicated?
Don't follow...
>> + 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.
>> + 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.
> Thanks
Thanks for reviewing.
next prev parent reply other threads:[~2015-01-16 9:48 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 [this message]
2015-01-21 3:36 ` Jason Wang
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=CAE4R7bB03TPQfg_MBn4Ty0JD0RraEPRZBntq7JiTaEz2CqeZfw@mail.gmail.com \
--to=sfeldma@gmail.com \
--cc=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=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).