From mboxrd@z Thu Jan 1 00:00:00 1970 From: Konrad Rzeszutek Wilk Subject: Re: [PATCH for-4.5] libxl: don't use a qemu-ifup script on FreeBSD Date: Fri, 26 Sep 2014 14:07:00 -0400 Message-ID: <20140926180700.GG5102@laptop.dumpdata.com> References: <1411748052-20894-1-git-send-email-roger.pau@citrix.com> Mime-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: quoted-printable Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1XXZvF-0000nZ-Sx for xen-devel@lists.xenproject.org; Fri, 26 Sep 2014 18:07:14 +0000 Content-Disposition: inline In-Reply-To: <1411748052-20894-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: xen-devel@lists.xenproject.org, Wei Liu , Ian Jackson , Ian Campbell , Stefano Stabellini List-Id: xen-devel@lists.xenproject.org On Fri, Sep 26, 2014 at 06:14:12PM +0200, Roger Pau Monne wrote: > FreeBSD doesn't use any qemu-ifup script in order to setup the network, it > is all done on the hotplug script like Linux. > = > Signed-off-by: Roger Pau Monn=E9 > Cc: Ian Jackson > Cc: Stefano Stabellini > Cc: Ian Campbell > Cc: Wei Liu > Cc: Konrad Rzeszutek Wilk > --- > I request a code freeze exception on the basis that this is a bugfix and = it > doesn't change the behaviour on platforms different than FreeBSD. Release-Acked-by: Konrad Rzeszutek Wilk > --- > tools/libxl/libxl_dm.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > = > diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c > index fbc82fd..0018113 100644 > --- a/tools/libxl/libxl_dm.c > +++ b/tools/libxl/libxl_dm.c > @@ -21,7 +21,7 @@ > = > static const char *libxl_tapif_script(libxl__gc *gc) > { > -#ifdef __linux__ > +#if defined(__linux__) || defined(__FreeBSD__) > return libxl__strdup(gc, "no"); > #else > return libxl__sprintf(gc, "%s/qemu-ifup", libxl__xen_script_dir_path= ()); > -- = > 1.9.3 (Apple Git-50) > =