From mboxrd@z Thu Jan 1 00:00:00 1970 From: Olaf Hering Subject: Re: [PATCH 3 of 3] Teach xenpaging to use the new and non-racy xc_mem_paging_load Date: Thu, 1 Dec 2011 19:00:59 +0100 Message-ID: <20111201180059.GA15876@aepfle.de> References: <90ded86b0a30c34e1644.1322760074@xdev.gridcentric.ca> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Content-Disposition: inline In-Reply-To: <90ded86b0a30c34e1644.1322760074@xdev.gridcentric.ca> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xensource.com Errors-To: xen-devel-bounces@lists.xensource.com To: Andres Lagar-Cavilla Cc: ian.jackson@citrix.com, andres@gridcentric.ca, xen-devel@lists.xensource.com, tim@xen.org, adin@gridcentric.ca List-Id: xen-devel@lists.xenproject.org On Thu, Dec 01, Andres Lagar-Cavilla wrote: > Signed-off-by: Andres Lagar-Cavilla Acked-by: Olaf Hering > diff -r e71f880c0518 -r 90ded86b0a30 tools/xenpaging/xenpaging.c > --- a/tools/xenpaging/xenpaging.c > +++ b/tools/xenpaging/xenpaging.c > @@ -45,6 +45,7 @@ static char *dom_path; > static char watch_token[16]; > static char *filename; > static int interrupted; > +static void *paging_buffer = NULL; Globals need no assignment. Olaf