From mboxrd@z Thu Jan 1 00:00:00 1970 From: Christoph Egger Subject: Re: [PATCH v4] hotplug/NetBSD: check type of file to attach from params Date: Wed, 15 Aug 2012 10:42:37 +0200 Message-ID: <502B60FD.2010603@amd.com> References: <1344967799-6646-1-git-send-email-roger.pau@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1344967799-6646-1-git-send-email-roger.pau@citrix.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Roger Pau Monne Cc: Ian Jackson , xen-devel@lists.xen.org List-Id: xen-devel@lists.xenproject.org Fine with me. Christoph On 08/14/12 20:09, Roger Pau Monne wrote: > xend used to set the xenbus backend entry "type" to either "phy" or > "file", but now libxl sets it to "phy" for both file and block device. > We have to manually check for the type of the "param" field in order > to detect if we are trying to attach a file or a block device. > > Cc: Ian Jackson > Signed-off-by: Christoph Egger > Signed-off-by: Roger Pau Monne > --- > Changes since v3: > > * Add $xparams (that contains the path to the disk file) to the error > message. > > Changes since v2: > > * Better error messages. > > * Check if params is empty. > > * Replace xenstore_write with xenstore-write in error function. > > * Add quotation marks to xparams when testing. > > Changes since v1: > > * Check that file is either a block special file or a regular file > and report error otherwise. > --- > tools/hotplug/NetBSD/block | 13 +++++++++++-- > 1 files changed, 11 insertions(+), 2 deletions(-) > > diff --git a/tools/hotplug/NetBSD/block b/tools/hotplug/NetBSD/block > index cf5ff3a..f849fe4 100644 > --- a/tools/hotplug/NetBSD/block > +++ b/tools/hotplug/NetBSD/block > @@ -12,15 +12,24 @@ export PATH > > error() { > echo "$@" >&2 > - xenstore_write $xpath/hotplug-status error > + xenstore-write $xpath/hotplug-status error > exit 1 > } > > > xpath=$1 > xstatus=$2 > -xtype=$(xenstore-read "$xpath/type") > xparams=$(xenstore-read "$xpath/params") > +if [ -b "$xparams" ]; then > + xtype="phy" > +elif [ -f "$xparams" ]; then > + xtype="file" > +elif [ -z "$xparams" ]; then > + error "$xpath/params is empty, unable to attach block device." > +else > + error "$xparams is not a valid file type to use as block device." \ > + "Only block and regular image files accepted." > +fi > > case $xstatus in > 6) -- ---to satisfy European Law for business letters: Advanced Micro Devices GmbH Einsteinring 24, 85689 Dornach b. Muenchen Geschaeftsfuehrer: Alberto Bozzo Sitz: Dornach, Gemeinde Aschheim, Landkreis Muenchen Registergericht Muenchen, HRB Nr. 43632