From patchwork Tue Feb 23 11:26:57 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Olaf Hering X-Patchwork-Id: 8390981 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 4CC179F372 for ; Tue, 23 Feb 2016 11:29:59 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 6F35320270 for ; Tue, 23 Feb 2016 11:29:58 +0000 (UTC) Received: from lists.xen.org (lists.xenproject.org [50.57.142.19]) (using TLSv1 with cipher AES256-SHA (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id A0AA220303 for ; Tue, 23 Feb 2016 11:29:57 +0000 (UTC) Received: from localhost ([127.0.0.1] helo=lists.xen.org) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aYB7g-000223-Fd; Tue, 23 Feb 2016 11:27:20 +0000 Received: from mail6.bemta14.messagelabs.com ([193.109.254.103]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1aYB7e-00021L-V2 for xen-devel@lists.xen.org; Tue, 23 Feb 2016 11:27:19 +0000 Received: from [193.109.254.147] by server-2.bemta-14.messagelabs.com id 4C/66-12889-6124CC65; Tue, 23 Feb 2016 11:27:18 +0000 X-Env-Sender: olaf@aepfle.de X-Msg-Ref: server-10.tower-27.messagelabs.com!1456226837!26021783!1 X-Originating-IP: [81.169.146.219] X-SpamReason: No, hits=0.0 required=7.0 tests= X-StarScan-Received: X-StarScan-Version: 7.35.1; banners=-,-,- X-VirusChecked: Checked Received: (qmail 889 invoked from network); 23 Feb 2016 11:27:17 -0000 Received: from mo4-p00-ob.smtp.rzone.de (HELO mo4-p00-ob.smtp.rzone.de) (81.169.146.219) by server-10.tower-27.messagelabs.com with DHE-RSA-AES256-GCM-SHA384 encrypted SMTP; 23 Feb 2016 11:27:17 -0000 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; t=1456226837; l=992; s=domk; d=aepfle.de; h=Content-Transfer-Encoding:MIME-Version:References:In-Reply-To:Date: Subject:Cc:To:From; bh=V3Pb1yNiMYDboz6y4itwRnH5/CqlDDdNQGxazhlg3TQ=; b=UWqBAciWqbx4pBHM6x7yJIb2WAUGslFteSwIjKDXsofTtaSgG0ezikZlOiwL0zoF0tM Z0vUq84mBLNJHMIqjTH0b0maZ0+HgNy7GXh+mXgMLVUvHBdfRe6CgvqdD6l7XPd5ezs+X IO4KZR+0+D2pidmgq666daRMBjFWO+LbdpU= X-RZG-AUTH: :P2EQZWCpfu+qG7CngxMFH1J+yackYocTD1iAi8x+OWi/zfN1cLnDYUgqTAeBk4W9EFtcJhQlEigjKrHZjO+/XyMB8ZtmWA== X-RZG-CLASS-ID: mo00 Received: from probook ([2001:a62:113c:45ff:2082:fb69:3bad:17fe]) by smtp.strato.de (RZmta 37.19 AUTH) with ESMTPSA id u07af6s1NBRAAQi (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (curve secp521r1 with 521 ECDH bits, eq. 15360 bits RSA)) (Client did not present a certificate); Tue, 23 Feb 2016 12:27:10 +0100 (CET) Received: by probook (Postfix, from userid 1000) id 3261B50603; Tue, 23 Feb 2016 12:27:08 +0100 (CET) From: Olaf Hering To: xen-devel@lists.xen.org Date: Tue, 23 Feb 2016 11:26:57 +0000 Message-Id: <1456226821-24545-3-git-send-email-olaf@aepfle.de> X-Mailer: git-send-email 2.7.1 In-Reply-To: <1456226821-24545-1-git-send-email-olaf@aepfle.de> References: <1456226821-24545-1-git-send-email-olaf@aepfle.de> MIME-Version: 1.0 Cc: Olaf Hering , Keir Fraser , Ian Campbell , Tim Deegan , Ian Jackson , Jan Beulich Subject: [Xen-devel] [PATCH v9 2/6] vscsiif.h: fix WWN notation for p-dev property X-BeenThere: xen-devel@lists.xen.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org X-Spam-Status: No, score=-4.1 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_MED, T_DKIM_INVALID, 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 pvops kernel expects either "naa.WWN:LUN" or "h:c:t:l" in the p-dev property. Add the missing :LUN part to the comment. Signed-off-by: Olaf Hering Acked-by: Ian Campbell Acked-by: Wei Liu Cc: Ian Campbell Cc: Ian Jackson Cc: Jan Beulich Cc: Keir Fraser Cc: Tim Deegan --- xen/include/public/io/vscsiif.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/include/public/io/vscsiif.h b/xen/include/public/io/vscsiif.h index 7a1db05..e8e38a9 100644 --- a/xen/include/public/io/vscsiif.h +++ b/xen/include/public/io/vscsiif.h @@ -60,7 +60,7 @@ * * A string specifying the backend device: either a 4-tuple "h:c:t:l" * (host, controller, target, lun, all integers), or a WWN (e.g. - * "naa.60014054ac780582"). + * "naa.60014054ac780582:0"). * * v-dev * Values: string