From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Liu Subject: Re: [PATCH v4 4/5] vscsiif.h: add some notes about xenstore layout Date: Tue, 5 May 2015 14:59:32 +0100 Message-ID: <20150505135931.GF1455@zion.uk.xensource.com> References: <1429259460-30491-1-git-send-email-olaf@aepfle.de> <1429259460-30491-5-git-send-email-olaf@aepfle.de> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <1429259460-30491-5-git-send-email-olaf@aepfle.de> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Olaf Hering Cc: Keir Fraser , Ian Campbell , Tim Deegan , Ian Jackson , xen-devel@lists.xen.org, Jan Beulich , wei.liu2@citrix.com List-Id: xen-devel@lists.xenproject.org On Fri, Apr 17, 2015 at 08:30:59AM +0000, Olaf Hering wrote: > Signed-off-by: Olaf Hering > Cc: Ian Campbell > Cc: Ian Jackson > Cc: Jan Beulich > Cc: Keir Fraser > Cc: Tim Deegan > --- > xen/include/public/io/vscsiif.h | 68 +++++++++++++++++++++++++++++++++++++++++ > 1 file changed, 68 insertions(+) > > diff --git a/xen/include/public/io/vscsiif.h b/xen/include/public/io/vscsiif.h > index e8e38a9..6aaba22 100644 > --- a/xen/include/public/io/vscsiif.h > +++ b/xen/include/public/io/vscsiif.h > @@ -104,6 +104,74 @@ > * response structures. > */ > > +/* > + * Xenstore format in practice > + * =========================== > + * > + * The backend driver uses a single_host:many_devices notation to manage domU > + * devices. Everything is stored in /local/domain/0/backend/vscsi/. The Don't assume backend domid to be 0. Wei.