Searched refs:next_time (Results 1 – 8 of 8) sorted by relevance
/linux-4.4.14/drivers/rtc/ |
D | rtc-88pm80x.c | 93 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()
|
D | rtc-88pm860x.c | 89 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()
|
/linux-4.4.14/drivers/scsi/fcoe/ |
D | fcoe_ctlr.c | 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() [all …]
|
/linux-4.4.14/net/wireless/ |
D | mlme.c | 721 unsigned long timeout, next_time = 0; in cfg80211_dfs_channels_update_work() local 758 next_time = timeout - jiffies; in cfg80211_dfs_channels_update_work() 760 next_time = min(next_time, timeout - jiffies); in cfg80211_dfs_channels_update_work() 769 next_time); in cfg80211_dfs_channels_update_work()
|
/linux-4.4.14/net/sched/ |
D | sch_hfsc.c | 1417 u64 next_time = 0; in hfsc_schedule_watchdog() local 1421 next_time = cl->cl_e; in hfsc_schedule_watchdog() 1423 if (next_time == 0 || next_time > q->root.cl_cfmin) in hfsc_schedule_watchdog() 1424 next_time = q->root.cl_cfmin; in hfsc_schedule_watchdog() 1426 WARN_ON(next_time == 0); in hfsc_schedule_watchdog() 1427 qdisc_watchdog_schedule(&q->watchdog, next_time); in hfsc_schedule_watchdog()
|
/linux-4.4.14/drivers/net/ethernet/cavium/liquidio/ |
D | request_manager.c | 476 u64 next_time; in __check_db_timeout() local 485 next_time = iq->last_db_time + iq->db_timeout; in __check_db_timeout() 486 if (!time_after(jiffies, (unsigned long)next_time)) in __check_db_timeout()
|
/linux-4.4.14/drivers/net/wireless/hostap/ |
D | hostap_ap.c | 192 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()
|
/linux-4.4.14/drivers/scsi/lpfc/ |
D | lpfc_sli.c | 685 unsigned long next_time; in lpfc_handle_rrq_active() local 691 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1)); in lpfc_handle_rrq_active() 696 else if (time_before(rrq->rrq_stop_time, next_time)) in lpfc_handle_rrq_active() 697 next_time = rrq->rrq_stop_time; in lpfc_handle_rrq_active() 702 mod_timer(&phba->rrq_tmr, next_time); in lpfc_handle_rrq_active()
|