From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cCIWH-00077Q-9c for qemu-devel@nongnu.org; Wed, 30 Nov 2016 22:58:50 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cCIWE-0004NV-W3 for qemu-devel@nongnu.org; Wed, 30 Nov 2016 22:58:49 -0500 Received: from mail.kernel.org ([198.145.29.136]:58438) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cCIWE-0004NP-QX for qemu-devel@nongnu.org; Wed, 30 Nov 2016 22:58:46 -0500 Date: Thu, 1 Dec 2016 05:58:42 +0200 From: "Michael S. Tsirkin" Message-ID: <1480564455-23933-2-git-send-email-mst@redhat.com> References: <1480564455-23933-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline In-Reply-To: <1480564455-23933-1-git-send-email-mst@redhat.com> Content-Transfer-Encoding: quoted-printable Subject: [Qemu-devel] [PULL 1/5] spec/vhost-user: fix the VHOST_USER prefix List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Stefan Hajnoczi , Wei Wang , =?iso-8859-1?Q?Marc-Andr=E9?= Lureau , Prerna Saxena From: Wei Wang Signed-off-by: Wei Wang Reviewed-by: Marc-Andr=E9 Lureau Reviewed-by: Michael S. Tsirkin Signed-off-by: Michael S. Tsirkin --- docs/specs/vhost-user.txt | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/docs/specs/vhost-user.txt b/docs/specs/vhost-user.txt index 7890d71..d70bd83 100644 --- a/docs/specs/vhost-user.txt +++ b/docs/specs/vhost-user.txt @@ -123,22 +123,22 @@ The communication consists of master sending messag= e requests and slave sending message replies. Most of the requests don't require replies. Here is a l= ist of the ones that do: =20 - * VHOST_GET_FEATURES - * VHOST_GET_PROTOCOL_FEATURES - * VHOST_GET_VRING_BASE - * VHOST_SET_LOG_BASE (if VHOST_USER_PROTOCOL_F_LOG_SHMFD) + * VHOST_USER_GET_FEATURES + * VHOST_USER_GET_PROTOCOL_FEATURES + * VHOST_USER_GET_VRING_BASE + * VHOST_USER_SET_LOG_BASE (if VHOST_USER_PROTOCOL_F_LOG_SHMFD) =20 [ Also see the section on REPLY_ACK protocol extension. ] =20 There are several messages that the master sends with file descriptors p= assed in the ancillary data: =20 - * VHOST_SET_MEM_TABLE - * VHOST_SET_LOG_BASE (if VHOST_USER_PROTOCOL_F_LOG_SHMFD) - * VHOST_SET_LOG_FD - * VHOST_SET_VRING_KICK - * VHOST_SET_VRING_CALL - * VHOST_SET_VRING_ERR + * VHOST_USER_SET_MEM_TABLE + * VHOST_USER_SET_LOG_BASE (if VHOST_USER_PROTOCOL_F_LOG_SHMFD) + * VHOST_USER_SET_LOG_FD + * VHOST_USER_SET_VRING_KICK + * VHOST_USER_SET_VRING_CALL + * VHOST_USER_SET_VRING_ERR =20 If Master is unable to send the full message or receives a wrong reply i= t will close the connection. An optional reconnection mechanism can be implemen= ted. --=20 MST