Lines Matching defs:msecs
87 unsigned int msecs = BATADV_MAX_AGGREGATION_MS * 1000;
89 /* msecs * [0.9, 1.1] */
90 msecs += get_random_u32_below(msecs / 5) - (msecs / 10);
92 msecs_to_jiffies(msecs / 1000));
101 unsigned long msecs;
108 msecs = atomic_read(&bat_priv->orig_interval) - BATADV_JITTER;
109 msecs += get_random_u32_below(2 * BATADV_JITTER);
111 msecs_to_jiffies(msecs));