From: "Michael S. Tsirkin" <mst@redhat.com>
To: Parav Pandit <parav@nvidia.com>
Cc: Heng Qi <hengqi@linux.alibaba.com>,
"virtio-comment@lists.oasis-open.org"
<virtio-comment@lists.oasis-open.org>,
"virtio-dev@lists.oasis-open.org"
<virtio-dev@lists.oasis-open.org>,
Jason Wang <jasowang@redhat.com>,
Yuri Benditovich <yuri.benditovich@daynix.com>,
Xuan Zhuo <xuanzhuo@linux.alibaba.com>,
Cornelia Huck <cohuck@redhat.com>
Subject: Re: [virtio-comment] Re: [PATCH v18] virtio-net: support inner header hash
Date: Thu, 22 Jun 2023 12:54:27 -0400 [thread overview]
Message-ID: <20230622124701-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <PH0PR12MB54812B8DA2A17EF07CBDC3F1DC22A@PH0PR12MB5481.namprd12.prod.outlook.com>
On Thu, Jun 22, 2023 at 04:42:40PM +0000, Parav Pandit wrote:
>
>
> > From: Michael S. Tsirkin <mst@redhat.com>
> > Sent: Thursday, June 22, 2023 12:28 PM
>
> > > > Not sure what's the implication?
> > > Implication is device needs to store this in always available on-chip memory
> > which is not good.
> >
> > Oh by devices you mean VFs. Now I get your motivation, at least. Thanks.
> >
> > > >
> > > > > > For example, for migration driver might want to validate that two
> > > > > > devices have same capability. doing it without dma is nicer.
> > > > > >
> > > > > A migration driver for real world scenario, will almost have to use the dma
> > for
> > > > amount of data it needs to exchange.
> > > >
> > > > Not migration itself, provisioning.
> > > >
> > > Provisioning driver usually do not attach to the member device directly.
> > > This requires device reset, followed by reaching _DRIVER stage, querying
> > features etc and config area.
> > > And unbinding it and second reset by member driver. Ugh.
> > > Provisioning driver also needs to get the state or capabilities even when
> > member driver is already attached.
> > > So config space is not much a gain either.
> > >
> >
> > Absolutely, that's why we have admin commands. I was hoping for an
> > admin command that basically gets/sets RO fields of the config space.
> >
> Admin command as I recall are not accessible directly by the member driver to the member device.
> So a cmdq or cfgq is needed.
Possible, sure. Or we actually discussed a self group. I took it away until it had a user.
> > > Instead of decision point being RO vs RW,
> > > any new fields via cmdvq and existing fields stays in cfg space, give predictable
> > behavior to size the member devices in the system.
> > > Once the cmdvq is available, we can get rid of GET command used in this
> > version for new future features.
> > > Till that arrives, GET command is the efficient way.
> >
> > I understand. I just don't much like these patchwork solutions though.
> > And I don't like that we will pay by not having a single conherent
> > way to provision and query capabilities through config space,
> > instead just for this thing we will have a special thing.
> >
> The single way for every device to query their capabilities is via a cfgvq for all new fields without extending the existing config space.
> (and optionally old fields).
Or adminq with self group. I like this somewhat better because we need
exactly same query from owner.
> > Why don't we focus on a work on a full solution? Just don't implement
> > this thing in your devices meanwhile until we do.
> >
> Then Heng needs to wait for cfgvq to be defined to be implemented first.
> Doesn't look reasonable to me.
And *everything* has to wait. No, not reasonable. We somehow managed
to release several spec versions and things did not ground to
a halt without cfgvq. Don't see a reason to do it right now,
what's special about now? I feel we should add to config space
and then solve it all.
> Current GET is coherent with the new commands defined such as notification coalescing.
>
> As community, we should work on defining the cfgvq, till that time have the optimal way to get the config, i.e. using the cvq.
cvq doesn't really work for capabilities though.
--
MST
This publicly archived list offers a means to provide input to the
OASIS Virtual I/O Device (VIRTIO) TC.
In order to verify user consent to the Feedback License terms and
to minimize spam in the list archive, subscription is required
before posting.
Subscribe: virtio-comment-subscribe@lists.oasis-open.org
Unsubscribe: virtio-comment-unsubscribe@lists.oasis-open.org
List help: virtio-comment-help@lists.oasis-open.org
List archive: https://lists.oasis-open.org/archives/virtio-comment/
Feedback License: https://www.oasis-open.org/who/ipr/feedback_license.pdf
List Guidelines: https://www.oasis-open.org/policies-guidelines/mailing-lists
Committee: https://www.oasis-open.org/committees/virtio/
Join OASIS: https://www.oasis-open.org/join/
WARNING: multiple messages have this Message-ID (diff)
From: "Michael S. Tsirkin" <mst@redhat.com>
To: Parav Pandit <parav@nvidia.com>
Cc: Heng Qi <hengqi@linux.alibaba.com>,
"virtio-comment@lists.oasis-open.org"
<virtio-comment@lists.oasis-open.org>,
"virtio-dev@lists.oasis-open.org"
<virtio-dev@lists.oasis-open.org>,
Jason Wang <jasowang@redhat.com>,
Yuri Benditovich <yuri.benditovich@daynix.com>,
Xuan Zhuo <xuanzhuo@linux.alibaba.com>,
Cornelia Huck <cohuck@redhat.com>
Subject: [virtio-dev] Re: [virtio-comment] Re: [PATCH v18] virtio-net: support inner header hash
Date: Thu, 22 Jun 2023 12:54:27 -0400 [thread overview]
Message-ID: <20230622124701-mutt-send-email-mst@kernel.org> (raw)
In-Reply-To: <PH0PR12MB54812B8DA2A17EF07CBDC3F1DC22A@PH0PR12MB5481.namprd12.prod.outlook.com>
On Thu, Jun 22, 2023 at 04:42:40PM +0000, Parav Pandit wrote:
>
>
> > From: Michael S. Tsirkin <mst@redhat.com>
> > Sent: Thursday, June 22, 2023 12:28 PM
>
> > > > Not sure what's the implication?
> > > Implication is device needs to store this in always available on-chip memory
> > which is not good.
> >
> > Oh by devices you mean VFs. Now I get your motivation, at least. Thanks.
> >
> > > >
> > > > > > For example, for migration driver might want to validate that two
> > > > > > devices have same capability. doing it without dma is nicer.
> > > > > >
> > > > > A migration driver for real world scenario, will almost have to use the dma
> > for
> > > > amount of data it needs to exchange.
> > > >
> > > > Not migration itself, provisioning.
> > > >
> > > Provisioning driver usually do not attach to the member device directly.
> > > This requires device reset, followed by reaching _DRIVER stage, querying
> > features etc and config area.
> > > And unbinding it and second reset by member driver. Ugh.
> > > Provisioning driver also needs to get the state or capabilities even when
> > member driver is already attached.
> > > So config space is not much a gain either.
> > >
> >
> > Absolutely, that's why we have admin commands. I was hoping for an
> > admin command that basically gets/sets RO fields of the config space.
> >
> Admin command as I recall are not accessible directly by the member driver to the member device.
> So a cmdq or cfgq is needed.
Possible, sure. Or we actually discussed a self group. I took it away until it had a user.
> > > Instead of decision point being RO vs RW,
> > > any new fields via cmdvq and existing fields stays in cfg space, give predictable
> > behavior to size the member devices in the system.
> > > Once the cmdvq is available, we can get rid of GET command used in this
> > version for new future features.
> > > Till that arrives, GET command is the efficient way.
> >
> > I understand. I just don't much like these patchwork solutions though.
> > And I don't like that we will pay by not having a single conherent
> > way to provision and query capabilities through config space,
> > instead just for this thing we will have a special thing.
> >
> The single way for every device to query their capabilities is via a cfgvq for all new fields without extending the existing config space.
> (and optionally old fields).
Or adminq with self group. I like this somewhat better because we need
exactly same query from owner.
> > Why don't we focus on a work on a full solution? Just don't implement
> > this thing in your devices meanwhile until we do.
> >
> Then Heng needs to wait for cfgvq to be defined to be implemented first.
> Doesn't look reasonable to me.
And *everything* has to wait. No, not reasonable. We somehow managed
to release several spec versions and things did not ground to
a halt without cfgvq. Don't see a reason to do it right now,
what's special about now? I feel we should add to config space
and then solve it all.
> Current GET is coherent with the new commands defined such as notification coalescing.
>
> As community, we should work on defining the cfgvq, till that time have the optimal way to get the config, i.e. using the cvq.
cvq doesn't really work for capabilities though.
--
MST
---------------------------------------------------------------------
To unsubscribe, e-mail: virtio-dev-unsubscribe@lists.oasis-open.org
For additional commands, e-mail: virtio-dev-help@lists.oasis-open.org
next prev parent reply other threads:[~2023-06-22 16:54 UTC|newest]
Thread overview: 106+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-06-21 13:50 [virtio-comment] [PATCH v18] virtio-net: support inner header hash Heng Qi
2023-06-21 13:50 ` [virtio-dev] " Heng Qi
2023-06-21 15:38 ` [virtio-comment] " Michael S. Tsirkin
2023-06-21 15:38 ` [virtio-dev] " Michael S. Tsirkin
2023-06-21 16:46 ` [virtio-comment] " Heng Qi
2023-06-21 16:46 ` [virtio-dev] " Heng Qi
2023-06-21 17:52 ` Parav Pandit
2023-06-21 17:52 ` [virtio-dev] " Parav Pandit
2023-06-21 19:25 ` Michael S. Tsirkin
2023-06-21 19:25 ` [virtio-dev] " Michael S. Tsirkin
2023-06-21 19:28 ` Parav Pandit
2023-06-21 19:28 ` [virtio-dev] " Parav Pandit
2023-06-21 19:35 ` Michael S. Tsirkin
2023-06-21 19:35 ` [virtio-dev] " Michael S. Tsirkin
2023-06-21 19:39 ` Parav Pandit
2023-06-21 19:39 ` [virtio-dev] " Parav Pandit
2023-06-21 19:45 ` Michael S. Tsirkin
2023-06-21 19:45 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 0:46 ` [virtio-comment] " Heng Qi
2023-06-22 0:46 ` Heng Qi
2023-06-21 19:32 ` Michael S. Tsirkin
2023-06-21 19:32 ` [virtio-dev] " Michael S. Tsirkin
2023-06-21 19:37 ` Parav Pandit
2023-06-21 19:37 ` [virtio-dev] " Parav Pandit
2023-06-21 20:16 ` Michael S. Tsirkin
2023-06-21 20:16 ` [virtio-dev] " Michael S. Tsirkin
2023-06-21 20:24 ` Parav Pandit
2023-06-21 20:24 ` [virtio-dev] " Parav Pandit
2023-06-21 20:37 ` Michael S. Tsirkin
2023-06-21 20:37 ` [virtio-dev] " Michael S. Tsirkin
2023-06-21 20:52 ` Parav Pandit
2023-06-21 20:52 ` [virtio-dev] " Parav Pandit
2023-06-22 0:59 ` [virtio-comment] " Heng Qi
2023-06-22 0:59 ` Heng Qi
2023-06-22 1:04 ` [virtio-comment] " Parav Pandit
2023-06-22 1:04 ` Parav Pandit
2023-06-22 1:17 ` [virtio-comment] " Heng Qi
2023-06-22 1:17 ` Heng Qi
2023-06-22 6:23 ` Michael S. Tsirkin
2023-06-22 6:23 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 12:32 ` Parav Pandit
2023-06-22 12:32 ` [virtio-dev] " Parav Pandit
2023-06-22 13:42 ` Heng Qi
2023-06-22 13:42 ` [virtio-dev] " Heng Qi
2023-06-22 14:27 ` Parav Pandit
2023-06-22 14:27 ` [virtio-dev] " Parav Pandit
2023-06-22 16:46 ` Michael S. Tsirkin
2023-06-22 16:46 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 16:54 ` Parav Pandit
2023-06-22 16:54 ` [virtio-dev] " Parav Pandit
2023-06-22 17:03 ` Michael S. Tsirkin
2023-06-22 17:03 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 17:11 ` Parav Pandit
2023-06-22 17:11 ` [virtio-dev] " Parav Pandit
2023-06-22 17:28 ` Michael S. Tsirkin
2023-06-22 17:28 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 17:58 ` Parav Pandit
2023-06-22 17:58 ` [virtio-dev] " Parav Pandit
2023-06-28 10:41 ` Michael S. Tsirkin
2023-06-28 10:41 ` [virtio-dev] " Michael S. Tsirkin
2023-06-28 16:46 ` Parav Pandit
2023-06-28 16:46 ` [virtio-dev] " Parav Pandit
2023-06-28 17:08 ` Michael S. Tsirkin
2023-06-28 17:08 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 16:28 ` Michael S. Tsirkin
2023-06-22 16:28 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 16:42 ` Parav Pandit
2023-06-22 16:42 ` [virtio-dev] " Parav Pandit
2023-06-22 16:54 ` Michael S. Tsirkin [this message]
2023-06-22 16:54 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 17:04 ` [virtio-comment] " Parav Pandit
2023-06-22 17:04 ` Parav Pandit
2023-06-22 17:14 ` [virtio-comment] " Michael S. Tsirkin
2023-06-22 17:14 ` Michael S. Tsirkin
2023-06-22 17:20 ` [virtio-comment] " Parav Pandit
2023-06-22 17:20 ` Parav Pandit
2023-06-22 17:43 ` [virtio-comment] " Michael S. Tsirkin
2023-06-22 17:43 ` Michael S. Tsirkin
2023-06-22 18:12 ` [virtio-comment] " Parav Pandit
2023-06-22 18:12 ` Parav Pandit
2023-06-22 18:36 ` [virtio-comment] " Michael S. Tsirkin
2023-06-22 18:36 ` Michael S. Tsirkin
2023-06-22 17:11 ` Michael S. Tsirkin
2023-06-22 17:11 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 17:15 ` Parav Pandit
2023-06-22 17:15 ` [virtio-dev] " Parav Pandit
2023-06-22 17:37 ` Michael S. Tsirkin
2023-06-22 17:37 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 17:51 ` [virtio-comment] " Parav Pandit
2023-06-22 17:51 ` Parav Pandit
2023-06-22 18:11 ` [virtio-comment] " Michael S. Tsirkin
2023-06-22 18:11 ` Michael S. Tsirkin
2023-06-22 18:17 ` [virtio-comment] " Parav Pandit
2023-06-22 18:17 ` Parav Pandit
2023-06-22 18:40 ` [virtio-comment] " Michael S. Tsirkin
2023-06-22 18:40 ` Michael S. Tsirkin
2023-06-22 18:50 ` [virtio-comment] " Parav Pandit
2023-06-22 18:50 ` [virtio-dev] " Parav Pandit
2023-06-22 19:02 ` Michael S. Tsirkin
2023-06-22 19:02 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 20:27 ` Parav Pandit
2023-06-22 20:27 ` [virtio-dev] " Parav Pandit
2023-06-28 10:47 ` Michael S. Tsirkin
2023-06-28 10:47 ` [virtio-dev] " Michael S. Tsirkin
2023-06-22 0:41 ` Heng Qi
2023-06-22 0:41 ` Heng Qi
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=20230622124701-mutt-send-email-mst@kernel.org \
--to=mst@redhat.com \
--cc=cohuck@redhat.com \
--cc=hengqi@linux.alibaba.com \
--cc=jasowang@redhat.com \
--cc=parav@nvidia.com \
--cc=virtio-comment@lists.oasis-open.org \
--cc=virtio-dev@lists.oasis-open.org \
--cc=xuanzhuo@linux.alibaba.com \
--cc=yuri.benditovich@daynix.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.