From f37b614cd3760036d9302f1e9bf985ec19892586 Mon Sep 17 00:00:00 2001 From: rusty Date: Mon, 2 Dec 2013 12:30:30 +0000 Subject: 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 Signed-off-by: Rusty Russell git-svn-id: https://tools.oasis-open.org/version-control/svn/virtio@145 0c8fb4dd-22a2-4bb5-bc14-6c75a5f43652 --- virtio-ring.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'virtio-ring.h') 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 -- cgit v1.2.3