Re: [PATCH 1/4] lib: Make prime number generator independently selectable

2020-06-01 Thread Luis Chamberlain
On Thu, May 28, 2020 at 11:52:06PM +0900, Masami Hiramatsu wrote:
> Make prime number generator independently selectable from
> kconfig. This allows us to enable CONFIG_PRIME_NUMBERS=m
> and run the tools/testing/selftests/lib/prime_numbers.sh
> without other DRM selftest modules.
> 
> Signed-off-by: Masami Hiramatsu 

Reviewed-by: Luis Chamberlain 

  Luis


Re: [PATCH 1/4] lib: Make prime number generator independently selectable

2020-05-29 Thread Masami Hiramatsu
On Thu, 28 May 2020 22:56:59 -0700
Kees Cook  wrote:

> On Thu, May 28, 2020 at 11:52:06PM +0900, Masami Hiramatsu wrote:
> > Make prime number generator independently selectable from
> > kconfig. This allows us to enable CONFIG_PRIME_NUMBERS=m
> > and run the tools/testing/selftests/lib/prime_numbers.sh
> > without other DRM selftest modules.
> 
> Nice catch! I see that tools/testing/selftests/lib/config already has
> CONFIG_PRIME_NUMBERS=m (based on this commit log I was expecting to see
> it added in the diff, but I see it's not needed).

Yes, that is the reason why I have found this issue, the "make kselftest-merge"
cannot enable CONFIG_PRIME_NUMBERS=m without this fix. 

> 
> Reviewed-by: Kees Cook 

Thank you!

> 
> -- 
> Kees Cook


-- 
Masami Hiramatsu 


Re: [PATCH 1/4] lib: Make prime number generator independently selectable

2020-05-28 Thread Kees Cook
On Thu, May 28, 2020 at 11:52:06PM +0900, Masami Hiramatsu wrote:
> Make prime number generator independently selectable from
> kconfig. This allows us to enable CONFIG_PRIME_NUMBERS=m
> and run the tools/testing/selftests/lib/prime_numbers.sh
> without other DRM selftest modules.

Nice catch! I see that tools/testing/selftests/lib/config already has
CONFIG_PRIME_NUMBERS=m (based on this commit log I was expecting to see
it added in the diff, but I see it's not needed).

Reviewed-by: Kees Cook 

-- 
Kees Cook


[PATCH 1/4] lib: Make prime number generator independently selectable

2020-05-28 Thread Masami Hiramatsu
Make prime number generator independently selectable from
kconfig. This allows us to enable CONFIG_PRIME_NUMBERS=m
and run the tools/testing/selftests/lib/prime_numbers.sh
without other DRM selftest modules.

Signed-off-by: Masami Hiramatsu 
---
 lib/math/Kconfig |7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/lib/math/Kconfig b/lib/math/Kconfig
index 15bd50d92308..f19bc9734fa7 100644
--- a/lib/math/Kconfig
+++ b/lib/math/Kconfig
@@ -6,7 +6,12 @@ config CORDIC
  calculations are in fixed point. Module will be called cordic.
 
 config PRIME_NUMBERS
-   tristate
+   tristate "Simple prime number generator for testing"
+   help
+ This option provides a simple prime number generator for test
+ modules.
+
+ If unsure, say N.
 
 config RATIONAL
bool