From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:55724) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VOtcZ-0006EZ-4a for qemu-devel@nongnu.org; Wed, 25 Sep 2013 14:15:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VOtcL-0004B0-9N for qemu-devel@nongnu.org; Wed, 25 Sep 2013 14:15:30 -0400 Received: from mail-ob0-x233.google.com ([2607:f8b0:4003:c01::233]:43048) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VOtcL-0004Ar-4d for qemu-devel@nongnu.org; Wed, 25 Sep 2013 14:15:17 -0400 Received: by mail-ob0-f179.google.com with SMTP id wn1so80216obc.10 for ; Wed, 25 Sep 2013 11:15:16 -0700 (PDT) Sender: Richard Henderson Message-ID: <52432830.5050804@twiddle.net> Date: Wed, 25 Sep 2013 11:15:12 -0700 From: Richard Henderson MIME-Version: 1.0 References: <1378850858-10799-1-git-send-email-rth@twiddle.net> In-Reply-To: <1378850858-10799-1-git-send-email-rth@twiddle.net> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH v2 0/6] Improve getauxval support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aurelien@aurel32.net Ping. r~ On 09/10/2013 03:07 PM, Richard Henderson wrote: > Changes from v1: > * Fix silly error in patch 1. > > Tested on arm with and without CONFIG_GETAUXVAL commented out > in config-host.mak. Tested on ppc only with CONFIG_GETAUXVAL. > > > 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: Provide fallback hwcap and platform for powerpc > util: Use qemu_getauxval in linux qemu_cache_utils_init > > include/elf.h | 70 ++++++++++++++++++++++ > include/qemu/cache-utils.h | 4 +- > include/qemu/osdep.h | 20 +++++++ > linux-user/main.c | 3 +- > tcg/arm/tcg-target.c | 15 ++--- > tcg/ppc64/tcg-target.c | 11 +--- > tcg/s390/tcg-target.c | 95 ++++-------------------------- > util/Makefile.objs | 1 + > util/cache-utils.c | 51 +++++++--------- > util/getauxval.c | 143 +++++++++++++++++++++++++++++++++++++++++++++ > vl.c | 3 +- > 11 files changed, 280 insertions(+), 136 deletions(-) > create mode 100644 util/getauxval.c >