diff options
| author | Peter Maydell | 2013-07-16 19:44:53 +0200 |
|---|---|---|
| committer | Riku Voipio | 2013-07-22 20:54:12 +0200 |
| commit | 442a59c8ddc55f327ec0219d810fe4580177716a (patch) | |
| tree | f681ea014c519954adf038c0f950160df473df7e /linux-user | |
| parent | linux-user: Move includes of target-specific headers to end of qemu.h (diff) | |
| download | qemu-442a59c8ddc55f327ec0219d810fe4580177716a.tar.gz qemu-442a59c8ddc55f327ec0219d810fe4580177716a.tar.xz qemu-442a59c8ddc55f327ec0219d810fe4580177716a.zip | |
linux-user: Enable NPTL for OpenRISC
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>
Reviewed-by: Jia Liu <proljc@gmail.com>
Signed-off-by: Riku Voipio <riku.voipio@linaro.org>
Diffstat (limited to 'linux-user')
| -rw-r--r-- | linux-user/openrisc/target_cpu.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/linux-user/openrisc/target_cpu.h b/linux-user/openrisc/target_cpu.h index 501fb81162..32a46ac840 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. + */ +} #endif |
