From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Williamson Subject: Re: ANNOUNCE: Xen 3.1.1 First Release Candidate Date: Thu, 20 Sep 2007 11:10:02 -0600 Message-ID: <1190308202.4188.151.camel@bling> References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-owJGn3uO++RziCqYC5zb" 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: Keir Fraser Cc: xen-devel , Kouya SHIMURA , xen-ia64-devel List-Id: xen-devel@lists.xenproject.org --=-owJGn3uO++RziCqYC5zb Content-Type: text/plain Content-Transfer-Encoding: 7bit On Thu, 2007-09-20 at 10:37 +0100, Keir Fraser wrote: > Folks, > > The patch queue for 3.1.1 has been pushed into > http://xenbits.xensource.com/xen-3.1-testing.hg, and tagged as -rc1. Please > try it out and let us know of any problems (patches gladly accepted!). > > -- Keir > > PS. The patch queue (xen-3.1-testing.pq.hg) is no longer being used. Kouya, there seems to be some build breakages around the changesets you submitted. 15311 includes a chunk from the windows optimization patch and doesn't build ('ret' undefined - adding a declaration for it doesn't seem like the proper solution since the function returns void in 3.1.1). 15655 adds calls to acpi_table_disable(), but acpi_table_disable() doesn't exist. Reverting those and adding the patch below I can make it build and boot. Do you already have patches to fill these holes? Keir, the patch below is a trivial build warning fix, please include it in the tree. Thanks, Alex -- Alex Williamson HP Open Source & Linux Org. --=-owJGn3uO++RziCqYC5zb Content-Disposition: attachment; filename=15124-2d26b66901d2 Content-Type: text/plain; name=15124-2d26b66901d2; charset=UTF-8 Content-Transfer-Encoding: 7bit # HG changeset patch # User Alex Williamson # Date 1179337039 21600 # Node ID 2d26b66901d20f3a945b7fa5687d8926b0e7a417 # Parent 7caa6c1cabc8362e137da3415c78918a22f8eb6c [IA64] Fix trivial compiler warning Signed-off-by: Alex Williamson xen-unstable changeset: 15124:2d26b66901d20f3a945b7fa5687d8926b0e7a417 xen-unstable date: Wed May 16 11:37:19 2007 -0600 diff -r 7caa6c1cabc8 -r 2d26b66901d2 xen/arch/ia64/vmx/vmmu.c --- a/xen/arch/ia64/vmx/vmmu.c Wed May 16 10:59:01 2007 -0600 +++ b/xen/arch/ia64/vmx/vmmu.c Wed May 16 11:37:19 2007 -0600 @@ -562,8 +562,9 @@ static void ptc_ga_remote_func (void *va u64 oldrid, moldrid, mpta, oldpsbits, vadr, flags; struct ptc_ga_args *args = (struct ptc_ga_args *)varg; VCPU *v = args->vcpu; + int cpu = v->processor; + vadr = args->vadr; - int cpu = v->processor; /* Try again if VCPU has migrated. */ if (cpu != current->processor) --=-owJGn3uO++RziCqYC5zb Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Content-Disposition: inline _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel --=-owJGn3uO++RziCqYC5zb--