Home
last modified time | relevance | path

Searched refs:next_jiffies (Results 1 – 3 of 3) sorted by relevance

/linux/net/core/
H A Dgen_estimator.c57 unsigned long next_jiffies; member
103 est->next_jiffies += ((HZ/4) << est->intvl_log); in est_timer()
105 if (unlikely(time_after_eq(jiffies, est->next_jiffies))) { in est_timer()
107 est->next_jiffies = jiffies + 1; in est_timer()
109 mod_timer(&est->timer, est->next_jiffies); in est_timer()
187 est->next_jiffies = jiffies + ((HZ/4) << intvl_log); in gen_new_estimator()
189 mod_timer(&est->timer, est->next_jiffies); in gen_new_estimator()
/linux/drivers/scsi/aacraid/
H A Dcommsup.c2304 unsigned long next_jiffies = jiffies + HZ; in aac_command_thread() local
2305 unsigned long next_check_jiffies = next_jiffies; in aac_command_thread()
2328 if ((time_before(next_check_jiffies,next_jiffies)) in aac_command_thread()
2330 next_check_jiffies = next_jiffies; in aac_command_thread()
2338 if (!time_before(next_check_jiffies,next_jiffies) in aac_command_thread()
2339 && ((difference = next_jiffies - jiffies) <= 0)) { in aac_command_thread()
2369 next_jiffies = jiffies + difference; in aac_command_thread()
2370 if (time_before(next_check_jiffies,next_jiffies)) in aac_command_thread()
/linux/sound/pci/asihpi/
H A Dasihpi.c719 unsigned int remdata, xfercount, next_jiffies; in snd_card_asihpi_timer_function() local
812 next_jiffies = ((on_card_bytes - dpcm->period_bytes) * HZ / dpcm->bytes_per_sec); in snd_card_asihpi_timer_function()
814 next_jiffies = ((dpcm->period_bytes - remdata) * HZ / dpcm->bytes_per_sec); in snd_card_asihpi_timer_function()
816 next_jiffies = max(next_jiffies, 1U); in snd_card_asihpi_timer_function()
817 dpcm->timer.expires = jiffies + next_jiffies; in snd_card_asihpi_timer_function()
819 next_jiffies, pcm_buf_dma_ofs, newdata, xfercount); in snd_card_asihpi_timer_function()