OASIS Mailing List ArchivesView the OASIS mailing list archive below
or browse/search using MarkMail.

 


Help: OASIS Mailing Lists Help | MarkMail Help

virtio-comment message

[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]


Subject: Re: [PATCH V2 6/6] virtio-pci: implement dirty page tracking




On 11/3/2023 11:47 PM, Parav Pandit wrote:
From: Zhu, Lingshan <lingshan.zhu@intel.com>
Sent: Friday, November 3, 2023 8:33 PM

On 11/3/2023 7:35 PM, Parav Pandit wrote:
From: Michael S. Tsirkin <mst@redhat.com>
Sent: Friday, November 3, 2023 4:20 PM

On Fri, Nov 03, 2023 at 06:34:37PM +0800, Zhu Lingshan wrote:
+\item[\field{bitmap_addr}]
+	The driver use this to set the address of the bitmap which records
+the
dirty pages
+	caused by the device.
+	Each bit in the bitmap represents one memory page, bit 0 in the bitmap
+	reprsents page 0 at address 0, bit 1 represents page 1, and so on
+in a
linear manner.
+	When \field{enable} is set to 1 and the device writes to a memory page,
+	the device MUST set the corresponding bit to 1 which indicating
+the
page is dirty.
+\item[\field{bitmap_length}]
+	The driver use this to set the length in bytes of the bitmap.
+\end{description}
+
+\devicenormative{\subsubsection}{Memory Dirty Pages Tracker
+Capability}{Virtio Transport Options / Virtio Over PCI Bus / Memory
+Dirty Pages Tracker Capability}
+
+The device MUST NOT set any bits beyond bitmap_length when
+reporting
dirty pages.
+
+To prevent a read-modify-write procedure, if a memory page is
+dirty,
It is not to prevent; it is just not possible to do racy RMW. ð
if you understand what is a atomic routine, you will not call it racy.
Hence to work around you propose to mark all pages dirty. Too bad.
This just does not work.
why? and this is optional.
Because device cannot set individual bits in atomic way for same byte read by the cpu.
1. device read the byte that had bit 0 and 4 set.
2. cpu atomically clear these bits.
3. device wrote bits 0, 4, and new bits 2 and 3.
4. cpu now transferred page 0 and 4 again.

Optional thing also needs to work. :)
Do you know both CPU and device actually don't read bit, they read bytes????
Do you know RC connected to memory controller????
Do you know there are locked transaction and atomic operations in PCI???
Do you know there are atomic read/write/clear even read and clear and so on in CPU ISA????

Secondly the bitmap array is function is for full guest memory size, while
there is lot of sparce region now and also in future.
This is the second problem.
did you see gra_power and its comments?
gra_power says the page size.
Not the sparce multiple ranges of the guest memory.
Device endup tracking uninterested area as well.
increase gra_power can reduce bitmap size, right?
Totally up to the hypervisor, right?

This is exactly why I asked you to review the page write recording series of
admin commands and comment.
And you never commented with sheer ignorance.

So clearly the start stop method for specific range and without bandwidth
explosion, admin commands of [1] stands better.
If you do [1] on the member device also using its AQ in future, it will work for
non-passthrough case.
If you build non-passthrough live migration using [1], also it will work.
So I donât see any point of this series anymore.
As Jason pointed out, there are many problems in your proposal, you should
answer there. I don't need to repeat his words and duplicate the discussions.
Many are already addressed in v3.
interesting, does your V3 support nested?

[1]
https://lists.oasis-open.org/archives/virtio-comment/202310/msg00475.h
tml
you still need to explain why this does not work for pass-through.
It does not work for following reasons.
1. Because all the fields that put on the member device are not in direct control of the hypervisor.
The device is directly controlled by the guest including the device status and when it resets the device all the things stored in the device are lost.
have you seen PASID? and if the device reset, it has to forget everything as expected, right?

2. the PCI FLR is clearing all the registers you exposed here.
see above

3. Endless expansion of config registers of dirty tracking is not scalable, as they are not init time registers not following the Appendix B guidelines.
endless expansion?? It is a complete set of dirty page tracking, right????
have you see this cap only controls? The device DMA writes the bitmap, not by registers.

Again, if you want to fix Appendix B, OK.

4. bitmap based dirty tracking is not atomic between cpu and device.
Hence, it is racy.
see above, the first reply.

5. All the device context needed for passthrough based hypervisor for a device type specific is missing.
All of those can be used for non-passthrough as well.
[1] https://lists.oasis-open.org/archives/virtio-comment/202311/msg00085.html
If you want to discuss this again, I don't want to wast time but only asking you whether you want to define
virtio-fs device context

And I
remember this is a point-less topic as MST ever wants to mute another "pass-
through" thread.
No. he did not say that.
He meant to not endlessly debate which one is better.
He clearly said, try to see if you can make multiple hypervisor model work.
And your series shows a clear ignorance of his guidance.

Let me quote MST's reply here:
"I feel this discussion will keep meandering because the terminology is
vague. There's no single thing that is called "passthrough" -
vendors just build what is expedient with current hardware and
software. Nvidia has a bunch of people working on vfio so they
call that passthrough, Red Hat has people working on VDPA and
they call that passthrough, etc.


Before I mute this discussion for good, does anyone here have any
feeling progress is made? What kind of progress? "

So please don't discuss on pass-through anymore.
It seems only you need to develop the knowledge


+optionally the device is permitted to set the entire byte, which
+encompasses
the relevant bit, to 1.
+
+The device MAY increase \field{gra_power} to reduce
\field{bitmap_length}.
+
+The device must ignore any writes to \field{pasid} if PASID
+Extended Capability is absent or the PASID functionality is
+disabled in PASID Extended Capability
I have to say this is going to work very badly when the number of
dirty pages is
small: you will end up scanning and re-scanning all of bitmap.
And the resolution is apparently 8 pages? You have just multiplied
the migration bandwidth by a factor of 8.
Yeah.
And device does not even know previously reported pages are read by driver
or not. All guess work game for driver and device.
see my reply to him
Please see above reply.
see above



[Date Prev] | [Thread Prev] | [Thread Next] | [Date Next] -- [Date Index] | [Thread Index] | [List Home]