From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:52365) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VR7RQ-0004nS-V6 for qemu-devel@nongnu.org; Tue, 01 Oct 2013 17:25:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1VR7RJ-0004GD-Jv for qemu-devel@nongnu.org; Tue, 01 Oct 2013 17:25:12 -0400 Received: from mail-vb0-f45.google.com ([209.85.212.45]:44591) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1VR7RJ-0004EE-Gn for qemu-devel@nongnu.org; Tue, 01 Oct 2013 17:25:05 -0400 Received: by mail-vb0-f45.google.com with SMTP id e15so5329716vbg.32 for ; Tue, 01 Oct 2013 14:25:04 -0700 (PDT) Sender: Richard Henderson Message-ID: <524B3DAC.9080908@twiddle.net> Date: Tue, 01 Oct 2013 14:25:00 -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 >