* [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa'
@ 2024-02-29 18:06 Christoph Müllner
2024-02-29 18:24 ` Richard Henderson
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Christoph Müllner @ 2024-02-29 18:06 UTC (permalink / raw)
To: qemu-riscv, qemu-devel, Alistair Francis, Bin Meng,
Philipp Tomsich, Palmer Dabbelt, Richard Henderson,
Daniel Henrique Barboza, Andrew Jones
Cc: Christoph Müllner, Weiwei Li, Liu Zhiwei
Running test-fcvtmod triggers the following deprecation warning:
warning: CPU property 'Zfa' is deprecated. Please use 'zfa' instead
Let's fix that.
Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
---
tests/tcg/riscv64/Makefile.target | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/tests/tcg/riscv64/Makefile.target b/tests/tcg/riscv64/Makefile.target
index a7e390c384..4da5b9a3b3 100644
--- a/tests/tcg/riscv64/Makefile.target
+++ b/tests/tcg/riscv64/Makefile.target
@@ -17,4 +17,4 @@ run-test-aes: QEMU_OPTS += -cpu rv64,zk=on
TESTS += test-fcvtmod
test-fcvtmod: CFLAGS += -march=rv64imafdc
test-fcvtmod: LDFLAGS += -static
-run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,Zfa=true
+run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,zfa=true
--
2.43.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa'
2024-02-29 18:06 [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa' Christoph Müllner
@ 2024-02-29 18:24 ` Richard Henderson
2024-02-29 19:58 ` Daniel Henrique Barboza
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Richard Henderson @ 2024-02-29 18:24 UTC (permalink / raw)
To: Christoph Müllner, qemu-riscv, qemu-devel, Alistair Francis,
Bin Meng, Philipp Tomsich, Palmer Dabbelt,
Daniel Henrique Barboza, Andrew Jones
Cc: Weiwei Li, Liu Zhiwei
On 2/29/24 08:06, Christoph Müllner wrote:
> Running test-fcvtmod triggers the following deprecation warning:
> warning: CPU property 'Zfa' is deprecated. Please use 'zfa' instead
> Let's fix that.
>
> Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
> ---
> tests/tcg/riscv64/Makefile.target | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/tcg/riscv64/Makefile.target b/tests/tcg/riscv64/Makefile.target
> index a7e390c384..4da5b9a3b3 100644
> --- a/tests/tcg/riscv64/Makefile.target
> +++ b/tests/tcg/riscv64/Makefile.target
> @@ -17,4 +17,4 @@ run-test-aes: QEMU_OPTS += -cpu rv64,zk=on
> TESTS += test-fcvtmod
> test-fcvtmod: CFLAGS += -march=rv64imafdc
> test-fcvtmod: LDFLAGS += -static
> -run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,Zfa=true
> +run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,zfa=true
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
I saw this myself the other day and didn't get around to sending a patch.
r~
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa'
2024-02-29 18:06 [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa' Christoph Müllner
2024-02-29 18:24 ` Richard Henderson
@ 2024-02-29 19:58 ` Daniel Henrique Barboza
2024-03-06 1:47 ` Alistair Francis
2024-03-06 1:57 ` Alistair Francis
3 siblings, 0 replies; 5+ messages in thread
From: Daniel Henrique Barboza @ 2024-02-29 19:58 UTC (permalink / raw)
To: Christoph Müllner, qemu-riscv, qemu-devel, Alistair Francis,
Bin Meng, Philipp Tomsich, Palmer Dabbelt, Richard Henderson,
Andrew Jones
Cc: Weiwei Li, Liu Zhiwei
On 2/29/24 15:06, Christoph Müllner wrote:
> Running test-fcvtmod triggers the following deprecation warning:
> warning: CPU property 'Zfa' is deprecated. Please use 'zfa' instead
> Let's fix that.
>
> Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
> ---
Reviewed-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
> tests/tcg/riscv64/Makefile.target | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/tcg/riscv64/Makefile.target b/tests/tcg/riscv64/Makefile.target
> index a7e390c384..4da5b9a3b3 100644
> --- a/tests/tcg/riscv64/Makefile.target
> +++ b/tests/tcg/riscv64/Makefile.target
> @@ -17,4 +17,4 @@ run-test-aes: QEMU_OPTS += -cpu rv64,zk=on
> TESTS += test-fcvtmod
> test-fcvtmod: CFLAGS += -march=rv64imafdc
> test-fcvtmod: LDFLAGS += -static
> -run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,Zfa=true
> +run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,zfa=true
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa'
2024-02-29 18:06 [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa' Christoph Müllner
2024-02-29 18:24 ` Richard Henderson
2024-02-29 19:58 ` Daniel Henrique Barboza
@ 2024-03-06 1:47 ` Alistair Francis
2024-03-06 1:57 ` Alistair Francis
3 siblings, 0 replies; 5+ messages in thread
From: Alistair Francis @ 2024-03-06 1:47 UTC (permalink / raw)
To: Christoph Müllner
Cc: qemu-riscv, qemu-devel, Alistair Francis, Bin Meng,
Philipp Tomsich, Palmer Dabbelt, Richard Henderson,
Daniel Henrique Barboza, Andrew Jones, Weiwei Li, Liu Zhiwei
On Fri, Mar 1, 2024 at 4:07 AM Christoph Müllner
<christoph.muellner@vrull.eu> wrote:
>
> Running test-fcvtmod triggers the following deprecation warning:
> warning: CPU property 'Zfa' is deprecated. Please use 'zfa' instead
> Let's fix that.
>
> Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Alistair
> ---
> tests/tcg/riscv64/Makefile.target | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/tcg/riscv64/Makefile.target b/tests/tcg/riscv64/Makefile.target
> index a7e390c384..4da5b9a3b3 100644
> --- a/tests/tcg/riscv64/Makefile.target
> +++ b/tests/tcg/riscv64/Makefile.target
> @@ -17,4 +17,4 @@ run-test-aes: QEMU_OPTS += -cpu rv64,zk=on
> TESTS += test-fcvtmod
> test-fcvtmod: CFLAGS += -march=rv64imafdc
> test-fcvtmod: LDFLAGS += -static
> -run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,Zfa=true
> +run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,zfa=true
> --
> 2.43.2
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa'
2024-02-29 18:06 [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa' Christoph Müllner
` (2 preceding siblings ...)
2024-03-06 1:47 ` Alistair Francis
@ 2024-03-06 1:57 ` Alistair Francis
3 siblings, 0 replies; 5+ messages in thread
From: Alistair Francis @ 2024-03-06 1:57 UTC (permalink / raw)
To: Christoph Müllner
Cc: qemu-riscv, qemu-devel, Alistair Francis, Bin Meng,
Philipp Tomsich, Palmer Dabbelt, Richard Henderson,
Daniel Henrique Barboza, Andrew Jones, Weiwei Li, Liu Zhiwei
On Fri, Mar 1, 2024 at 4:07 AM Christoph Müllner
<christoph.muellner@vrull.eu> wrote:
>
> Running test-fcvtmod triggers the following deprecation warning:
> warning: CPU property 'Zfa' is deprecated. Please use 'zfa' instead
> Let's fix that.
>
> Signed-off-by: Christoph Müllner <christoph.muellner@vrull.eu>
Thanks!
Applied to riscv-to-apply.next
Alistair
> ---
> tests/tcg/riscv64/Makefile.target | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/tests/tcg/riscv64/Makefile.target b/tests/tcg/riscv64/Makefile.target
> index a7e390c384..4da5b9a3b3 100644
> --- a/tests/tcg/riscv64/Makefile.target
> +++ b/tests/tcg/riscv64/Makefile.target
> @@ -17,4 +17,4 @@ run-test-aes: QEMU_OPTS += -cpu rv64,zk=on
> TESTS += test-fcvtmod
> test-fcvtmod: CFLAGS += -march=rv64imafdc
> test-fcvtmod: LDFLAGS += -static
> -run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,Zfa=true
> +run-test-fcvtmod: QEMU_OPTS += -cpu rv64,d=true,zfa=true
> --
> 2.43.2
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-03-06 1:59 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-02-29 18:06 [PATCH] tests: riscv64: Use 'zfa' instead of 'Zfa' Christoph Müllner
2024-02-29 18:24 ` Richard Henderson
2024-02-29 19:58 ` Daniel Henrique Barboza
2024-03-06 1:47 ` Alistair Francis
2024-03-06 1:57 ` Alistair Francis
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).