On Tue, 2007-08-21 at 08:00 -0400, Gregory Haskins wrote: > On Tue, 2007-08-21 at 17:58 +1000, Rusty Russell wrote: > > > Partly the horror of the code, but mainly because it is an in-order > > ring. You'll note that we use a reply ring, so we don't need to know > > how much the other side has consumed (and it needn't do so in order). > > > > I have certainly been known to take a similar stance when looking at Xen > code ;) (recall the lapic work I did). However, that said I am not yet > convinced that an out-of-order ring (at least as a fundamental > primitive) buys us much.
Hi Gregory, The main current use is disk drivers: they process out-of-order. > I think the use of rings for the tx-path in of > itself is questionable unless you can implement something like the bidir > NAPI that I demonstrated in ioqnet. Otherwise, you end up having to > hypercall on each update to the ring anyway and you might as well > hypercall directly w/o using a ring. In the guest -> host direction, an interface like virtio is designed for batching, with the explicit distinction between add_buf & sync. On the receive side, you can have explicit interrupt suppression on implicit mitigation caused by scheduling effects. > OTOH, its possible that its redundant to have a simple low-level > infrastructure and then build a more complex ring for out-of-order > processing on top of it. I'm not sure. My gut feeling is that it will > probably result in a cleaner implementation: The higher-layered ring can > stop worrying about the interrupt/hypercall details (it would use the > simple ring as its transport)....and implementations that don't need > out-of-order (e.g. networks) don't have to deal with the associated > complexity. But in fact as we can see, two rings need less from each ring than one ring. One ring must have producer and consumer indices, so the producer doesn't overrun the consumer. But if the second ring is used to feed consumption, the consumer index isn't required any more: in fact, it's just confusing to have. I really think that a table of descriptors, a ring for produced descriptors and a ring for used descriptors is the most cache-friendly, bidir-non-trusting simple implementation possible. Of course, the produced and used rings might be the same format, which allows code sharing and if you squint a little, that's your "lowest level" simple ringbuffer. Thanks for the discussion, Rusty. ------------------------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Still grepping through log files to find problems? Stop. Now Search log events and configuration files using AJAX and a browser. Download your FREE copy of Splunk now >> http://get.splunk.com/ _______________________________________________ kvm-devel mailing list kvm-devel@lists.sourceforge.net https://lists.sourceforge.net/lists/listinfo/kvm-devel