random: Add arch_has_random[_seed]()
authorH. Peter Anvin <hpa@linux.intel.com>
Mon, 17 Mar 2014 23:36:30 +0000 (16:36 -0700)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 20 Mar 2014 02:24:08 +0000 (22:24 -0400)
Add predicate functions for having arch_get_random[_seed]*().  The
only current use is to avoid the loop in arch_random_refill() when
arch_get_random_seed_long() is unavailable.

Signed-off-by: H. Peter Anvin <hpa@linux.intel.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Michael Ellerman <michael@ellerman.id.au>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
arch/powerpc/include/asm/archrandom.h
arch/x86/include/asm/archrandom.h
drivers/char/random.c
include/linux/random.h

index 801beba4e64b2de80e741d879e1991504a016858..bde5311036384c891463de556bb75e62b6d39a7c 100644 (file)
@@ -25,6 +25,11 @@ static inline int arch_get_random_int(unsigned int *v)
        return rc;
 }
 
+static inline int arch_has_random(void)
+{
+       return !!ppc_md.get_random_long;
+}
+
 int powernv_get_random_long(unsigned long *v);
 
 static inline int arch_get_random_seed_long(unsigned long *v)
@@ -35,6 +40,10 @@ static inline int arch_get_random_seed_int(unsigned int *v)
 {
        return 0;
 }
+static inline int arch_has_random_seed(void)
+{
+       return 0;
+}
 
 #endif /* CONFIG_ARCH_RANDOM */
 
index 6ad7f6d3f97f4824d5cdaf7b0107e1c65d4047eb..69f1366f1aa33721ea160cc831a1345867b7a4b3 100644 (file)
@@ -114,6 +114,9 @@ GET_SEED(arch_get_random_seed_int, unsigned int, RDSEED_INT, ASM_NOP4);
 
 #endif /* CONFIG_X86_64 */
 
+#define arch_has_random()      static_cpu_has(X86_FEATURE_RDRAND)
+#define arch_has_random_seed() static_cpu_has(X86_FEATURE_RDSEED)
+
 #else
 
 static inline int rdrand_long(unsigned long *v)
index c35cee268e135b66bd238a498b68b036edd25e6c..6b75713d953a4e719cd33610f6034bec430c5d95 100644 (file)
@@ -1307,6 +1307,9 @@ static int arch_random_refill(void)
        unsigned int i;
        unsigned long buf[nlongs];
 
+       if (!arch_has_random_seed())
+               return 0;
+
        for (i = 0; i < nlongs; i++) {
                if (arch_get_random_seed_long(&buf[n]))
                        n++;
index c2f08131050d5facd1a5a60493911e474983c103..57fbbffd77a0406fe57ce2abb5c2a24d819c45f9 100644 (file)
@@ -88,6 +88,10 @@ static inline int arch_get_random_int(unsigned int *v)
 {
        return 0;
 }
+static inline int arch_has_random(void)
+{
+       return 0;
+}
 static inline int arch_get_random_seed_long(unsigned long *v)
 {
        return 0;
@@ -96,6 +100,10 @@ static inline int arch_get_random_seed_int(unsigned int *v)
 {
        return 0;
 }
+static inline int arch_has_random_seed(void)
+{
+       return 0;
+}
 #endif
 
 /* Pseudo random number generator from numerical recipes. */
This page took 0.030703 seconds and 5 git commands to generate.