From patchwork Thu Mar 31 11:46:52 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?b?SsO8cmdlbiBHcm/Dnw==?= X-Patchwork-Id: 8711981 Return-Path: X-Original-To: patchwork-xen-devel@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 73BE69F36E for ; Thu, 31 Mar 2016 11:49:41 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 0E6EA20222 for ; Thu, 31 Mar 2016 11:49:39 +0000 (UTC) Received: from lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id 202CF201FA for ; Thu, 31 Mar 2016 11:49:38 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.84_2) (envelope-from ) id 1alb4B-0002Tz-KS; Thu, 31 Mar 2016 11:47:11 +0000 Received: from mail6.bemta6.messagelabs.com ([85.158.143.247]) by lists.xenproject.org with esmtp (Exim 4.84_2) (envelope-from ) id 1alb4A-0002T6-1L for xen-devel@lists.xen.org; Thu, 31 Mar 2016 11:47:10 +0000 Received: from [85.158.143.35] by server-3.bemta-6.messagelabs.com id A7/CC-07120-D3E0DF65; Thu, 31 Mar 2016 11:47:09 +0000 X-Env-Sender: jgross@suse.com X-Msg-Ref: server-11.tower-21.messagelabs.com!1459424828!6791237!1 X-Originating-IP: [195.135.220.15] X-SpamReason: No, hits=0.0 required=7.0 tests= X-StarScan-Received: X-StarScan-Version: 8.11; banners=-,-,- X-VirusChecked: Checked Received: (qmail 2576 invoked from network); 31 Mar 2016 11:47:08 -0000 Received: from mx2.suse.de (HELO mx2.suse.de) (195.135.220.15) by server-11.tower-21.messagelabs.com with DHE-RSA-CAMELLIA256-SHA encrypted SMTP; 31 Mar 2016 11:47:08 -0000 X-Virus-Scanned: by amavisd-new at test-mx.suse.de Received: from relay1.suse.de (charybdis-ext.suse.de [195.135.220.254]) by mx2.suse.de (Postfix) with ESMTP id 17A52ADA9; Thu, 31 Mar 2016 11:47:06 +0000 (UTC) From: Juergen Gross To: xen-devel@lists.xen.org Date: Thu, 31 Mar 2016 13:46:52 +0200 Message-Id: <1459424812-6952-3-git-send-email-jgross@suse.com> X-Mailer: git-send-email 2.6.2 In-Reply-To: <1459424812-6952-1-git-send-email-jgross@suse.com> References: <1459424812-6952-1-git-send-email-jgross@suse.com> Cc: Juergen Gross , ian.jackson@eu.citrix.com, cyliu@suse.com, jbeulich@suse.com Subject: [Xen-devel] [PATCH 2/2] doc: document pvusb Xenstore paths X-BeenThere: xen-devel@lists.xen.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Errors-To: xen-devel-bounces@lists.xen.org Sender: "Xen-devel" X-Spam-Status: No, score=-4.2 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_MED, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP The patches adding Xen tools support for paravirtualized USB devices (pvUSB) omitted documenting the introduced Xenstore paths. Add the paths to docs/misc/xenstore-paths.markdown Signed-off-by: Juergen Gross Reviewed-by: Konrad Rzeszutek Wilk --- docs/misc/xenstore-paths.markdown | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/docs/misc/xenstore-paths.markdown b/docs/misc/xenstore-paths.markdown index ce00afe..087e239 100644 --- a/docs/misc/xenstore-paths.markdown +++ b/docs/misc/xenstore-paths.markdown @@ -270,6 +270,11 @@ A virtual network device frontend. Described by A virtual scsi device frontend. Described by [xen/include/public/io/vscsiif.h][SCSIIF] +#### ~/device/vusb/$DEVID/* [] + +A virtual usb device frontend. Described by +[xen/include/public/io/usbif.h][USBIF] + #### ~/console/* [] The primary PV console device. Described in [console.txt](console.txt) @@ -344,6 +349,11 @@ A virtual network device backend. Described by A PV SCSI backend. +#### ~/backend/vusb/$DOMID/$DEVID/* [] + +A PV USB backend. Described by +[xen/include/public/io/usbif.h][USBIF] + #### ~/backend/console/$DOMID/$DEVID/* [] A PV console backend. Described in [console.txt](console.txt) @@ -536,5 +546,6 @@ domain instead of a daemon in dom0. [NETIF]: http://xenbits.xen.org/docs/unstable/hypercall/x86_64/include,public,io,netif.h.html [SCSIIF]: http://xenbits.xen.org/docs/unstable/hypercall/x86_64/include,public,io,vscsiif.h.html [SI]: http://xenbits.xen.org/docs/unstable/hypercall/x86_64/include,public,xen.h.html#Struct_start_info +[USBIF]: http://xenbits.xen.org/docs/unstable/hypercall/x86_64/include,public,io,usbif.h.html [VCPU]: http://xenbits.xen.org/docs/unstable/hypercall/x86_64/include,public,vcpu.h.html [XSWIRE]: http://xenbits.xen.org/docs/unstable/hypercall/x86_64/include,public,io,xs_wire.h.html