From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1NaDx3-0003qD-GZ for qemu-devel@nongnu.org; Wed, 27 Jan 2010 14:53:21 -0500 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1NaDwy-0003mS-J7 for qemu-devel@nongnu.org; Wed, 27 Jan 2010 14:53:20 -0500 Received: from [199.232.76.173] (port=36131 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1NaDwy-0003mO-GC for qemu-devel@nongnu.org; Wed, 27 Jan 2010 14:53:16 -0500 Received: from mail-iw0-f173.google.com ([209.85.223.173]:40264) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1NaDwy-0000t5-2H for qemu-devel@nongnu.org; Wed, 27 Jan 2010 14:53:16 -0500 Received: by iwn3 with SMTP id 3so1880662iwn.19 for ; Wed, 27 Jan 2010 11:53:14 -0800 (PST) Message-ID: <4B6099A3.9090204@codemonkey.ws> Date: Wed, 27 Jan 2010 13:53:07 -0600 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCHv2-repost 1/3] qemu: memory notifiers References: <20100125142912.GB11154@redhat.com> <4B5F75BF.1050005@codemonkey.ws> <20100127194715.GA4338@redhat.com> In-Reply-To: <20100127194715.GA4338@redhat.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: "Michael S. Tsirkin" Cc: qemu-devel@nongnu.org, gleb@redhat.com, avi@redhat.com On 01/27/2010 01:47 PM, Michael S. Tsirkin wrote: > Ugh, this will fix it. Want me to repost the series? Please do. Regards, Anthony Liguori > diff --git a/exec.c b/exec.c > index 63caca0..2e7434e 100644 > --- a/exec.c > +++ b/exec.c > @@ -1623,6 +1623,7 @@ const CPULogItem cpu_log_items[] = { > { 0, NULL, NULL }, > }; > > +#ifndef CONFIG_USER_ONLY > static QLIST_HEAD(memory_client_list, CPUPhysMemoryClient) memory_client_list > = QLIST_HEAD_INITIALIZER(memory_client_list); > > @@ -1715,6 +1716,7 @@ void cpu_unregister_phys_memory_client(CPUPhysMemoryClient *client) > { > QLIST_REMOVE(client, list); > } > +#endif > > static int cmp1(const char *s1, int n, const char *s2) > { >