linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3] MIPS: adding a safety check for cpu_has_fpu
@ 2022-05-01  3:09 Stephen Zhang
  2022-05-01 11:34 ` Maciej W. Rozycki
  0 siblings, 1 reply; 2+ messages in thread
From: Stephen Zhang @ 2022-05-01  3:09 UTC (permalink / raw)
  To: macro, tsbogend, liam.howlett, geert, ebiederm, dbueso, alobakin,
	f.fainelli, paul, linux, anemo
  Cc: zhangshida, starzhangzsd, linux-kernel, linux-mips

From: Shida Zhang <zhangshida@kylinos.cn>

There is a chance 'cpu_has_fpu' would still be overridden when the
CONFIG_MIPS_FP_SUPPORT configuration option has been disabled. So
add a safety check for 'cpu_has_fpu'.

Suggested-by: Maciej W. Rozycki <macro@orcam.me.uk>
Signed-off-by: Shida Zhang <zhangshida@kylinos.cn>
---
 Changelog in v1 -> v2:
 - Choose to redefine cpu_has_fpu to solve the problem silently.

 Changelog in v2 -> v3:
 - Choose to point out the error instead.

 arch/mips/include/asm/cpu-features.h | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/arch/mips/include/asm/cpu-features.h b/arch/mips/include/asm/cpu-features.h
index de8cb2ccb781..57ff0f8a507c 100644
--- a/arch/mips/include/asm/cpu-features.h
+++ b/arch/mips/include/asm/cpu-features.h
@@ -134,6 +134,11 @@
 # endif
 #else
 # define raw_cpu_has_fpu	cpu_has_fpu
+# ifndef CONFIG_MIPS_FP_SUPPORT
+#  if cpu_has_fpu
+#   error "Forcing `cpu_has_fpu' to non-zero is not supported"
+#  endif
+# endif
 #endif
 #ifndef cpu_has_32fpr
 #define cpu_has_32fpr		__isa_ge_or_opt(1, MIPS_CPU_32FPR)
-- 
2.30.2


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH v3] MIPS: adding a safety check for cpu_has_fpu
  2022-05-01  3:09 [PATCH v3] MIPS: adding a safety check for cpu_has_fpu Stephen Zhang
@ 2022-05-01 11:34 ` Maciej W. Rozycki
  0 siblings, 0 replies; 2+ messages in thread
From: Maciej W. Rozycki @ 2022-05-01 11:34 UTC (permalink / raw)
  To: Stephen Zhang
  Cc: Thomas Bogendoerfer, liam.howlett, Geert Uytterhoeven, ebiederm,
	alobakin, f.fainelli, paul, linux, anemo, zhangshida,
	linux-kernel, linux-mips

On Sun, 1 May 2022, Stephen Zhang wrote:

> diff --git a/arch/mips/include/asm/cpu-features.h b/arch/mips/include/asm/cpu-features.h
> index de8cb2ccb781..57ff0f8a507c 100644
> --- a/arch/mips/include/asm/cpu-features.h
> +++ b/arch/mips/include/asm/cpu-features.h
> @@ -134,6 +134,11 @@
>  # endif
>  #else
>  # define raw_cpu_has_fpu	cpu_has_fpu
> +# ifndef CONFIG_MIPS_FP_SUPPORT
> +#  if cpu_has_fpu
> +#   error "Forcing `cpu_has_fpu' to non-zero is not supported"
> +#  endif
> +# endif
>  #endif

 For this to work for `nofpu' the check has to be outside the conditional, 
possibly right below the comment we've been discussing.

  Maciej

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2022-05-01 11:34 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-05-01  3:09 [PATCH v3] MIPS: adding a safety check for cpu_has_fpu Stephen Zhang
2022-05-01 11:34 ` Maciej W. Rozycki

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).