qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Jia Liu <proljc@gmail.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: patches@linaro.org, Riku Voipio <riku.voipio@iki.fi>,
	Alexander Graf <agraf@suse.de>,
	"qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
	Blue Swirl <blauwirbel@gmail.com>,
	Paul Brook <paul@codesourcery.com>,
	Guan Xuetao <gxt@mprc.pku.edu.cn>,
	Aurelien Jarno <aurelien@aurel32.net>
Subject: Re: [Qemu-devel] [PATCH 6/8] linux-user: Enable NPTL for OpenRISC
Date: Sat, 13 Jul 2013 15:40:14 +0800	[thread overview]
Message-ID: <CAJBMM-uN3L84mFB82AC8SR-Q-OM8VJxu-Xbj8R=6Mbam2ZXr6A@mail.gmail.com> (raw)
In-Reply-To: <1373659973-23289-7-git-send-email-peter.maydell@linaro.org>

Hi Peter,

On Sat, Jul 13, 2013 at 4:12 AM, Peter Maydell <peter.maydell@linaro.org> wrote:
> The OpenRISC kernel ignores CLONE_SETTLS in its copy_thread()
> implementation, so a cpu_set_tls() implementation is a no-op.
> cpu_clone_regs() was setting the syscall return value in the
> wrong register -- it is gpr[11], not gpr[2]. With these two
> things fixed, we can compile with NPTL enabled.
>
> Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
> ---
>  configure                        |    1 -
>  linux-user/openrisc/target_cpu.h |    9 +++++++--
>  2 files changed, 7 insertions(+), 3 deletions(-)
>
> diff --git a/configure b/configure
> index 4a241e0..3848c1c 100755
> --- a/configure
> +++ b/configure
> @@ -4229,7 +4229,6 @@ case "$target_name" in
>    or32)
>      TARGET_ARCH=openrisc
>      TARGET_BASE_ARCH=openrisc
> -    target_nptl="no"
>    ;;

I noticed configure have no this line.

>    ppc)
>      gdb_xml_files="power-core.xml power-fpu.xml power-altivec.xml power-spe.xml"
> diff --git a/linux-user/openrisc/target_cpu.h b/linux-user/openrisc/target_cpu.h
> index 501fb81..32a46ac 100644
> --- a/linux-user/openrisc/target_cpu.h
> +++ b/linux-user/openrisc/target_cpu.h
> @@ -25,9 +25,14 @@ static inline void cpu_clone_regs(CPUOpenRISCState *env, target_ulong newsp)
>      if (newsp) {
>          env->gpr[1] = newsp;
>      }
> -    env->gpr[2] = 0;
> +    env->gpr[11] = 0;
>  }
>
> -/* TODO: need to implement cpu_set_tls() */
> +static inline void cpu_set_tls(CPUOpenRISCState *env, target_ulong newtls)
> +{
> +    /* Linux kernel 3.10 does not pay any attention to CLONE_SETTLS
> +     * in copy_thread(), so QEMU need not do so either.
> +     */
> +}

Thanks for fix. It looks good to me.

I need to reply here a Reviewed-by: Jia Liu <proljc@gmail.com> , yes?

>
>  #endif
> --
> 1.7.9.5
>

Regards,
Jia

  reply	other threads:[~2013-07-13  7:40 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-07-12 20:12 [Qemu-devel] [PATCH 0/8] linux-user: enable NPTL on everything but x86 Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 1/8] configure: Flip default of target_nptl Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 2/8] configure: Don't say target_nptl="no" if there is no linux-user target Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 3/8] configure: Enable threading on all ppc and mips linux-user targets Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 4/8] configure: Enable threading for unicore32-linux-user Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 5/8] linux-user: Move includes of target-specific headers to end of qemu.h Peter Maydell
2013-07-13 21:01   ` Richard Henderson
2013-07-12 20:12 ` [Qemu-devel] [PATCH 6/8] linux-user: Enable NPTL for OpenRISC Peter Maydell
2013-07-13  7:40   ` Jia Liu [this message]
2013-07-13  8:04     ` Peter Maydell
2013-07-12 20:12 ` [Qemu-devel] [PATCH 7/8] linux-user: Enable NPTL for SPARC targets Peter Maydell
2013-07-13 21:01   ` Richard Henderson
2013-07-12 20:12 ` [Qemu-devel] [PATCH 8/8] linux-user: Enable NPTL for m68k Peter Maydell
2013-07-13 10:28   ` Laurent Vivier
2013-07-13 11:35     ` Peter Maydell

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='CAJBMM-uN3L84mFB82AC8SR-Q-OM8VJxu-Xbj8R=6Mbam2ZXr6A@mail.gmail.com' \
    --to=proljc@gmail.com \
    --cc=agraf@suse.de \
    --cc=aurelien@aurel32.net \
    --cc=blauwirbel@gmail.com \
    --cc=gxt@mprc.pku.edu.cn \
    --cc=patches@linaro.org \
    --cc=paul@codesourcery.com \
    --cc=peter.maydell@linaro.org \
    --cc=qemu-devel@nongnu.org \
    --cc=riku.voipio@iki.fi \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).