From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:37911) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0L5i-0002Dh-UU for qemu-devel@nongnu.org; Wed, 22 Feb 2012 17:55:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1S0L5h-0002NI-UZ for qemu-devel@nongnu.org; Wed, 22 Feb 2012 17:55:18 -0500 Received: from mail-qw0-f45.google.com ([209.85.216.45]:45216) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1S0L5h-0002NE-SM for qemu-devel@nongnu.org; Wed, 22 Feb 2012 17:55:17 -0500 Received: by qabg40 with SMTP id g40so5943880qab.4 for ; Wed, 22 Feb 2012 14:55:17 -0800 (PST) MIME-Version: 1.0 In-Reply-To: <1328277186-21665-1-git-send-email-peter.maydell@linaro.org> References: <1328277186-21665-1-git-send-email-peter.maydell@linaro.org> Date: Wed, 22 Feb 2012 22:55:16 +0000 Message-ID: From: Peter Maydell Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Subject: Re: [Qemu-devel] [PATCH 0/2] linux-user: Support prctl PR_GET/SET_NAME List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Riku Voipio , patches@linaro.org Ping? On 3 February 2012 13:53, Peter Maydell wrote: > These patches add support for the prctl options PR_GET_NAME > and PR_SET_NAME. In particular, perl 5.14 will use PR_SET_NAME > if you change the value of $0, which means that adduser will > fail if run under qemu with a sufficiently modern perl. > > Patch one is just indentation cleanup, the meat is patch 2. > > The only other prctl options which take pointer arguments are > all architecture specific, so there didn't seem much point in > adding them (they all work like PR_GET_PDEATHSIG in that they > pass an int* to be filled in); we'd have to actually emulate them > if we cared about them. > > Peter Maydell (2): > =C2=A0linux-user/syscall.c: Fix indentation in prctl handling > =C2=A0linux-user: Add support for prctl PR_GET_NAME and PR_SET_NAME > > =C2=A0linux-user/syscall.c | =C2=A0 53 ++++++++++++++++++++++++++++++++++= ++------------- > =C2=A01 files changed, 39 insertions(+), 14 deletions(-) > >