From mboxrd@z Thu Jan 1 00:00:00 1970 From: Anthony Liguori Subject: Re: [Xen-changelog] Eliminate uninitialised variables warnings. Date: Tue, 31 Jan 2006 09:53:38 -0600 Message-ID: <43DF8802.2040402@us.ibm.com> References: Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: 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 Cc: Ian Pratt List-Id: xen-devel@lists.xenproject.org Hi, I saw 3.0.1 was tagged right before this changeset. Can you make sure that 3.0.1 includes this changeset? Without, Xen doesn't build at all on gcc 4.0.2 because of -Werror. Regards, Anthony Liguori Xen patchbot -3.0-testing wrote: ># HG changeset patch ># User kaf24@firebug.cl.cam.ac.uk ># Node ID 3f835fa609bb5d41be0c41f0694b405247e496a6 ># Parent 78d6d016ffc0e428f3782a9469a911a56fa53a23 >Eliminate uninitialised variables warnings. > >Signed-off-by: Leendert Van Doorn > >diff -r 78d6d016ffc0 -r 3f835fa609bb xen/include/xen/domain_page.h >--- a/xen/include/xen/domain_page.h Tue Jan 31 00:04:13 2006 >+++ b/xen/include/xen/domain_page.h Tue Jan 31 09:54:40 2006 >@@ -48,6 +48,8 @@ > { > ASSERT(cache != NULL); > cache->flags = 0; >+ cache->pfn = 0; >+ cache->va = NULL; > } > > static inline void * > >_______________________________________________ >Xen-changelog mailing list >Xen-changelog@lists.xensource.com >http://lists.xensource.com/xen-changelog > > >