Modify a pending timers timeout
int mod_timer_pending(struct timer_list * timer, unsigned long expires);
timer
the pending timer to be modified
expires
new timeout in jiffies
mod_timer_pending is the same for pending timers as mod_timer, but will not re-activate and modify already deleted timers.
It is useful for unserialized use of timers.