Difference between revisions of "PV Protocol"

From Xen
(Created page with "PV protocol is the protocol used by all PV drivers. Just to name a few users: netfront/netback, blkfront/blkback, xenconsole etc. Two fundamental elements of PV protocol is: * C…")
 
 
Line 14: Line 14:
   
 
In this picture we assume frontend produces requests and consumes responses, while backend produces responses and consumes requests. The slots are not explicitly drawn on the picture.
 
In this picture we assume frontend produces requests and consumes responses, while backend produces responses and consumes requests. The slots are not explicitly drawn on the picture.
  +
  +
[[Category:Xen]]
  +
[[Category:Developers]]
  +
[[Category:Design Document]]

Latest revision as of 11:04, 29 April 2013

PV protocol is the protocol used by all PV drivers. Just to name a few users: netfront/netback, blkfront/blkback, xenconsole etc.

Two fundamental elements of PV protocol is:

  • Consensual ring(s) shared between frontend driver and backend driver.
  • Event channel used to do notification.

The ring is nothing but a piece of memory shared between frontend driver and backend drivers. The ring size is counted in slots. A slot is a union of request and response.

Usually one event channel is used to do notification.

Here is a picture demonstrating the PV protocol.

PV Protocol.png

In this picture we assume frontend produces requests and consumes responses, while backend produces responses and consumes requests. The slots are not explicitly drawn on the picture.