From: Shannon Zhao <shannon.zhao@linaro.org>
To: Cornelia Huck <cornelia.huck@de.ibm.com>
Cc: peter.maydell@linaro.org, hangaohuai@huawei.com, mst@redhat.com,
peter.huangpeng@huawei.com, qemu-devel@nongnu.org,
zhaoshenglong@huawei.com, pbonzini@redhat.com,
christoffer.dall@linaro.org
Subject: Re: [Qemu-devel] [PATCH v2 1/2] hw/net/virtio-net: Move DEFINE_VIRTIO_NET_FEATURES to virtio-net
Date: Mon, 20 Apr 2015 21:32:52 +0800 [thread overview]
Message-ID: <55350004.1090107@linaro.org> (raw)
In-Reply-To: <20150420133203.2fd6caff.cornelia.huck@de.ibm.com>
On 2015/4/20 19:32, Cornelia Huck wrote:
> On Mon, 20 Apr 2015 16:20:00 +0800
> shannon.zhao@linaro.org wrote:
>
>> From: Shannon Zhao <shannon.zhao@linaro.org>
>>
>> Move DEFINE_VIRTIO_NET_FEATURES to the backend virtio-net.
>> The transports just sync the host features from backend.
>>
>> Signed-off-by: Shannon Zhao <zhaoshenglong@huawei.com>
>> Signed-off-by: Shannon Zhao <shannon.zhao@linaro.org>
>> ---
>> hw/net/virtio-net.c | 4 ++++
>> hw/s390x/s390-virtio-bus.c | 1 -
>> hw/s390x/virtio-ccw.c | 1 -
>> hw/virtio/virtio-pci.c | 1 -
>> include/hw/virtio/virtio-net.h | 1 +
>> 5 files changed, 5 insertions(+), 3 deletions(-)
>
> I need the following change to make this work for virtio-ccw:
>
> diff --git a/hw/s390x/virtio-ccw.c b/hw/s390x/virtio-ccw.c
> index 2252789..7a2bdff 100644
> --- a/hw/s390x/virtio-ccw.c
> +++ b/hw/s390x/virtio-ccw.c
> @@ -779,7 +779,6 @@ static void virtio_ccw_net_realize(VirtioCcwDevice *ccw_dev, Error **errp)
> DeviceState *vdev = DEVICE(&dev->vdev);
> Error *err = NULL;
>
> - virtio_net_set_config_size(&dev->vdev, ccw_dev->host_features[0]);
> virtio_net_set_netclient_name(&dev->vdev, qdev->id,
> object_get_typename(OBJECT(qdev)));
> qdev_set_parent_bus(vdev, BUS(&ccw_dev->bus));
> @@ -790,6 +789,7 @@ static void virtio_ccw_net_realize(VirtioCcwDevice *ccw_dev, Error **errp)
> }
>
> virtio_ccw_device_realize(ccw_dev, VIRTIO_DEVICE(vdev), errp);
> + virtio_net_set_config_size(&dev->vdev, ccw_dev->host_features[0]);
> }
>
> static void virtio_ccw_net_instance_init(Object *obj)
>
> host_features used to be statically populated, so
> virtio_net_set_config_size() was able to use the various feature bits
> for its decisions.
>
> It does not seem quite right, however, since the set of feature bits
> had not been through virtio-net's ->get_features() routine (or the
> feature bit manipulations in virtio-ccw's realize() routine) - it was
> just good enough.
>
> Maybe the right place for calling set_config_size() would be in a
> virtio-net specific ->plugged() callback?
>
> I'm not sure why virtio-pci works, but they have a different topology
> with pci device and virtio-pci device separate, so it might work out
> there.
>
The virtio-pci works because it calls device_plugged hook to get the
features and this hook is called before realized function. When calling
virtio_net_set_config_size the features are already synced, so it works.
I think maybe we should call device_plugged hook to get the features in
virtio-ccw other than get them in realized function. So the virtio-ccw,
virtio-pci and virtio-mmio use same ways.
Thanks,
Shannon
next prev parent reply other threads:[~2015-04-20 13:33 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-20 8:19 [Qemu-devel] [PATCH v2 0/2] virtio: Move host features to backends shannon.zhao
2015-04-20 8:20 ` [Qemu-devel] [PATCH v2 1/2] hw/net/virtio-net: Move DEFINE_VIRTIO_NET_FEATURES to virtio-net shannon.zhao
2015-04-20 9:20 ` Cornelia Huck
2015-04-20 11:32 ` Cornelia Huck
2015-04-20 13:32 ` Shannon Zhao [this message]
2015-04-20 14:08 ` Cornelia Huck
2015-04-20 14:34 ` Peter Maydell
2015-04-20 16:44 ` Cornelia Huck
2015-04-21 1:43 ` Shannon Zhao
2015-04-21 7:30 ` Cornelia Huck
2015-04-21 10:33 ` Shannon Zhao
2015-04-20 8:20 ` [Qemu-devel] [PATCH v2 2/2] virtio-scsi: Move DEFINE_VIRTIO_SCSI_FEATURES to virtio-scsi shannon.zhao
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=55350004.1090107@linaro.org \
--to=shannon.zhao@linaro.org \
--cc=christoffer.dall@linaro.org \
--cc=cornelia.huck@de.ibm.com \
--cc=hangaohuai@huawei.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=peter.huangpeng@huawei.com \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=zhaoshenglong@huawei.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).