|
@@ -2459,7 +2459,7 @@ error_dump:
|
|
|
|
|
|
static inline int chance(unsigned int n, unsigned int out_of)
|
|
|
{
|
|
|
- return !!((random32() % out_of) + 1 <= n);
|
|
|
+ return !!((prandom_u32() % out_of) + 1 <= n);
|
|
|
|
|
|
}
|
|
|
|
|
@@ -2477,13 +2477,13 @@ static int power_cut_emulated(struct ubifs_info *c, int lnum, int write)
|
|
|
if (chance(1, 2)) {
|
|
|
d->pc_delay = 1;
|
|
|
/* Fail withing 1 minute */
|
|
|
- delay = random32() % 60000;
|
|
|
+ delay = prandom_u32() % 60000;
|
|
|
d->pc_timeout = jiffies;
|
|
|
d->pc_timeout += msecs_to_jiffies(delay);
|
|
|
ubifs_warn("failing after %lums", delay);
|
|
|
} else {
|
|
|
d->pc_delay = 2;
|
|
|
- delay = random32() % 10000;
|
|
|
+ delay = prandom_u32() % 10000;
|
|
|
/* Fail within 10000 operations */
|
|
|
d->pc_cnt_max = delay;
|
|
|
ubifs_warn("failing after %lu calls", delay);
|
|
@@ -2563,7 +2563,7 @@ static int corrupt_data(const struct ubifs_info *c, const void *buf,
|
|
|
unsigned int from, to, ffs = chance(1, 2);
|
|
|
unsigned char *p = (void *)buf;
|
|
|
|
|
|
- from = random32() % (len + 1);
|
|
|
+ from = prandom_u32() % (len + 1);
|
|
|
/* Corruption may only span one max. write unit */
|
|
|
to = min(len, ALIGN(from, c->max_write_size));
|
|
|
|