From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jens Freimann Subject: Re: [virtio-dev] packed ring layout proposal v3 Date: Wed, 4 Oct 2017 14:39:01 +0200 Message-ID: <20171004123901.oomueufqg52uhas4@localhost.localdomain> References: <20160915223915.qjlnlvf2w7u37bu3@redhat.com> <20170926011826-mutt-send-email-mst@kernel.org> <7A0DC0C9-F148-4161-B2D1-8D8D14D8B9A1@cisco.com> <20170928023112-mutt-send-email-mst@kernel.org> <20171001063817-mutt-send-email-mst@kernel.org> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii"; Format="flowed" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <20171001063817-mutt-send-email-mst@kernel.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: virtualization-bounces@lists.linux-foundation.org Errors-To: virtualization-bounces@lists.linux-foundation.org To: "Michael S. Tsirkin" Cc: "virtio-dev@lists.oasis-open.org" , "Steven Luong (sluong)" , "virtualization@lists.linux-foundation.org" List-Id: virtualization@lists.linuxfoundation.org On Sun, Oct 01, 2017 at 04:08:29AM +0000, Michael S. Tsirkin wrote: >On Thu, Sep 28, 2017 at 09:44:35AM +0000, Liang, Cunming wrote: >> >> Get it now. Please correct me if I missing something. >> >> >> Flags status hints, >> >> - DESC_DRIVER only: driver owns the descriptor w/o available info ready for device to use >> >> - DESC_DRIVER | DESC_WRAP: driver has prepared an available descriptor, device hasn't used it yet >> >> - None: device has used the descriptor, and write descriptor out >> >> - DESC_WRAP only: shall not happen, device make sure to clear it >> >> >> Polling behavior is, >> >> - Device monitor DESC_WRAP bit set or not; If set, go to use descriptor and clear DESC_DRIVER bit in the end (note: always need to clear DESC_WRAP) >> >> - Driver monitor DESC_DRIVER bit cleared or not; If cleared, reclaim descriptor(set DESC_DRIVER) and set DESC_WRAP once new available descriptor get ready to go >> >> >> -- >> Steve > > >Hmm no, not what I had in mind. > >DESC_DRIVER: used by driver to poll. Driver sets it when writing a >descriptor. Device clears it when overwriting a descriptor. >Thus driver uses DESC_DRIVER to detect that device data in >descriptor is valid. Basically DESC_HW from v2 split in two? > >DESC_WRAP: used by device to poll. Driver sets it to a *different* >value every time it overwrites a descriptor. >How to achieve it? >since descriptors are written out in ring order, >simply maintain the current value internally (start value 1) and flip it >every time you overwrite the first descriptor. >Device leaves it intact when overwriting a descriptor. This is confusing me a bit. My understanding is: 1. the internally kept wrap value only flipped when the first descriptor is overwritten 2. the moment the first descriptor is written the internal wrap value is flipped 0->1 or 1->0 and this value is written to every descriptor DESC_WRAP until we reach the first descriptor again > >After writing down this explanation, I think the names aren't >great. > >Let me try an alternative explanation. > >--------------- >A two-bit field, DRIVER_OWNER, signals the buffer ownership. >It has 4 possible values: >values 0x1, 0x11 are written by driver >values 0x0, 0x10 are written by device The 0x prefix might add to the confusion here. It is really just two bits, no? >each time driver writes out a descriptor, it must make sure >that the high bit in OWNER changes. > >each time device writes out a descriptor, it must make sure >that the high bit in OWNER does not change. > >this is exactly the same functionally, DRIVER is high bit and >WRAP is the low bit. Does this make things clearer? So far it makes sense to me. >--------------- > > > >Maybe the difference between device and driver >is confusing. We can fix that by changing the values. >Here is an alternative. Let me know if you like it better - >I need to think a bit more to make sure it works, >but to give you an idea: > > >--------------- >A two-bit field, DRIVER_OWNER, signals the buffer ownership. >It has 4 possible values: >values 0x1, 0x10 are written by driver >values 0x0, 0x11 are written by device > >each time driver writes out a descriptor, it must make sure >that the high bit in OWNER changes. Thus first time >it writes 0x10, next time 0x1, then 0x10 again. > >each time device writes out a descriptor, it must make sure >that the low bit in OWNER changes. Thus first time >it writes 0x11, next time 0x0, then 0x11 again. DESC_WRAP is changed by the device now, so this would work differently than in the scenario from above. This would mean we don't need the internally kept wrap value, right? regards, Jens