Lines Matching refs:next_time
2709 unsigned long next_time; in fcoe_ctlr_vn_age() local
2712 next_time = jiffies + msecs_to_jiffies(FIP_VN_BEACON_INT * 10); in fcoe_ctlr_vn_age()
2730 } else if (time_before(deadline, next_time)) in fcoe_ctlr_vn_age()
2731 next_time = deadline; in fcoe_ctlr_vn_age()
2735 return next_time; in fcoe_ctlr_vn_age()
3100 unsigned long next_time; in fcoe_ctlr_vn_timeout() local
3110 next_time = jiffies + msecs_to_jiffies(FIP_VN_PROBE_WAIT); in fcoe_ctlr_vn_timeout()
3116 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3127 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3134 next_time = fip->sol_time + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3135 if (time_after_eq(jiffies, next_time)) { in fcoe_ctlr_vn_timeout()
3140 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3141 fip->port_ka_time = next_time; in fcoe_ctlr_vn_timeout()
3146 next_time = fcoe_ctlr_vn_age(fip); in fcoe_ctlr_vn_timeout()
3155 if (time_before(fip->port_ka_time, next_time)) in fcoe_ctlr_vn_timeout()
3156 next_time = fip->port_ka_time; in fcoe_ctlr_vn_timeout()
3164 mod_timer(&fip->timer, next_time); in fcoe_ctlr_vn_timeout()