From: Jason Wang <jasowang@redhat.com>
To: Maxime Coquelin <maxime.coquelin@redhat.com>,
mst@redhat.com, aconole@redhat.com, pbonzini@redhat.com,
qemu-devel@nongnu.org, fbl@redhat.com, berrange@redhat.com,
mlureau@redhat.com, ktraynor@redhat.com
Cc: yuanhan.liu@linux.intel.com
Subject: Re: [Qemu-devel] [RFC v3 3/3] virtio-net: Add MTU feature support
Date: Wed, 30 Nov 2016 19:24:12 +0800 [thread overview]
Message-ID: <0204c67d-5f32-a9ac-2f6b-f11fa4af01a3@redhat.com> (raw)
In-Reply-To: <20161130101017.13382-4-maxime.coquelin@redhat.com>
On 2016年11月30日 18:10, Maxime Coquelin wrote:
> This patch allows advising guest with host MTU's by setting
> host_mtu parameter.
>
> If VIRTIO_NET_F_MTU has been successfully negotiated, MTU
> value is passed to the backend.
>
> Cc: Michael S. Tsirkin <mst@redhat.com>
> Cc: Aaron Conole <aconole@redhat.com
> Signed-off-by: Maxime Coquelin <maxime.coquelin@redhat.com>
> ---
> hw/net/virtio-net.c | 13 +++++++++++++
> include/hw/virtio/virtio-net.h | 1 +
> 2 files changed, 14 insertions(+)
>
> diff --git a/hw/net/virtio-net.c b/hw/net/virtio-net.c
> index 5009533..5225e9b 100644
> --- a/hw/net/virtio-net.c
> +++ b/hw/net/virtio-net.c
> @@ -55,6 +55,8 @@ static VirtIOFeature feature_sizes[] = {
> .end = endof(struct virtio_net_config, status)},
> {.flags = 1 << VIRTIO_NET_F_MQ,
> .end = endof(struct virtio_net_config, max_virtqueue_pairs)},
> + {.flags = 1 << VIRTIO_NET_F_MTU,
> + .end = endof(struct virtio_net_config, mtu)},
> {}
> };
>
> @@ -81,6 +83,7 @@ static void virtio_net_get_config(VirtIODevice *vdev, uint8_t *config)
>
> virtio_stw_p(vdev, &netcfg.status, n->status);
> virtio_stw_p(vdev, &netcfg.max_virtqueue_pairs, n->max_queues);
> + virtio_stw_p(vdev, &netcfg.mtu, n->net_conf.mtu);
> memcpy(netcfg.mac, n->mac, ETH_ALEN);
> memcpy(config, &netcfg, n->config_size);
> }
> @@ -152,6 +155,10 @@ static void virtio_net_vhost_status(VirtIONet *n, uint8_t status)
> qemu_net_queue_purge(qnc->incoming_queue, qnc->peer);
> }
>
> + if (virtio_has_feature(vdev->guest_features, VIRTIO_NET_F_MTU)) {
> + vhost_net_set_mtu(get_vhost_net(nc->peer), n->net_conf.mtu);
> + }
We'd better not ignore errors here and that's why we need management
tool (who can make sure the mtu is set correctly before launching qemu).
> +
> n->vhost_started = 1;
> r = vhost_net_start(vdev, n->nic->ncs, queues);
> if (r < 0) {
> @@ -1695,6 +1702,7 @@ static void virtio_net_set_config_size(VirtIONet *n, uint64_t host_features)
> {
> int i, config_size = 0;
> virtio_add_feature(&host_features, VIRTIO_NET_F_MAC);
> +
> for (i = 0; feature_sizes[i].flags != 0; i++) {
> if (host_features & feature_sizes[i].flags) {
> config_size = MAX(feature_sizes[i].end, config_size);
> @@ -1724,6 +1732,10 @@ static void virtio_net_device_realize(DeviceState *dev, Error **errp)
> NetClientState *nc;
> int i;
>
> + if (n->net_conf.mtu) {
> + n->host_features |= (0x1 << VIRTIO_NET_F_MTU);
> + }
> +
> virtio_net_set_config_size(n, n->host_features);
> virtio_init(vdev, "virtio-net", VIRTIO_ID_NET, n->config_size);
>
> @@ -1922,6 +1934,7 @@ static Property virtio_net_properties[] = {
> DEFINE_PROP_STRING("tx", VirtIONet, net_conf.tx),
> DEFINE_PROP_UINT16("rx_queue_size", VirtIONet, net_conf.rx_queue_size,
> VIRTIO_NET_RX_QUEUE_DEFAULT_SIZE),
> + DEFINE_PROP_UINT16("host_mtu", VirtIONet, net_conf.mtu, 0),
> DEFINE_PROP_END_OF_LIST(),
> };
>
> diff --git a/include/hw/virtio/virtio-net.h b/include/hw/virtio/virtio-net.h
> index 0ced975..8ea56a8 100644
> --- a/include/hw/virtio/virtio-net.h
> +++ b/include/hw/virtio/virtio-net.h
> @@ -36,6 +36,7 @@ typedef struct virtio_net_conf
> int32_t txburst;
> char *tx;
> uint16_t rx_queue_size;
> + uint16_t mtu;
> } virtio_net_conf;
>
> /* Maximum packet size we can receive from tap device: header + 64k */
next prev parent reply other threads:[~2016-11-30 11:24 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-11-30 10:10 [Qemu-devel] [RFC v3 0/3] virtio-net: Add support to MTU feature Maxime Coquelin
2016-11-30 10:10 ` [Qemu-devel] [RFC v3 1/3] vhost-user: Add MTU protocol feature and op Maxime Coquelin
2016-11-30 10:25 ` Yuanhan Liu
2016-11-30 12:17 ` Maxime Coquelin
2016-11-30 10:10 ` [Qemu-devel] [RFC v3 2/3] vhost-net: Notify the backend about the host MTU Maxime Coquelin
2016-12-06 18:31 ` Aaron Conole
2016-12-07 7:49 ` Maxime Coquelin
2016-11-30 10:10 ` [Qemu-devel] [RFC v3 3/3] virtio-net: Add MTU feature support Maxime Coquelin
2016-11-30 11:24 ` Jason Wang [this message]
2016-11-30 12:24 ` Maxime Coquelin
2016-11-30 10:30 ` [Qemu-devel] [RFC v3 0/3] virtio-net: Add support to MTU feature no-reply
2016-11-30 11:23 ` Jason Wang
2016-11-30 12:16 ` Maxime Coquelin
2016-11-30 13:42 ` Michael S. Tsirkin
2016-12-05 16:11 ` Aaron Conole
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=0204c67d-5f32-a9ac-2f6b-f11fa4af01a3@redhat.com \
--to=jasowang@redhat.com \
--cc=aconole@redhat.com \
--cc=berrange@redhat.com \
--cc=fbl@redhat.com \
--cc=ktraynor@redhat.com \
--cc=maxime.coquelin@redhat.com \
--cc=mlureau@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=yuanhan.liu@linux.intel.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).