Searched refs:next_time (Results 1 – 9 of 9) sorted by relevance
/Linux-v4.19/drivers/rtc/ |
D | rtc-88pm80x.c | 91 unsigned long next_time; in rtc_next_alarm_time() local 102 next_time = rtc_tm_to_time64(next); in rtc_next_alarm_time() 104 if (next_time < now_time) { in rtc_next_alarm_time() 106 next_time += 60 * 60 * 24; in rtc_next_alarm_time() 107 rtc_time64_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-v4.19/drivers/scsi/fcoe/ |
D | fcoe_ctlr.c | 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() [all …]
|
/Linux-v4.19/net/wireless/ |
D | mlme.c | 768 unsigned long timeout, next_time = 0; in cfg80211_dfs_channels_update_work() local 826 next_time = timeout - jiffies; in cfg80211_dfs_channels_update_work() 828 next_time = min(next_time, timeout - jiffies); in cfg80211_dfs_channels_update_work() 837 next_time); in cfg80211_dfs_channels_update_work()
|
/Linux-v4.19/net/sched/ |
D | sch_hfsc.c | 1379 u64 next_time = 0; in hfsc_schedule_watchdog() local 1383 next_time = cl->cl_e; in hfsc_schedule_watchdog() 1385 if (next_time == 0 || next_time > q->root.cl_cfmin) in hfsc_schedule_watchdog() 1386 next_time = q->root.cl_cfmin; in hfsc_schedule_watchdog() 1388 if (next_time) in hfsc_schedule_watchdog() 1389 qdisc_watchdog_schedule(&q->watchdog, next_time); in hfsc_schedule_watchdog()
|
/Linux-v4.19/drivers/net/ethernet/cavium/liquidio/ |
D | request_manager.c | 523 u64 next_time; in __check_db_timeout() local 536 next_time = iq->last_db_time + iq->db_timeout; in __check_db_timeout() 537 if (!time_after(jiffies, (unsigned long)next_time)) in __check_db_timeout()
|
/Linux-v4.19/drivers/net/wireless/intersil/hostap/ |
D | hostap_ap.c | 180 unsigned long next_time = 0; in ap_handle_timer() local 193 next_time = jiffies + HZ; in ap_handle_timer() 195 next_time = jiffies + ap->max_inactivity; in ap_handle_timer() 200 next_time = sta->last_rx + ap->max_inactivity; in ap_handle_timer() 205 next_time = jiffies + ap->max_inactivity; in ap_handle_timer() 208 if (next_time) { in ap_handle_timer() 209 sta->timer.expires = next_time; in ap_handle_timer()
|
/Linux-v4.19/drivers/scsi/arcmsr/ |
D | arcmsr_hba.c | 3575 unsigned int next_time; in arcmsr_set_iop_datetime() local 3648 next_time = ARCMSR_HOURS; in arcmsr_set_iop_datetime() 3650 next_time = ARCMSR_MINUTES; in arcmsr_set_iop_datetime() 3651 mod_timer(&pacb->refresh_timer, jiffies + msecs_to_jiffies(next_time)); in arcmsr_set_iop_datetime()
|
/Linux-v4.19/drivers/scsi/lpfc/ |
D | lpfc_sli.c | 911 unsigned long next_time; in lpfc_handle_rrq_active() local 917 next_time = jiffies + msecs_to_jiffies(1000 * (phba->fc_ratov + 1)); in lpfc_handle_rrq_active() 922 else if (time_before(rrq->rrq_stop_time, next_time)) in lpfc_handle_rrq_active() 923 next_time = rrq->rrq_stop_time; in lpfc_handle_rrq_active() 928 mod_timer(&phba->rrq_tmr, next_time); in lpfc_handle_rrq_active()
|