If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
Am I the only one wondering how tightening up a 5mS polling loop shaved 170mS off the startup time ?
If the poll itself was taking a long time then it still wouldn't take the new startup time down to 2mS.
It's probably multiple Send Command, Await Response interactions, not just one. Polling roughly 500 times as often over multiple interactions will add up.
It's probably multiple Send Command, Await Response interactions, not just one. Polling roughly 500 times as often over multiple interactions will add up.
Its rather the question, why a paravirtualized driver needs such a sketchy kind up setup procedure. This should be some shared memory, pretty much ready-to-use from the start, the rest some sort of socket operations.
It's probably multiple Send Command, Await Response interactions, not just one. Polling roughly 500 times as often over multiple interactions will add up.
That's what puzzles me - with the new polling interval it does poll much more frequently, but it's faster.
Comment