From mboxrd@z Thu Jan 1 00:00:00 1970 From: Wei Yongjun Subject: [PATCH] xl: add missing migrate commands to command table Date: Mon, 10 May 2010 15:08:19 +0800 Message-ID: <4BE7B0E3.5030604@cn.fujitsu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=GB2312 Content-Transfer-Encoding: 7bit Return-path: 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 The command migrate and migrate_receive are missing in command table. This patch added them. Signed-off-by: Wei Yongjun diff -r bbf009817ffb -r ac61c50eb031 tools/libxl/xl_cmdtable.c --- a/tools/libxl/xl_cmdtable.c Fri May 07 19:22:28 2010 +0100 +++ b/tools/libxl/xl_cmdtable.c Mon May 10 14:50:48 2010 +0800 @@ -25,7 +25,9 @@ { "unpause", &main_unpause, "unpause a paused domain" }, { "console", &main_console, "attach to domain's console" }, { "save", &main_save, "save a domain state to restore later" }, + { "migrate", &main_migrate, "save a domain state to restore later" }, { "restore", &main_restore, "restore a domain from a saved state" }, + { "migrate-receive", &main_migrate_receive, "restore a domain from a saved state" }, { "cd-insert", &main_cd_insert, "insert a cdrom into a guest's cd drive" }, { "cd-eject", &main_cd_eject, "eject a cdrom from a guest's cd drive" }, { "mem-set", &main_memset, "set the current memory usage for a domain" },