/Linux-v5.4/arch/x86/kernel/cpu/ |
D | umwait.c | 10 #define UMWAIT_CTRL_VAL(max_time, c02_disable) \ argument 11 (((max_time) & MSR_IA32_UMWAIT_CONTROL_TIME_MASK) | \ 175 u32 max_time, ctrl; in max_time_store() local 178 ret = kstrtou32(buf, 0, &max_time); in max_time_store() 183 if (max_time & ~MSR_IA32_UMWAIT_CONTROL_TIME_MASK) in max_time_store() 189 if (max_time != umwait_ctrl_max_time(ctrl)) in max_time_store() 190 umwait_update_control(max_time, umwait_ctrl_c02_enabled(ctrl)); in max_time_store() 196 static DEVICE_ATTR_RW(max_time);
|
/Linux-v5.4/drivers/base/power/ |
D | wakeup_stats.c | 69 ktime_t max_time = ws->max_time; in max_time_ms_show() local 73 if (active_time > max_time) in max_time_ms_show() 74 max_time = active_time; in max_time_ms_show() 76 return sprintf(buf, "%lld\n", ktime_to_ms(max_time)); in max_time_ms_show()
|
D | wakeup.c | 127 deleted_ws.max_time = in wakeup_source_record() 128 ktime_compare(deleted_ws.max_time, ws->max_time) > 0 ? in wakeup_source_record() 129 deleted_ws.max_time : ws->max_time; in wakeup_source_record() 663 if (ktime_to_ns(duration) > ktime_to_ns(ws->max_time)) in wakeup_source_deactivate() 664 ws->max_time = duration; in wakeup_source_deactivate() 1001 ktime_t max_time; in print_wakeup_source_stats() local 1009 max_time = ws->max_time; in print_wakeup_source_stats() 1017 if (active_time > max_time) in print_wakeup_source_stats() 1018 max_time = active_time; in print_wakeup_source_stats() 1031 ktime_to_ms(max_time), ktime_to_ms(ws->last_time), in print_wakeup_source_stats()
|
D | sysfs.c | 458 msec = ktime_to_ms(dev->power.wakeup->max_time); in wakeup_max_time_ms_show()
|
/Linux-v5.4/fs/f2fs/ |
D | gc.h | 72 unsigned int max_time = gc_th->max_sleep_time; in increase_sleep_time() local 77 if ((long long)*wait + (long long)min_time > (long long)max_time) in increase_sleep_time() 78 *wait = max_time; in increase_sleep_time()
|
/Linux-v5.4/drivers/staging/rtl8723bs/hal/ |
D | odm_NoiseMonitor.c | 25 u32 max_time in odm_InbandNoise_Monitor_NSeries() argument 110 if ((valid_done == max_rf_path) || (jiffies_to_msecs(jiffies - start) > max_time)) { in odm_InbandNoise_Monitor_NSeries() 164 s16 ODM_InbandNoise_Monitor(void *pDM_VOID, u8 bPauseDIG, u8 IGIValue, u32 max_time) in ODM_InbandNoise_Monitor() argument 166 return odm_InbandNoise_Monitor_NSeries(pDM_VOID, bPauseDIG, IGIValue, max_time); in ODM_InbandNoise_Monitor()
|
D | odm_NoiseMonitor.h | 36 u32 max_time
|
D | hal_com.c | 1324 pinfo->chan, pinfo->bPauseDIG, pinfo->IGIValue, pinfo->max_time); in SetHalODMVar() 1327 …nfo->chan] = ODM_InbandNoise_Monitor(podmpriv, pinfo->bPauseDIG, pinfo->IGIValue, pinfo->max_time); in SetHalODMVar()
|
/Linux-v5.4/drivers/media/usb/dvb-usb/ |
D | dibusb-mc-common.c | 40 .max_time = 0x196, 74 .max_time = 0x51,
|
D | dib0700_devices.c | 74 .max_time = 0x196, 79 .max_time = 0x196,
|
/Linux-v5.4/drivers/media/dvb-frontends/ |
D | dib3000mc.h | 25 u16 max_time; member
|
D | dib3000mc.c | 379 dib3000mc_write_word(state, 36, state->cfg->max_time); in dib3000mc_init()
|
/Linux-v5.4/drivers/scsi/snic/ |
D | snic_stats.h | 25 atomic64_t max_time; /* Max time to process IO */ member
|
D | snic_io.c | 567 if (duration > atomic64_read(&snic->s_stats.io.max_time)) in snic_calc_io_process_time() 568 atomic64_set(&snic->s_stats.io.max_time, duration); in snic_calc_io_process_time()
|
D | snic_debugfs.c | 193 maxio_tm = (u64) atomic64_read(&stats->io.max_time); in snic_stats_show()
|
/Linux-v5.4/include/linux/ |
D | pm_wakeup.h | 52 ktime_t max_time; member
|
/Linux-v5.4/fs/ |
D | fs-writeback.c | 631 unsigned long avg_time, max_bytes, max_time; in wbc_detach_inode() local 661 max_time = DIV_ROUND_UP((max_bytes >> PAGE_SHIFT) << WB_FRN_TIME_SHIFT, in wbc_detach_inode() 664 avg_time += (max_time >> WB_FRN_TIME_AVG_SHIFT) - in wbc_detach_inode() 667 avg_time = max_time; /* immediate catch up on first run */ in wbc_detach_inode() 669 if (max_time >= avg_time / WB_FRN_TIME_CUT_DIV) { in wbc_detach_inode() 680 slots = min(DIV_ROUND_UP(max_time, WB_FRN_HIST_UNIT), in wbc_detach_inode()
|
/Linux-v5.4/drivers/staging/rtl8723bs/include/ |
D | hal_com.h | 295 u32 max_time;/* ms */ member
|
/Linux-v5.4/Documentation/ABI/testing/ |
D | sysfs-devices-system-cpu | 547 /sys/devices/system/cpu/umwait_control/max_time 562 max_time: Read/write interface to control umwait maximum time
|
/Linux-v5.4/mm/ |
D | slub.c | 4480 long max_time; member 4550 if (age > l->max_time) in add_location() 4551 l->max_time = age; in add_location() 4586 l->max_time = age; in add_location() 4660 l->max_time); in list_locations()
|
/Linux-v5.4/drivers/staging/rtl8723bs/os_dep/ |
D | ioctl_linux.c | 4824 info.max_time = 100;/* ms */ in rtw_get_wireless_stats()
|
/Linux-v5.4/drivers/staging/rtl8723bs/core/ |
D | rtw_mlme_ext.c | 4358 info.max_time = channel_scan_time_ms/2;/* ms */ in site_survey()
|