Home
last modified time | relevance | path

Searched refs:wait_ms (Results 1 – 21 of 21) sorted by relevance

/linux-6.15/tools/testing/selftests/kvm/arm64/
H A Darch_timer_edge_cases.c55 uint64_t wait_ms; member
67 .wait_ms = WAIT_TEST_MS,
490 uint64_t base_wait = test_args.wait_ms; in test_reprogram_timers()
531 msec_to_cycles(test_args.wait_ms)); in timers_sanity_checks()
547 msec_to_cycles(test_args.wait_ms)); in timers_sanity_checks()
558 msec_to_cycles(test_args.wait_ms)); in timers_sanity_checks()
562 msec_to_cycles(test_args.wait_ms)); in timers_sanity_checks()
623 msec_to_cycles(test_args.wait_ms); in test_timers_above_tval_max()
625 msecs_to_usecs(test_args.wait_ms) + in test_timers_above_tval_max()
770 cval = DEF_CNT - msec_to_cycles(test_args.wait_ms); in test_timers_in_the_past()
[all …]
/linux-6.15/sound/soc/codecs/
H A Drk3328_codec.c126 static int rk3328_codec_power_on(struct rk3328_codec_priv *rk3328, int wait_ms) in rk3328_codec_power_on() argument
134 mdelay(wait_ms); in rk3328_codec_power_on()
139 static int rk3328_codec_power_off(struct rk3328_codec_priv *rk3328, int wait_ms) in rk3328_codec_power_off() argument
147 mdelay(wait_ms); in rk3328_codec_power_off()
/linux-6.15/fs/f2fs/
H A Dgc.c37 unsigned int wait_ms; in gc_thread_func() local
43 wait_ms = gc_th->min_sleep_time; in gc_thread_func()
53 msecs_to_jiffies(wait_ms)); in gc_thread_func()
70 increase_sleep_time(gc_th, &wait_ms); in gc_thread_func()
101 wait_ms = gc_th->urgent_sleep_time; in gc_thread_func()
115 increase_sleep_time(gc_th, &wait_ms); in gc_thread_func()
124 wait_ms = gc_th->no_gc_sleep_time; in gc_thread_func()
129 wait_ms = gc_th->max_sleep_time; in gc_thread_func()
133 decrease_sleep_time(gc_th, &wait_ms); in gc_thread_func()
158 wait_ms = gc_th->no_gc_sleep_time; in gc_thread_func()
[all …]
H A Dsegment.c1915 unsigned int wait_ms = dcc->min_discard_issue_time; in issue_discard_thread() local
1923 msecs_to_jiffies(wait_ms)); in issue_discard_thread()
1946 wait_ms = dpolicy.max_interval; in issue_discard_thread()
1955 wait_ms = dpolicy.min_interval; in issue_discard_thread()
1957 wait_ms = f2fs_time_to_wait(sbi, DISCARD_TIME); in issue_discard_thread()
1958 if (!wait_ms) in issue_discard_thread()
1959 wait_ms = dpolicy.mid_interval; in issue_discard_thread()
1961 wait_ms = dpolicy.max_interval; in issue_discard_thread()
1964 wait_ms = dpolicy.max_interval; in issue_discard_thread()
H A Df2fs.h1953 unsigned int wait_ms = 0; in f2fs_time_to_wait() local
1958 wait_ms = jiffies_to_msecs(delta); in f2fs_time_to_wait()
1960 return wait_ms; in f2fs_time_to_wait()
/linux-6.15/drivers/iio/light/
H A Drohm-bu27034.c1162 int wait_ms; in bu27034_buffer_thread() local
1166 wait_ms = bu27034_get_int_time(data); in bu27034_buffer_thread()
1167 wait_ms /= 1000; in bu27034_buffer_thread()
1169 wait_ms -= BU27034_MEAS_WAIT_PREMATURE_MS; in bu27034_buffer_thread()
1175 msleep(wait_ms); in bu27034_buffer_thread()
/linux-6.15/drivers/rapidio/
H A Drio.h27 u8 hopcount, int wait_ms);
H A Drio.c1533 u8 hopcount, int wait_ms) in rio_lock_device() argument
1545 if (wait_ms != 0 && tcnt == wait_ms) { in rio_lock_device()
/linux-6.15/drivers/staging/rtl8723bs/include/
H A Drtw_mlme_ext.h551 …adapter, struct ndis_802_11_ssid *pssid, u8 *da, u8 ch, bool append_wps, int try_cnt, int wait_ms);
552 …ta(struct adapter *padapter, unsigned char *da, unsigned int power_mode, int try_cnt, int wait_ms);
554 …issue_qos_nulldata(struct adapter *padapter, unsigned char *da, u16 tid, int try_cnt, int wait_ms);
556 …issue_deauth_ex(struct adapter *padapter, u8 *da, unsigned short reason, int try_cnt, int wait_ms);
/linux-6.15/drivers/iio/accel/
H A Dmsa311.c491 unsigned long wait_ms; in msa311_wait_for_next_data() local
511 wait_ms = (MICROHZ_PER_HZ / freq_uhz) * MSEC_PER_SEC; in msa311_wait_for_next_data()
513 if (wait_ms < unintr_thresh_ms) in msa311_wait_for_next_data()
514 usleep_range(wait_ms * USEC_PER_MSEC, in msa311_wait_for_next_data()
516 else if (msleep_interruptible(wait_ms)) in msa311_wait_for_next_data()
/linux-6.15/tools/cgroup/
H A Diocost_monitor.py167 self.wait_ms = (iocg.stat.wait_us.value_() -
186 'wait_ms' : self.wait_ms,
/linux-6.15/drivers/staging/rtl8723bs/core/
H A Drtw_mlme_ext.c2552 int try_cnt, int wait_ms) in issue_probereq_ex() argument
2559 wait_ms > 0); in issue_probereq_ex()
2566 if (i < try_cnt && wait_ms > 0 && ret == _FAIL) in issue_probereq_ex()
2567 msleep(wait_ms); in issue_probereq_ex()
3121 if (i < try_cnt && wait_ms > 0 && ret == _FAIL) in issue_nulldata()
3122 msleep(wait_ms); in issue_nulldata()
3254 if (i < try_cnt && wait_ms > 0 && ret == _FAIL) in issue_qos_nulldata()
3255 msleep(wait_ms); in issue_qos_nulldata()
3335 int wait_ms) in issue_deauth_ex() argument
3348 if (i < try_cnt && wait_ms > 0 && ret == _FAIL) in issue_deauth_ex()
[all …]
/linux-6.15/drivers/net/wireless/realtek/rtlwifi/
H A Dbase.h91 void rtl_wait_tx_report_acked(struct ieee80211_hw *hw, u32 wait_ms);
H A Dbase.c1697 void rtl_wait_tx_report_acked(struct ieee80211_hw *hw, u32 wait_ms) in rtl_wait_tx_report_acked() argument
1702 for (i = 0; i < wait_ms; i++) { in rtl_wait_tx_report_acked()
1707 "Wait 1ms (%d/%d) to disable key.\n", i, wait_ms); in rtl_wait_tx_report_acked()
/linux-6.15/sound/usb/usx2y/
H A Dusb_stream.c749 int wait_ms = 3000; in usb_stream_start() local
751 while (s->state != usb_stream_ready && wait_ms > 0) { in usb_stream_start()
753 wait_ms -= 200; in usb_stream_start()
/linux-6.15/drivers/usb/musb/
H A Dmusb_dsps.c134 static void dsps_mod_timer(struct dsps_glue *glue, int wait_ms) in dsps_mod_timer() argument
139 if (wait_ms < 0) in dsps_mod_timer()
142 wait = msecs_to_jiffies(wait_ms); in dsps_mod_timer()
/linux-6.15/drivers/net/wireless/realtek/rtlwifi/btcoexist/
H A Dhalbtcoutsrc.c172 u8 *cmd, u32 len, unsigned long wait_ms) in halbtc_send_bt_mp_operation() argument
181 if (wait_ms) /* before h2c to avoid race condition */ in halbtc_send_bt_mp_operation()
237 if (!wait_ms) in halbtc_send_bt_mp_operation()
241 "btmpinfo wait req_num=%d wait=%ld\n", req_num, wait_ms); in halbtc_send_bt_mp_operation()
244 msecs_to_jiffies(wait_ms)) == 0) { in halbtc_send_bt_mp_operation()
/linux-6.15/include/trace/events/
H A Df2fs.h641 TP_PROTO(struct super_block *sb, unsigned int wait_ms,
644 TP_ARGS(sb, wait_ms, prefree, free),
648 __field(unsigned int, wait_ms)
655 __entry->wait_ms = wait_ms;
662 __entry->wait_ms,
/linux-6.15/drivers/block/
H A Dnbd.c812 unsigned int wait_ms = 2; in nbd_pending_cmd_work() local
827 if (READ_ONCE(jiffies) + msecs_to_jiffies(wait_ms) >= deadline) { in nbd_pending_cmd_work()
832 msleep(wait_ms); in nbd_pending_cmd_work()
833 wait_ms *= 2; in nbd_pending_cmd_work()
/linux-6.15/drivers/gpu/drm/xe/
H A Dxe_guc_submit.c1359 s64 wait_ms = q->vm->preempt.min_run_period_ms - in __guc_exec_queue_process_msg_suspend() local
1362 if (wait_ms > 0 && q->guc->resume_time) in __guc_exec_queue_process_msg_suspend()
1363 msleep(wait_ms); in __guc_exec_queue_process_msg_suspend()
/linux-6.15/drivers/infiniband/hw/hfi1/
H A Dchip.c1062 static int wait_link_transfer_active(struct hfi1_devdata *dd, int wait_ms);
10340 static int wait_link_transfer_active(struct hfi1_devdata *dd, int wait_ms) in wait_link_transfer_active() argument
10346 timeout = jiffies + msecs_to_jiffies(wait_ms); in wait_link_transfer_active()