Home
last modified time | relevance | path

Searched refs:delay_jiffies (Results 1 – 6 of 6) sorted by relevance

/linux/drivers/extcon/
H A Dextcon-max8997.c637 int delay_jiffies; in max8997_muic_probe() local
724 delay_jiffies = in max8997_muic_probe()
727 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT); in max8997_muic_probe()
731 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT); in max8997_muic_probe()
759 delay_jiffies); in max8997_muic_probe()
H A Dextcon-max77693.c1075 int delay_jiffies; in max77693_muic_probe() local
1211 delay_jiffies = in max77693_muic_probe()
1214 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT); in max77693_muic_probe()
1218 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT); in max77693_muic_probe()
1256 delay_jiffies); in max77693_muic_probe()
H A Dextcon-max14577.c660 int delay_jiffies; in max14577_muic_probe() local
732 delay_jiffies = msecs_to_jiffies(DELAY_MS_DEFAULT); in max14577_muic_probe()
768 delay_jiffies); in max14577_muic_probe()
/linux/drivers/gpu/drm/amd/amdkfd/
H A Dkfd_device.c1243 unsigned long delay_jiffies = msecs_to_jiffies(PROCESS_ACTIVE_TIME_MS); in kgd2kfd_schedule_evict_and_restore_process()
1264 if (delay_jiffies > active_time) in kgd2kfd_schedule_evict_and_restore_process()
1265 delay_jiffies -= active_time; in kgd2kfd_schedule_evict_and_restore_process()
1267 delay_jiffies = 0; in kgd2kfd_schedule_evict_and_restore_process()
1273 p->lead_thread->pid, delay_jiffies); in kfd_gtt_sa_init()
1274 schedule_delayed_work(&p->eviction_work, delay_jiffies); in kfd_gtt_sa_init()
1236 unsigned long delay_jiffies = msecs_to_jiffies(PROCESS_ACTIVE_TIME_MS); kgd2kfd_schedule_evict_and_restore_process() local
/linux/fs/smb/client/
H A Dtrace.h1399 unsigned long delay_jiffies),
1400 TP_ARGS(tid, sesid, fid, delay_jiffies),
1405 __field(unsigned long, delay_jiffies)
1411 __entry->delay_jiffies = delay_jiffies;
1413 TP_printk("sid=0x%llx tid=0x%x fid=0x%llx delay_jiffies=%lu",
1414 __entry->sesid, __entry->tid, __entry->fid, __entry->delay_jiffies)
/linux/drivers/gpu/drm/panthor/
H A Dpanthor_sched.c2656 u64 delay_jiffies, now; in sched_resume_tick()
2667 delay_jiffies = min_t(unsigned long, sched->resched_target - now, ULONG_MAX); in sched_resume_tick()
2669 delay_jiffies = 0; in sched_resume_tick()
2671 sched_queue_delayed_work(sched, tick, delay_jiffies);
2654 u64 delay_jiffies, now; sched_resume_tick() local