diff options
author | rusty <rusty@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652> | 2013-12-02 12:30:30 +0000 |
---|---|---|
committer | rusty <rusty@0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652> | 2013-12-02 12:30:30 +0000 |
commit | f37b614cd3760036d9302f1e9bf985ec19892586 (patch) | |
tree | 5034948252499faac9c93793906a878d0f0b18b1 /virtio-ring.h | |
parent | 6c27c890461a8184b9684649158793cb669f655b (diff) |
Terminology: Device and driver, not host and guest.
We've mixed both together, whereas from a spec-reader point of view,
"driver" and "device" is probably clearer.
CCW part incorporated:
Switch the parts of the virtio-ccw specification that did not already
to device/driver instead of guest/host. For more general discussions,
host/guest is kept (like when talking about guest<->host notifications
in general). This should make things more consistent.
Signed-off-by: Cornelia Huck <cornelia.huck@de.ibm.com>
Signed-off-by: Rusty Russell <rusty@au1.ibm.com>
git-svn-id: https://tools.oasis-open.org/version-control/svn/virtio@145 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652
Diffstat (limited to 'virtio-ring.h')
-rw-r--r-- | virtio-ring.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/virtio-ring.h b/virtio-ring.h index 7506a97..6d1e2dd 100644 --- a/virtio-ring.h +++ b/virtio-ring.h @@ -41,11 +41,11 @@ /* This means the buffer contains a list of buffer descriptors. */ #define VRING_DESC_F_INDIRECT 4 -/* The Host uses this in used->flags to advise the Guest: don't kick me +/* The device uses this in used->flags to advise the driver: don't kick me * when you add a buffer. It's unreliable, so it's simply an - * optimization. Guest will still kick if it's out of buffers. */ + * optimization. */ #define VRING_USED_F_NO_NOTIFY 1 -/* The Guest uses this in avail->flags to advise the Host: don't +/* The driver uses this in avail->flags to advise the device: don't * interrupt me when you consume a buffer. It's unreliable, so it's * simply an optimization. */ #define VRING_AVAIL_F_NO_INTERRUPT 1 |