Lines Matching refs:next_time
2631 unsigned long next_time; in fcoe_ctlr_vn_age() local
2634 next_time = jiffies + msecs_to_jiffies(FIP_VN_BEACON_INT * 10); in fcoe_ctlr_vn_age()
2648 } else if (time_before(deadline, next_time)) in fcoe_ctlr_vn_age()
2649 next_time = deadline; in fcoe_ctlr_vn_age()
2652 return next_time; in fcoe_ctlr_vn_age()
2790 unsigned long next_time; in fcoe_ctlr_vn_timeout() local
2799 next_time = jiffies + msecs_to_jiffies(FIP_VN_PROBE_WAIT); in fcoe_ctlr_vn_timeout()
2804 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
2814 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
2821 next_time = fip->sol_time + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
2822 if (time_after_eq(jiffies, next_time)) { in fcoe_ctlr_vn_timeout()
2826 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
2827 fip->port_ka_time = next_time; in fcoe_ctlr_vn_timeout()
2832 next_time = fcoe_ctlr_vn_age(fip); in fcoe_ctlr_vn_timeout()
2840 if (time_before(fip->port_ka_time, next_time)) in fcoe_ctlr_vn_timeout()
2841 next_time = fip->port_ka_time; in fcoe_ctlr_vn_timeout()
2849 mod_timer(&fip->timer, next_time); in fcoe_ctlr_vn_timeout()