Re: [Qemu-devel] [PATCH] linux-user: fix broken cpu_copy()

2015-03-23 Thread Riku Voipio
On Monday, March 23, 2015 3:02:29 PM EET, Andreas Färber wrote: Am 23.03.2015 um 13:55 schrieb Leon Alrae: New threads always point at the same env which is incorrect and usually leads to a crash. Signed-off-by: Leon Alrae --- Hi, ... Clearly my fault and might explain some breakage in our

Re: [Qemu-devel] [PATCH] linux-user: fix broken cpu_copy()

2015-03-23 Thread Andreas Färber
Am 23.03.2015 um 14:02 schrieb Andreas Färber: > Am 23.03.2015 um 13:55 schrieb Leon Alrae: >> New threads always point at the same env which is incorrect and usually leads Please remember to break after 76 chars. (Look at `git log` output.) Andreas >> to a crash. >> >> Signed-off-by: Leon Alrae

Re: [Qemu-devel] [PATCH] linux-user: fix broken cpu_copy()

2015-03-23 Thread Andreas Färber
Am 23.03.2015 um 13:55 schrieb Leon Alrae: > New threads always point at the same env which is incorrect and usually leads > to a crash. > > Signed-off-by: Leon Alrae > --- > Hi, > > This patch fixes the bug introduced in: > > commit 2994fd96d986578a342f2342501b4ad30f6d0a85 > Author: Eduardo Ha

[Qemu-devel] [PATCH] linux-user: fix broken cpu_copy()

2015-03-23 Thread Leon Alrae
New threads always point at the same env which is incorrect and usually leads to a crash. Signed-off-by: Leon Alrae --- Hi, This patch fixes the bug introduced in: commit 2994fd96d986578a342f2342501b4ad30f6d0a85 Author: Eduardo Habkost cpu: Make cpu_init() return QOM CPUState object Rega