From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:46071) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLdAb-0001R5-Sp for qemu-devel@nongnu.org; Wed, 02 Nov 2011 11:56:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RLdAa-0000QC-K9 for qemu-devel@nongnu.org; Wed, 02 Nov 2011 11:56:05 -0400 Received: from mx1.redhat.com ([209.132.183.28]:41538) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RLdAa-0000Q1-97 for qemu-devel@nongnu.org; Wed, 02 Nov 2011 11:56:04 -0400 From: Markus Armbruster References: <87aa8ehlih.fsf@linux.vnet.ibm.com> <4EB13AA8.5080704@us.ibm.com> Date: Wed, 02 Nov 2011 16:55:58 +0100 In-Reply-To: <4EB13AA8.5080704@us.ibm.com> (Anthony Liguori's message of "Wed, 02 Nov 2011 07:42:16 -0500") Message-ID: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Subject: Re: [Qemu-devel] [PULL] Virtfs update List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Anthony Liguori Cc: "Aneesh Kumar K.V" , QEMU Developers Anthony Liguori writes: > On 11/02/2011 05:22 AM, Aneesh Kumar K.V wrote: >> >> The following changes since commit e072ea2fd8fdceef64159b9596d3c15ce01bea91: >> >> Bump version to 1.0-rc0 (2011-11-01 19:37:01 -0500) >> >> are available in the git repository at: >> git://repo.or.cz/qemu/v9fs.git for-upstream-8 >> >> Aneesh Kumar K.V (1): >> hw/9pfs: Move opt validation to FsDriver callback >> >> Stefan Hajnoczi (1): >> hw/9pfs: use g_vasprintf() instead of rolling our own > > Neither of these look like bug fixes to me. The second one is actually a minor portability fix: one of the replaced functions uses va_copy() without a matching va_end(). I posted the obvious fix "Subject: [PATCH 2/2] hw/9pfs: Supply missing va_end()", but Stefan's fix is better.