From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52494) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VaqeW-0001eZ-GW for qemu-devel@nongnu.org; Mon, 28 Oct 2013 13:31:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VaqeN-0007m8-Kg for qemu-devel@nongnu.org; Mon, 28 Oct 2013 13:30:56 -0400 Received: from mail-yh0-x230.google.com ([2607:f8b0:4002:c01::230]:59988) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VaqeN-0007m0-G5 for qemu-devel@nongnu.org; Mon, 28 Oct 2013 13:30:47 -0400 Received: by mail-yh0-f48.google.com with SMTP id f64so2876649yha.21 for ; Mon, 28 Oct 2013 10:30:46 -0700 (PDT) Sender: Richard Henderson Message-ID: <526E9F40.1020000@twiddle.net> Date: Mon, 28 Oct 2013 10:30:40 -0700 From: Richard Henderson MIME-Version: 1.0 References: <1382023781-26323-1-git-send-email-rth@twiddle.net> In-Reply-To: <1382023781-26323-1-git-send-email-rth@twiddle.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v3 0/6] Improve getauxval support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: peter.maydell@linaro.org, Anthony Liguori Ping. r~ On 10/17/2013 08:29 AM, Richard Henderson wrote: > Changes from v2: > * Rebase for trivial conflicts > * Fix codingstyle errors > * Drop the static fallback code > * Use getauxval for AT_EXECFD > > > r~ > > > Richard Henderson (6): > osdep: Create qemu_getauxval and qemu_init_auxval > tcg-ppc64: Use qemu_getauxval > tcg-arm: Use qemu_getauxval > tcg-s390: Use qemu_getauxval in query_facilities > util: Use qemu_getauxval in linux qemu_cache_utils_init > linux-user: Use qemu_getauxval for AT_EXECFD > > include/elf.h | 73 +++++++++++++++++++++++++++++++++++ > include/qemu/cache-utils.h | 4 +- > include/qemu/osdep.h | 25 ++++++++++++ > linux-user/main.c | 35 ++++------------- > tcg/arm/tcg-target.c | 14 +++---- > tcg/ppc64/tcg-target.c | 11 +----- > tcg/s390/tcg-target.c | 95 ++++++---------------------------------------- > util/Makefile.objs | 1 + > util/cache-utils.c | 51 ++++++++++--------------- > util/getauxval.c | 74 ++++++++++++++++++++++++++++++++++++ > vl.c | 3 +- > 11 files changed, 224 insertions(+), 162 deletions(-) > create mode 100644 util/getauxval.c >