From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Liu Subject: [PATCH] libxl: use '-name' instead of deprecated '-domain-name' for device model Date: Tue, 7 Jun 2011 14:48:42 +0800 Message-ID: <20110607064842.GA8281@limbo> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Return-path: Content-Disposition: inline List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: xen-devel@lists.xensource.com List-Id: xen-devel@lists.xenproject.org commit 6c744543757f0769e5a8f49ab0d8a01538357fbb Author: Wei Liu Date: Tue Jun 7 14:26:34 2011 +0800 libxl: use '-name' instead of deprecated '-domain-name' for device model. This unifies upstream qemu and Xen's qemu-dm startup option. Signed-off-by: Wei Liu diff --git a/tools/libxl/libxl_dm.c b/tools/libxl/libxl_dm.c index 47a51c8..d53a20d 100644 --- a/tools/libxl/libxl_dm.c +++ b/tools/libxl/libxl_dm.c @@ -95,7 +95,7 @@ static char ** libxl__build_device_model_args_old(libxl__gc *gc, "-d", libxl__sprintf(gc, "%d", info->domid), NULL); if (info->dom_name) - flexarray_vappend(dm_args, "-domain-name", info->dom_name, NULL); + flexarray_vappend(dm_args, "-name", info->dom_name, NULL); if (info->vnc) { char *vncarg;