From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:53362) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKwIe-0005qZ-Fu for qemu-devel@nongnu.org; Mon, 31 Oct 2011 14:09:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RKwId-0005iH-8E for qemu-devel@nongnu.org; Mon, 31 Oct 2011 14:09:32 -0400 Received: from e36.co.us.ibm.com ([32.97.110.154]:52290) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RKwId-0005i4-1W for qemu-devel@nongnu.org; Mon, 31 Oct 2011 14:09:31 -0400 Received: from /spool/local by e36.co.us.ibm.com with IBM ESMTP SMTP Gateway: Authorized Use Only! Violators will be prosecuted for from ; Mon, 31 Oct 2011 12:09:26 -0600 Received: from d03av06.boulder.ibm.com (d03av06.boulder.ibm.com [9.17.195.245]) by d03relay01.boulder.ibm.com (8.13.8/8.13.8/NCO v10.0) with ESMTP id p9VI8fvd274076 for ; Mon, 31 Oct 2011 12:08:41 -0600 Received: from d03av06.boulder.ibm.com (loopback [127.0.0.1]) by d03av06.boulder.ibm.com (8.14.4/8.13.1/NCO v10.0 AVout) with ESMTP id p9VI8ftJ022035 for ; Mon, 31 Oct 2011 12:08:41 -0600 Message-ID: <4EAEE427.8010700@us.ibm.com> Date: Mon, 31 Oct 2011 13:08:39 -0500 From: Anthony Liguori MIME-Version: 1.0 References: <1319795562-18091-1-git-send-email-peter.maydell@linaro.org> In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 0/3] TLS abstraction layer for thread-local cpu_single_env on Linux List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Peter Maydell Cc: "Dr. David Alan Gilbert" , patches@linaro.org, Jan Kiszka , qemu-devel@nongnu.org, Paolo Bonzini , =?UTF-8?B?QW5kcmVhcyBGw6RyYmVy?= On 10/31/2011 08:40 AM, Peter Maydell wrote: > An early ping since I have no idea who counts as the submaintainer > for this patchset and it definitely needs to go in for 1.0... I'm in the process of testing them and will apply provided nothing breaks. Regards, Anthony Liguori > > thanks > -- PMM > > On 28 October 2011 10:52, Peter Maydell wrote: >> These patches add enough of the TLS abstraction layer to allow us >> to make cpu_single_env thread-local on Linux systems. This fixes >> the regression described in bug 823902 for the 1.0 release; we >> can add the Win32 and POSIX implementations later. >> >> I haven't included Paolo's "Prepare Windows port for thread-local >> cpu_single_env" patch -- it would be safe to do so but it isn't >> necessary until we actually implement TLS for Win32. >> >> Changes v1->v2: >> * fix Paolo's email address >> * split the darwin-user change out into a separate patch >> * drop the 'tls_' prefix from the cpu_single_env tls var name >> Changes v2->v3: >> * minor rearrangement of copyright notice in comment >> * added a missing Signed-off-by >> * fixed the name of the multiple-include-guard #define >> >> Paolo Bonzini (2): >> darwin-user/main.c: Drop unused cpu_single_env definition >> Make cpu_single_env thread-local >> >> Peter Maydell (1): >> qemu-tls.h: Add abstraction layer for TLS variables >> >> cpu-all.h | 4 +++- >> darwin-user/main.c | 2 -- >> exec.c | 2 +- >> qemu-tls.h | 52 ++++++++++++++++++++++++++++++++++++++++++++++++++++ >> 4 files changed, 56 insertions(+), 4 deletions(-) >> create mode 100644 qemu-tls.h > >