MILLION
#define SEC_TO_US(t) ((t) * MILLION) /* Convert seconds to microseconds. */
interval = arc4random_uniform(MAX_RTR_SOLICITATION_DELAY * MILLION);
ifi->timer.tv_sec = interval / MILLION;
ifi->timer.tv_nsec = (interval % MILLION) * 1000;