From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:59946) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1IR4-00074p-PY for qemu-devel@nongnu.org; Sun, 29 Jun 2014 12:58:44 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1X1IQx-0003Fn-St for qemu-devel@nongnu.org; Sun, 29 Jun 2014 12:58:38 -0400 Received: from mx1.redhat.com ([209.132.183.28]:8242) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1X1IQx-0003Fb-LU for qemu-devel@nongnu.org; Sun, 29 Jun 2014 12:58:31 -0400 Date: Sun, 29 Jun 2014 19:58:53 +0300 From: "Michael S. Tsirkin" Message-ID: <1404060115-27410-15-git-send-email-mst@redhat.com> References: <1404060115-27410-1-git-send-email-mst@redhat.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1404060115-27410-1-git-send-email-mst@redhat.com> Subject: [Qemu-devel] [PULL 14/37] vhost-user: typo fixups List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Peter Maydell , Nikolay Nikolaev , Damjan Marion , Anthony Liguori , Antonios Motakis Fix typo in field name. Strip two consequitive empty lines. Signed-off-by: Michael S. Tsirkin --- docs/specs/vhost-user.txt | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/specs/vhost-user.txt b/docs/specs/vhost-user.txt index 6abb697..650bb18 100644 --- a/docs/specs/vhost-user.txt +++ b/docs/specs/vhost-user.txt @@ -85,8 +85,7 @@ Depending on the request type, payload can be: Guest address: a 64-bit guest address of the region Size: a 64-bit size User address: a 64-bit user address - mmmap offset: 64-bit offset where region starts in the mapped memory - + mmap offset: 64-bit offset where region starts in the mapped memory In QEMU the vhost-user message is implemented with the following struct: -- MST