Searched refs:next_jiffies (Results 1 – 5 of 5) sorted by relevance
/linux-6.6.21/net/core/ |
D | gen_estimator.c | 57 unsigned long next_jiffies; member 101 est->next_jiffies += ((HZ/4) << est->intvl_log); in est_timer() 103 if (unlikely(time_after_eq(jiffies, est->next_jiffies))) { in est_timer() 105 est->next_jiffies = jiffies + 1; in est_timer() 107 mod_timer(&est->timer, est->next_jiffies); in est_timer() 185 est->next_jiffies = jiffies + ((HZ/4) << intvl_log); in gen_new_estimator() 187 mod_timer(&est->timer, est->next_jiffies); in gen_new_estimator()
|
/linux-6.6.21/drivers/gpu/drm/msm/ |
D | msm_perf.c | 35 unsigned long next_jiffies; member 45 if (time_after(perf->next_jiffies, start_jiffies)) { in wait_sample() 47 perf->next_jiffies - start_jiffies; in wait_sample() 54 perf->next_jiffies += SAMPLE_TIME; in wait_sample() 174 perf->next_jiffies = jiffies + SAMPLE_TIME; in perf_open()
|
/linux-6.6.21/drivers/scsi/aacraid/ |
D | commsup.c | 2433 unsigned long next_jiffies = jiffies + HZ; in aac_command_thread() local 2434 unsigned long next_check_jiffies = next_jiffies; in aac_command_thread() 2457 if ((time_before(next_check_jiffies,next_jiffies)) in aac_command_thread() 2459 next_check_jiffies = next_jiffies; in aac_command_thread() 2467 if (!time_before(next_check_jiffies,next_jiffies) in aac_command_thread() 2468 && ((difference = next_jiffies - jiffies) <= 0)) { in aac_command_thread() 2498 next_jiffies = jiffies + difference; in aac_command_thread() 2499 if (time_before(next_check_jiffies,next_jiffies)) in aac_command_thread()
|
/linux-6.6.21/sound/pci/asihpi/ |
D | asihpi.c | 726 unsigned int remdata, xfercount, next_jiffies; in snd_card_asihpi_timer_function() local 818 next_jiffies = ((on_card_bytes - dpcm->period_bytes) * HZ / dpcm->bytes_per_sec); in snd_card_asihpi_timer_function() 820 next_jiffies = ((dpcm->period_bytes - remdata) * HZ / dpcm->bytes_per_sec); in snd_card_asihpi_timer_function() 822 next_jiffies = max(next_jiffies, 1U); in snd_card_asihpi_timer_function() 823 dpcm->timer.expires = jiffies + next_jiffies; in snd_card_asihpi_timer_function() 825 next_jiffies, pcm_buf_dma_ofs, newdata, xfercount); in snd_card_asihpi_timer_function()
|
/linux-6.6.21/drivers/net/ethernet/micrel/ |
D | ksz884x.c | 5115 unsigned long next_jiffies; in netdev_open() local 5120 next_jiffies = jiffies + HZ * 2; in netdev_open() 5134 next_jiffies += HZ * 1; in netdev_open() 5135 hw_priv->counter[i].time = next_jiffies; in netdev_open() 6266 unsigned long next_jiffies; in mib_read_work() local 6270 next_jiffies = jiffies; in mib_read_work() 6292 next_jiffies += HZ * 1 * hw->mib_port_cnt; in mib_read_work() 6293 hw_priv->counter[i].time = next_jiffies; in mib_read_work()
|