lkml.org 
[lkml]   [2014]   [Jun]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH 1/7] lib/random32.c: Mark self-test data as __initconst
So it can be thrown away along with the code that uses it.

Signed-off-by: George Spelvin <linux@horizon.com>
---
lib/random32.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/random32.c b/lib/random32.c
index fa5da61c..4da5d281 100644
--- a/lib/random32.c
+++ b/lib/random32.c
@@ -296,7 +296,7 @@ late_initcall(prandom_reseed);
static struct prandom_test1 {
u32 seed;
u32 result;
-} test1[] = {
+} const test1[] __initconst = {
{ 1U, 3484351685U },
{ 2U, 2623130059U },
{ 3U, 3125133893U },
@@ -307,7 +307,7 @@ static struct prandom_test2 {
u32 seed;
u32 iteration;
u32 result;
-} test2[] = {
+} const test2[] __initconst = {
/* Test cases against taus113 from GSL library. */
{ 931557656U, 959U, 2975593782U },
{ 1339693295U, 876U, 3887776532U },
--
2.0.0


\
 
 \ /
  Last update: 2014-06-07 11:01    [W:0.653 / U:0.616 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site