]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
x86: pageattr-test: remove srandom32 call
authorAkinobu Mita <akinobu.mita@gmail.com>
Wed, 17 Apr 2013 23:49:16 +0000 (09:49 +1000)
committerStephen Rothwell <sfr@canb.auug.org.au>
Mon, 22 Apr 2013 08:08:31 +0000 (18:08 +1000)
pageattr-test calls srandom32() once every test iteration.  But calling
srandom32() after late_initcalls is not meaningfull.  Because the random
states for random32() is mixed by good random numbers in late_initcall
prandom_reseed().

So this removes the call to srandom32().

Signed-off-by: Akinobu Mita <akinobu.mita@gmail.com>
Acked-by: H. Peter Anvin <hpa@zytor.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
arch/x86/mm/pageattr-test.c

index 0e38951e65eb0940bf57a3f6d8c8d01dff0674c7..5a9e856f6e2d4b34a8cf7647a66a97af0a67824f 100644 (file)
@@ -130,7 +130,6 @@ static int pageattr_test(void)
        }
 
        failed += print_split(&sa);
-       srandom32(100);
 
        for (i = 0; i < NTEST; i++) {
                unsigned long pfn = random32() % max_pfn_mapped;