forked from Minki/linux
7b878d4b48
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>
51 lines
831 B
C
51 lines
831 B
C
#ifndef _ASM_POWERPC_ARCHRANDOM_H
|
|
#define _ASM_POWERPC_ARCHRANDOM_H
|
|
|
|
#ifdef CONFIG_ARCH_RANDOM
|
|
|
|
#include <asm/machdep.h>
|
|
|
|
static inline int arch_get_random_long(unsigned long *v)
|
|
{
|
|
if (ppc_md.get_random_long)
|
|
return ppc_md.get_random_long(v);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static inline int arch_get_random_int(unsigned int *v)
|
|
{
|
|
unsigned long val;
|
|
int rc;
|
|
|
|
rc = arch_get_random_long(&val);
|
|
if (rc)
|
|
*v = val;
|
|
|
|
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)
|
|
{
|
|
return 0;
|
|
}
|
|
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 */
|
|
|
|
#endif /* _ASM_POWERPC_ARCHRANDOM_H */
|