From mboxrd@z Thu Jan 1 00:00:00 1970 From: Samuel Thibault Subject: [PATCH] ioemu-stubdom: fix initialization of vm_change_state_head (do not apply to qemu-xen tree) Date: Wed, 6 Aug 2008 11:32:25 +0100 Message-ID: <20080806103225.GD4448@implementation.uk.xensource.com> 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 ioemu-stubdom: fix initialization of vm_change_state_head That is actually a no-op since it just sets it to NULL again, but makes sense. diff -r e3ad36beee7a tools/ioemu/vl.c --- a/tools/ioemu/vl.c Tue Aug 05 17:42:02 2008 +0100 +++ b/tools/ioemu/vl.c Wed Aug 06 11:10:29 2008 +0100 @@ -7104,8 +7104,10 @@ int main(int argc, char **argv) sigaddset(&set, aio_sig_num); sigprocmask(SIG_BLOCK, &set, NULL); } +#endif QEMU_LIST_INIT (&vm_change_state_head); +#ifndef CONFIG_STUBDOM #ifndef _WIN32 { struct sigaction act;