Commit ffe003dc authored by antirez's avatar antirez
Browse files

memtest.c fixed to actually use v1 and v2 in memtest_fill_value().

parent 841048f2
...@@ -132,13 +132,13 @@ void memtest_fill_value(unsigned long *l, size_t bytes, unsigned long v1, ...@@ -132,13 +132,13 @@ void memtest_fill_value(unsigned long *l, size_t bytes, unsigned long v1,
v = (off & 1) ? v2 : v1; v = (off & 1) ? v2 : v1;
for (w = 0; w < iwords; w++) { for (w = 0; w < iwords; w++) {
#ifdef MEMTEST_32BIT #ifdef MEMTEST_32BIT
*l1 = *l2 = ((unsigned long) (rand()&0xffff)) | *l1 = *l2 = ((unsigned long) v) |
(((unsigned long) (rand()&0xffff)) << 16); (((unsigned long) v) << 16);
#else #else
*l1 = *l2 = ((unsigned long) (rand()&0xffff)) | *l1 = *l2 = ((unsigned long) v) |
(((unsigned long) (rand()&0xffff)) << 16) | (((unsigned long) v) << 16) |
(((unsigned long) (rand()&0xffff)) << 32) | (((unsigned long) v) << 32) |
(((unsigned long) (rand()&0xffff)) << 48); (((unsigned long) v) << 48);
#endif #endif
l1 += step; l1 += step;
l2 += step; l2 += step;
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment