Re: [Qemu-devel] [PATCH 1/2] target/nios2: Fix bug in semihosted exit handling

2019-08-21 Thread Sandra Loosemore
On 8/21/19 9:41 AM, Laurent Vivier wrote: Could add this information in the commit messages of each patch? Sure. V2 of the patches coming up shortly. -Sandra

Re: [Qemu-devel] [PATCH 1/2] target/nios2: Fix bug in semihosted exit handling

2019-08-21 Thread Laurent Vivier
Le 21/08/2019 à 17:27, Sandra Loosemore a écrit : > On 8/21/19 8:41 AM, Laurent Vivier wrote: >> Le 21/08/2019 à 16:21, Sandra Loosemore a écrit : >>> This patch fixes a bug that caused semihosted exit to always return >>> status 0; it was incorrectly using the value of register R_ARG0 (which >>>

Re: [Qemu-devel] [PATCH 1/2] target/nios2: Fix bug in semihosted exit handling

2019-08-21 Thread Sandra Loosemore
On 8/21/19 8:41 AM, Laurent Vivier wrote: Le 21/08/2019 à 16:21, Sandra Loosemore a écrit : This patch fixes a bug that caused semihosted exit to always return status 0; it was incorrectly using the value of register R_ARG0 (which contains the HOSTED_EXIT request number) instead of register

Re: [Qemu-devel] [PATCH 1/2] target/nios2: Fix bug in semihosted exit handling

2019-08-21 Thread Laurent Vivier
Le 21/08/2019 à 16:21, Sandra Loosemore a écrit : > This patch fixes a bug that caused semihosted exit to always return > status 0; it was incorrectly using the value of register R_ARG0 (which > contains the HOSTED_EXIT request number) instead of register R_ARG1. > > Signed-off-by: Sandra

Re: [Qemu-devel] [PATCH 1/2] target/nios2: Fix bug in semihosted exit handling

2019-08-21 Thread Philippe Mathieu-Daudé
On 8/21/19 4:21 PM, Sandra Loosemore wrote: > This patch fixes a bug that caused semihosted exit to always return > status 0; it was incorrectly using the value of register R_ARG0 (which > contains the HOSTED_EXIT request number) instead of register R_ARG1. > Fixes: 413a99a92c1 > Signed-off-by:

[Qemu-devel] [PATCH 1/2] target/nios2: Fix bug in semihosted exit handling

2019-08-21 Thread Sandra Loosemore
This patch fixes a bug that caused semihosted exit to always return status 0; it was incorrectly using the value of register R_ARG0 (which contains the HOSTED_EXIT request number) instead of register R_ARG1. Signed-off-by: Sandra Loosemore --- target/nios2/nios2-semi.c | 4 ++-- 1 file changed,