diff options
Diffstat (limited to 'drivers/lguest/page_tables.c')
| -rw-r--r-- | drivers/lguest/page_tables.c | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/lguest/page_tables.c b/drivers/lguest/page_tables.c index 3b62be160a6..864baabaee2 100644 --- a/drivers/lguest/page_tables.c +++ b/drivers/lguest/page_tables.c @@ -686,7 +686,7 @@ static unsigned int new_pgdir(struct lg_cpu *cpu,  	 * We pick one entry at random to throw out.  Choosing the Least  	 * Recently Used might be better, but this is easy.  	 */ -	next = random32() % ARRAY_SIZE(cpu->lg->pgdirs); +	next = prandom_u32() % ARRAY_SIZE(cpu->lg->pgdirs);  	/* If it's never been allocated at all before, try now. */  	if (!cpu->lg->pgdirs[next].pgdir) {  		cpu->lg->pgdirs[next].pgdir =  |