Home
last modified time | relevance | path

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

/linux/drivers/rtc/
H A Drtc-88pm80x.c79 unsigned long next_time; in rtc_next_alarm_time() local
90 next_time = rtc_tm_to_time64(next); in rtc_next_alarm_time()
92 if (next_time < now_time) { in rtc_next_alarm_time()
94 next_time += 60 * 60 * 24; in rtc_next_alarm_time()
95 rtc_time64_to_tm(next_time, next); in rtc_next_alarm_time()
/linux/drivers/net/ethernet/engleder/
H A Dtsnep_selftests.c217 u64 next_time; in check_gate() local
236 index = get_operation(curr, system_time, &next_time); in check_gate()
250 index = get_operation(prev, system_time, &next_time); in check_gate()
251 next_time = curr->start_time; in check_gate()
270 next_time = curr->start_time; in check_gate()
275 if (gc_time != (next_time & 0xFFFFFFFF)) { in check_gate()
277 gc_time, next_time); in check_gate()
/linux/drivers/scsi/fcoe/
H A Dfcoe_ctlr.c2695 unsigned long next_time; in fcoe_ctlr_vn_age() local
2698 next_time = jiffies + msecs_to_jiffies(FIP_VN_BEACON_INT * 10); in fcoe_ctlr_vn_age()
2716 } else if (time_before(deadline, next_time)) in fcoe_ctlr_vn_age()
2717 next_time = deadline; in fcoe_ctlr_vn_age()
2721 return next_time; in fcoe_ctlr_vn_age()
3074 unsigned long next_time; in fcoe_ctlr_vn_timeout() local
3084 next_time = jiffies + msecs_to_jiffies(FIP_VN_PROBE_WAIT); in fcoe_ctlr_vn_timeout()
3090 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3101 next_time = jiffies + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
3108 next_time = fip->sol_time + msecs_to_jiffies(FIP_VN_ANN_WAIT); in fcoe_ctlr_vn_timeout()
[all …]
/linux/net/sched/
H A Dsch_hfsc.c1380 u64 next_time = 0; in hfsc_schedule_watchdog() local
1384 next_time = cl->cl_e; in hfsc_schedule_watchdog()
1386 if (next_time == 0 || next_time > q->root.cl_cfmin) in hfsc_schedule_watchdog()
1387 next_time = q->root.cl_cfmin; in hfsc_schedule_watchdog()
1389 if (next_time) in hfsc_schedule_watchdog()
1390 qdisc_watchdog_schedule(&q->watchdog, next_time); in hfsc_schedule_watchdog()
/linux/net/wireless/
H A Dmlme.c1031 unsigned long timeout, next_time = 0; in cfg80211_dfs_channels_update_work() local
1089 next_time = timeout - jiffies; in cfg80211_dfs_channels_update_work()
1091 next_time = min(next_time, timeout - jiffies); in cfg80211_dfs_channels_update_work()
1100 next_time); in cfg80211_dfs_channels_update_work()
/linux/drivers/net/ethernet/cavium/liquidio/
H A Drequest_manager.c496 u64 next_time; in __check_db_timeout() local
509 next_time = iq->last_db_time + iq->db_timeout; in __check_db_timeout()
510 if (!time_after(jiffies, (unsigned long)next_time)) in __check_db_timeout()
/linux/net/ipv4/
H A Dnexthop.c630 static void nh_res_time_set_deadline(unsigned long next_time, in nh_res_time_set_deadline() argument
633 if (time_before(next_time, *deadline)) in nh_res_time_set_deadline()
634 *deadline = next_time; in nh_res_time_set_deadline()
/linux/tools/perf/scripts/python/
H A Dexported-sql-viewer.py3476 next_time = int(query.value(0))
3478 if target_time > next_time:
3485 if target_time >= next_time:
/linux/drivers/scsi/lpfc/
H A Dlpfc_sli.c1025 unsigned long next_time; in lpfc_handle_rrq_active() local
1030 next_time = jiffies + secs_to_jiffies(phba->fc_ratov + 1); in lpfc_handle_rrq_active()
1036 else if (time_before(rrq->rrq_stop_time, next_time)) in lpfc_handle_rrq_active()
1037 next_time = rrq->rrq_stop_time; in lpfc_handle_rrq_active()
1042 mod_timer(&phba->rrq_tmr, next_time); in lpfc_handle_rrq_active()