Home
last modified time | relevance | path

Searched refs:next_time (Results 1 – 6 of 6) sorted by relevance

/drivers/rtc/
Drtc-88pm80x.c93 unsigned long next_time; in rtc_next_alarm_time() local
104 rtc_tm_to_time(next, &next_time); in rtc_next_alarm_time()
106 if (next_time < now_time) { in rtc_next_alarm_time()
108 next_time += 60 * 60 * 24; in rtc_next_alarm_time()
109 rtc_time_to_tm(next_time, next); in rtc_next_alarm_time()
Drtc-88pm860x.c89 unsigned long next_time; in rtc_next_alarm_time() local
100 rtc_tm_to_time(next, &next_time); in rtc_next_alarm_time()
102 if (next_time < now_time) { in rtc_next_alarm_time()
104 next_time += 60 * 60 * 24; in rtc_next_alarm_time()
105 rtc_time_to_tm(next_time, next); in rtc_next_alarm_time()
/drivers/scsi/fcoe/
Dfcoe_ctlr.c2637 unsigned long next_time; in fcoe_ctlr_vn_age() local
2640 next_time = jiffies + msecs_to_jiffies(FIP_VN_BEACON_INT * 10); in fcoe_ctlr_vn_age()
2654 } else if (time_before(deadline, next_time)) in fcoe_ctlr_vn_age()
2655 next_time = deadline; in fcoe_ctlr_vn_age()
2658 return next_time; in fcoe_ctlr_vn_age()
3010 unsigned long next_time; in fcoe_ctlr_vn_timeout() local
3019 next_time = jiffies + msecs_to_jiffies(FIP_VN_PROBE_WAIT); in fcoe_ctlr_vn_timeout()
3024 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3034 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3041 next_time = fip->sol_time + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
[all …]
/drivers/net/ethernet/cavium/liquidio/
Drequest_manager.c509 u64 next_time; in __check_db_timeout() local
522 next_time = iq->last_db_time + iq->db_timeout; in __check_db_timeout()
523 if (!time_after(jiffies, (unsigned long)next_time)) in __check_db_timeout()
/drivers/net/wireless/intersil/hostap/
Dhostap_ap.c192 unsigned long next_time = 0; in ap_handle_timer() local
205 next_time = jiffies + HZ; in ap_handle_timer()
207 next_time = jiffies + ap->max_inactivity; in ap_handle_timer()
212 next_time = sta->last_rx + ap->max_inactivity; in ap_handle_timer()
217 next_time = jiffies + ap->max_inactivity; in ap_handle_timer()
220 if (next_time) { in ap_handle_timer()
221 sta->timer.expires = next_time; in ap_handle_timer()
/drivers/scsi/lpfc/
Dlpfc_sli.c690 unsigned long next_time; in lpfc_handle_rrq_active() local
696 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1)); in lpfc_handle_rrq_active()
701 else if (time_before(rrq->rrq_stop_time, next_time)) in lpfc_handle_rrq_active()
702 next_time = rrq->rrq_stop_time; in lpfc_handle_rrq_active()
707 mod_timer(&phba->rrq_tmr, next_time); in lpfc_handle_rrq_active()