Home
last modified time | relevance | path

Searched refs:expire (Results 1 – 62 of 62) sorted by relevance

/linux-4.1.27/arch/alpha/include/asm/
Dpal.h148 qemu_set_alarm_rel(unsigned long expire) in qemu_set_alarm_rel() argument
151 register unsigned long a1 __asm__("$17") = expire; in qemu_set_alarm_rel()
160 qemu_set_alarm_abs(unsigned long expire) in qemu_set_alarm_abs() argument
163 register unsigned long a1 __asm__("$17") = expire; in qemu_set_alarm_abs()
/linux-4.1.27/drivers/parport/
Dieee1284_ops.c61 unsigned long expire = jiffies + dev->timeout; in parport_ieee1284_write_compat() local
90 if (!time_before (jiffies, expire)) in parport_ieee1284_write_compat()
112 } while (time_before (jiffies, expire)); in parport_ieee1284_write_compat()
137 if (time_before (jiffies, expire)) in parport_ieee1284_write_compat()
429 unsigned long expire = jiffies + port->cad->timeout; in parport_ieee1284_ecp_write_data()
471 if (time_after_eq (jiffies, expire)) break; in parport_ieee1284_ecp_write_data()
518 unsigned long expire = jiffies + dev->timeout; in parport_ieee1284_ecp_read_data()
533 if (!time_before (jiffies, expire)) in parport_ieee1284_ecp_read_data()
665 unsigned long expire = jiffies + port->cad->timeout; in parport_ieee1284_ecp_write_addr()
707 if (time_after_eq (jiffies, expire)) break; in parport_ieee1284_ecp_write_addr()
Dparport_ip32.c1249 unsigned long expire) in parport_ip32_fifo_wait_break() argument
1252 if (time_after(jiffies, expire)) { in parport_ip32_fifo_wait_break()
1279 unsigned long expire; in parport_ip32_fwp_wait_polling() local
1283 expire = jiffies + physport->cad->timeout; in parport_ip32_fwp_wait_polling()
1286 if (parport_ip32_fifo_wait_break(p, expire)) in parport_ip32_fwp_wait_polling()
1321 unsigned long expire; in parport_ip32_fwp_wait_interrupt() local
1327 expire = jiffies + physport->cad->timeout; in parport_ip32_fwp_wait_interrupt()
1330 if (parport_ip32_fifo_wait_break(p, expire)) in parport_ip32_fwp_wait_interrupt()
1442 unsigned long expire; in parport_ip32_fifo_write_block_dma() local
1454 expire = jiffies + physport->cad->timeout; in parport_ip32_fifo_write_block_dma()
[all …]
Dparport_pc.c160 unsigned long expire = jiffies + p->physport->cad->timeout; in change_mode() local
176 if (time_after_eq(jiffies, expire)) in change_mode()
476 unsigned long expire = jiffies + port->physport->cad->timeout; in parport_pc_fifo_write_block_pio() local
497 if (need_resched() && time_before(jiffies, expire)) in parport_pc_fifo_write_block_pio()
517 if (!time_before(jiffies, expire)) { in parport_pc_fifo_write_block_pio()
525 time_before(jiffies, expire)) in parport_pc_fifo_write_block_pio()
535 expire = jiffies + port->cad->timeout; in parport_pc_fifo_write_block_pio()
608 unsigned long expire = jiffies + port->physport->cad->timeout; in parport_pc_fifo_write_block_dma() local
646 if (!time_before(jiffies, expire)) { in parport_pc_fifo_write_block_dma()
714 unsigned long expire; in parport_pc_compat_write_block_pio() local
[all …]
/linux-4.1.27/include/uapi/linux/netfilter/
Dxt_hashlimit.h36 __u32 expire; /* when do entries expire? */ member
60 __u32 expire; /* when do entries expire? */ member
/linux-4.1.27/Documentation/filesystems/
Dautofs4-mount-control.txt16 expire timeout and requesting expire checks. As is explained below,
32 and expire" of nested mount trees have the file system mounted directly
131 a mount or expire operation completes a status is returned to the
153 expire in the daemon has become far to complex because umount
155 the number of times to call the expire ioctl. This involves scanning
158 way the expire was done long ago. That is, when an expire request is
161 appropriate status to the daemon. At the moment we just expire one
272 Return mount and expire result status from user space to the kernel.
276 by user space in the foregoing mount or expire request. The arg2 field
312 Set the expire timeout for mounts within an autofs mount point.
[all …]
Dautomount-support.txt91 expiration list and will not expire.
Dcoda.txt1498 call is issued when tokens for a user expire or are flushed.
/linux-4.1.27/drivers/net/wireless/b43/
Ddebugfs.c422 unsigned long expire) in calc_expire_secs() argument
424 expire = time + expire; in calc_expire_secs()
426 if (time_after(now, expire)) in calc_expire_secs()
428 if (expire < now) { in calc_expire_secs()
430 expire -= MAX_JIFFY_OFFSET; in calc_expire_secs()
433 B43_WARN_ON(expire < now); in calc_expire_secs()
435 return (expire - now) / HZ; in calc_expire_secs()
Dlo.c939 unsigned long expire; in b43_lo_g_maintanance_work() local
951 expire = now - B43_LO_PWRVEC_EXPIRE; in b43_lo_g_maintanance_work()
952 if (time_before(lo->pwr_vec_read_time, expire)) { in b43_lo_g_maintanance_work()
963 expire = now - B43_LO_CALIB_EXPIRE; in b43_lo_g_maintanance_work()
965 if (!time_before(cal->calib_time, expire)) in b43_lo_g_maintanance_work()
/linux-4.1.27/drivers/hwspinlock/
Dhwspinlock_core.c181 unsigned long expire; in __hwspin_lock_timeout() local
183 expire = msecs_to_jiffies(to) + jiffies; in __hwspin_lock_timeout()
195 if (time_is_before_eq_jiffies(expire)) in __hwspin_lock_timeout()
/linux-4.1.27/fs/autofs4/
DMakefile7 autofs4-objs := init.o inode.o root.o symlink.o waitq.o expire.o dev-ioctl.o
Ddev-ioctl.c479 how = param->expire.how; in autofs_dev_ioctl_expire()
/linux-4.1.27/net/llc/
Daf_llc.c1059 llc->ack_timer.expire = opt * HZ; in llc_ui_setsockopt()
1064 llc->pf_cycle_timer.expire = opt * HZ; in llc_ui_setsockopt()
1069 llc->rej_sent_timer.expire = opt * HZ; in llc_ui_setsockopt()
1074 llc->busy_state_timer.expire = opt * HZ; in llc_ui_setsockopt()
1134 val = llc->ack_timer.expire / HZ; break; in llc_ui_getsockopt()
1136 val = llc->pf_cycle_timer.expire / HZ; break; in llc_ui_getsockopt()
1138 val = llc->rej_sent_timer.expire / HZ; break; in llc_ui_getsockopt()
1140 val = llc->busy_state_timer.expire / HZ; break; in llc_ui_getsockopt()
Dllc_conn.c904 llc->ack_timer.expire = sysctl_llc2_ack_timeout; in llc_sk_init()
908 llc->pf_cycle_timer.expire = sysctl_llc2_p_timeout; in llc_sk_init()
912 llc->rej_sent_timer.expire = sysctl_llc2_rej_timeout; in llc_sk_init()
916 llc->busy_state_timer.expire = sysctl_llc2_busy_timeout; in llc_sk_init()
Dllc_c_ac.c613 jiffies + llc->busy_state_timer.expire); in llc_conn_ac_set_remote_busy()
846 jiffies + llc->pf_cycle_timer.expire); in llc_conn_ac_start_p_timer()
1126 mod_timer(&llc->ack_timer.timer, jiffies + llc->ack_timer.expire); in llc_conn_ac_start_ack_timer()
1135 jiffies + llc->rej_sent_timer.expire); in llc_conn_ac_start_rej_timer()
1146 jiffies + llc->ack_timer.expire); in llc_conn_ac_start_ack_tmr_if_not_running()
1194 jiffies + llc->ack_timer.expire); in llc_conn_ac_upd_nr_received()
/linux-4.1.27/drivers/block/
Dmg_disk.c216 unsigned long expire, cur_jiffies; in mg_wait() local
220 expire = jiffies + msecs_to_jiffies(msec); in mg_wait()
260 } while (time_before(cur_jiffies, expire)); in mg_wait()
262 if (time_after_eq(cur_jiffies, expire) && msec) in mg_wait()
270 unsigned long expire; in mg_wait_rstout() local
272 expire = jiffies + msecs_to_jiffies(msec); in mg_wait_rstout()
273 while (time_before(jiffies, expire)) { in mg_wait_rstout()
/linux-4.1.27/fs/
Dselect.c401 ktime_t expire, *to = NULL; in do_select() local
525 expire = timespec_to_ktime(*end_time); in do_select()
526 to = &expire; in do_select()
785 ktime_t expire, *to = NULL; in do_poll() local
857 expire = timespec_to_ktime(*end_time); in do_poll()
858 to = &expire; in do_poll()
/linux-4.1.27/include/crypto/
Dmcryptd.h51 unsigned long expire; member
/linux-4.1.27/net/ipv4/
Dinet_connection_sock.c539 int *expire, int *resend) in syn_ack_recalc() argument
542 *expire = req->num_timeout >= thresh; in syn_ack_recalc()
546 *expire = req->num_timeout >= thresh && in syn_ack_recalc()
609 int qlen, expire = 0, resend = 0; in reqsk_timer_handler() local
652 &expire, &resend); in reqsk_timer_handler()
654 if (!expire && in reqsk_timer_handler()
/linux-4.1.27/include/uapi/linux/
Dauto_fs4.h125 struct autofs_packet_expire expire; member
/linux-4.1.27/drivers/mmc/host/
Dsunxi-mmc.c252 unsigned long expire = jiffies + msecs_to_jiffies(250); in sunxi_mmc_reset_host() local
258 } while (time_before(jiffies, expire) && (rval & SDXC_HARDWARE_RESET)); in sunxi_mmc_reset_host()
384 unsigned long expire = jiffies + msecs_to_jiffies(1000); in sunxi_mmc_send_manual_stop() local
404 time_before(jiffies, expire)); in sunxi_mmc_send_manual_stop()
598 unsigned long expire = jiffies + msecs_to_jiffies(250); in sunxi_mmc_oclk_onoff() local
614 } while (time_before(jiffies, expire) && (rval & SDXC_START)); in sunxi_mmc_oclk_onoff()
/linux-4.1.27/Documentation/networking/
Dipvs-sysctl.txt80 7 - connection new/expire, lookup and synchronization
137 If this feature is enabled, the load balancer will expire the
148 When set to a non-zero value, the load balancer will expire
156 If this feature is enabled, the load balancer will expire the
DPLIP.txt92 quite possible for the trigger timeout to expire between two such polls, as
Dip-sysctl.txt168 Maximum time-to-live of entries. Unused entries will expire after
Dbonding.txt2435 to expire, the interface that first went into that state will be
/linux-4.1.27/drivers/input/serio/
Dsun4i-ps2.c194 unsigned long expire = jiffies + msecs_to_jiffies(10000); in sun4i_ps2_write() local
202 } while (time_before(jiffies, expire)); in sun4i_ps2_write()
/linux-4.1.27/include/linux/
Dauto_dev-ioctl.h113 struct args_expire expire; member
Dmmzone.h264 s8 expire; member
/linux-4.1.27/include/net/
Dllc_conn.h29 unsigned long expire; /* timer expire time */ member
/linux-4.1.27/drivers/usb/serial/
Dgeneric.c251 unsigned long expire; in usb_serial_generic_wait_until_sent() local
267 expire = jiffies + timeout; in usb_serial_generic_wait_until_sent()
272 if (timeout && time_after(jiffies, expire)) in usb_serial_generic_wait_until_sent()
/linux-4.1.27/net/netfilter/
Dxt_hashlimit.c628 dh->expires = now + msecs_to_jiffies(hinfo->cfg.expire); in hashlimit_mt()
631 dh->expires = jiffies + msecs_to_jiffies(hinfo->cfg.expire); in hashlimit_mt()
636 dh->expires = now + msecs_to_jiffies(hinfo->cfg.expire); in hashlimit_mt()
669 if (info->cfg.gc_interval == 0 || info->cfg.expire == 0) in hashlimit_mt_check()
/linux-4.1.27/kernel/time/
Dtimer.c1474 unsigned long expire; in schedule_timeout() local
1505 expire = timeout + jiffies; in schedule_timeout()
1508 __mod_timer(&timer, expire, false, TIMER_NOT_PINNED); in schedule_timeout()
1515 timeout = expire - jiffies; in schedule_timeout()
/linux-4.1.27/drivers/staging/gdm72xx/
Dgdm_usb.c702 unsigned long flags, flags2, expire; in k_mode_thread() local
715 expire = jiffies + K_WAIT_TIME; in k_mode_thread()
716 while (time_before(jiffies, expire)) in k_mode_thread()
/linux-4.1.27/arch/x86/crypto/sha-mb/
Dsha1_mb.c482 rctx->tag.expire = next_flush; in sha1_mb_add_list()
834 if (time_before(cur_time, rctx->tag.expire)) in sha1_mb_flusher()
852 next_flush = rctx->tag.expire; in sha1_mb_flusher()
/linux-4.1.27/mm/
Dvmstat.c483 __this_cpu_write(p->expire, 3); in refresh_cpu_vm_stats()
496 if (!__this_cpu_read(p->expire) || in refresh_cpu_vm_stats()
504 __this_cpu_write(p->expire, 0); in refresh_cpu_vm_stats()
508 if (__this_cpu_dec_return(p->expire)) in refresh_cpu_vm_stats()
Dmemory_hotplug.c1671 unsigned long pfn, nr_pages, expire; in __offline_pages() local
1711 expire = jiffies + timeout; in __offline_pages()
1717 if (time_after(jiffies, expire)) in __offline_pages()
/linux-4.1.27/Documentation/filesystems/nfs/
Drpc-cache.txt27 items after they expire, and are no longer in-use.
33 - clean out old entries as they expire.
151 expire, a request is lodged for that cache item to be updated by
Didmapper.txt35 expire. This parameter is optional for /usr/sbin/nfs.idmap. When the timeout
/linux-4.1.27/drivers/acpi/apei/
Dghes.c666 unsigned long expire; in ghes_add_timer() local
673 expire = jiffies + msecs_to_jiffies(g->notify.poll_interval); in ghes_add_timer()
674 ghes->timer.expires = round_jiffies_relative(expire); in ghes_add_timer()
/linux-4.1.27/security/keys/
DKconfig38 removed if they expire (a default timeout is set upon creation).
/linux-4.1.27/arch/mips/kvm/
Demulate.c427 ktime_t expire; in kvm_mips_resume_hrtimer() local
433 expire = ktime_add_ns(now, delta); in kvm_mips_resume_hrtimer()
437 hrtimer_start(&vcpu->arch.comparecount_timer, expire, HRTIMER_MODE_ABS); in kvm_mips_resume_hrtimer()
663 ktime_t expire, now; in kvm_mips_set_count_ctl() local
693 expire = ktime_add_ns(vcpu->arch.count_resume, delta); in kvm_mips_set_count_ctl()
697 if (ktime_compare(now, expire) >= 0) in kvm_mips_set_count_ctl()
/linux-4.1.27/net/sunrpc/auth_gss/
Dauth_gss.c1415 unsigned long expire; in gss_key_timeout() local
1420 expire = ctx->gc_expiry - (gss_key_expire_timeo * HZ); in gss_key_timeout()
1422 if (!ctx || time_after(now, expire)) in gss_key_timeout()
1558 unsigned long begin, expire; in gss_cred_is_negative_entry() local
1563 expire = begin + gss_expired_cred_retry_delay * HZ; in gss_cred_is_negative_entry()
1565 if (time_in_range_open(now, begin, expire)) in gss_cred_is_negative_entry()
/linux-4.1.27/arch/x86/kvm/
Dlapic.c1221 ktime_t expire; in start_apic_timer() local
1236 expire = ktime_add_ns(now, ns); in start_apic_timer()
1237 expire = ktime_sub_ns(expire, lapic_timer_advance_ns); in start_apic_timer()
1239 expire, HRTIMER_MODE_ABS); in start_apic_timer()
/linux-4.1.27/drivers/net/wireless/rt2x00/
Drt2x00usb.c48 unsigned long expire = jiffies + msecs_to_jiffies(timeout); in rt2x00usb_vendor_request() local
65 } while (time_before(jiffies, expire)); in rt2x00usb_vendor_request()
/linux-4.1.27/drivers/usb/misc/
Duss720.c295 unsigned long expire = jiffies + pp->physport->cad->timeout; in change_mode() local
305 if (time_after_eq (jiffies, expire)) in change_mode()
Dusbtest.c423 unsigned long expire; in simple_io() local
436 expire = msecs_to_jiffies(SIMPLE_IO_TIMEOUT); in simple_io()
437 if (!wait_for_completion_timeout(&completion, expire)) { in simple_io()
/linux-4.1.27/drivers/platform/x86/
Dintel_ips.c964 unsigned long seqno_timestamp, expire, last_msecs, last_sample_period; in ips_monitor() local
1106 expire = jiffies + msecs_to_jiffies(IPS_SAMPLE_PERIOD); in ips_monitor()
1109 mod_timer(&timer, expire); in ips_monitor()
/linux-4.1.27/net/decnet/
Ddn_route.c203 unsigned long expire = 120 * HZ; in dn_dst_check_expire() local
212 (now - rt->dst.lastuse) < expire) { in dn_dst_check_expire()
235 unsigned long expire = 10 * HZ; in dn_dst_gc() local
245 (now - rt->dst.lastuse) < expire) { in dn_dst_gc()
/linux-4.1.27/drivers/usb/core/
Dmessage.c46 unsigned long expire; in usb_start_wait_urb() local
56 expire = timeout ? msecs_to_jiffies(timeout) : MAX_SCHEDULE_TIMEOUT; in usb_start_wait_urb()
57 if (!wait_for_completion_timeout(&ctx.done, expire)) { in usb_start_wait_urb()
/linux-4.1.27/include/linux/netfilter/ipset/
Dip_set.h173 void (*expire)(struct ip_set *set); member
/linux-4.1.27/drivers/tty/serial/
Dserial_core.c1445 unsigned long char_time, expire; in uart_wait_until_sent() local
1477 expire = jiffies + timeout; in uart_wait_until_sent()
1480 port->line, jiffies, expire); in uart_wait_until_sent()
1491 if (time_after(jiffies, expire)) in uart_wait_until_sent()
/linux-4.1.27/drivers/staging/rtl8188eu/core/
Drtw_xmit.c2141 unsigned long expire; in rtw_sctx_wait() local
2144 expire = sctx->timeout_ms ? msecs_to_jiffies(sctx->timeout_ms) : MAX_SCHEDULE_TIMEOUT; in rtw_sctx_wait()
2145 if (!wait_for_completion_timeout(&sctx->done, expire)) { in rtw_sctx_wait()
/linux-4.1.27/drivers/net/wireless/orinoco/
Dorinoco_usb.c314 unsigned long expire) in ezusb_mod_timer() argument
318 mod_timer(timer, expire); in ezusb_mod_timer()
/linux-4.1.27/drivers/staging/rtl8723au/core/
Drtw_xmit.c2324 unsigned long expire; in rtw_sctx_wait23a() local
2327 expire = sctx->timeout_ms ? msecs_to_jiffies(sctx->timeout_ms) : in rtw_sctx_wait23a()
2329 if (!wait_for_completion_timeout(&sctx->done, expire)) { in rtw_sctx_wait23a()
/linux-4.1.27/block/
Dcfq-iosched.c3053 goto expire; in cfq_select_queue()
3093 goto expire; in cfq_select_queue()
3134 expire: in cfq_select_queue()
4305 goto expire; in cfq_idle_slice_timer()
4325 expire: in cfq_idle_slice_timer()
/linux-4.1.27/Documentation/timers/
Dhrtimers.txt46 I/O. The vast majority of those timers never expire and are rarely
/linux-4.1.27/drivers/gpu/drm/nouveau/nvkm/subdev/pmu/fuc/
Dkernel.fuc363 // update the watchdog if this timer should expire first,
/linux-4.1.27/drivers/gpu/drm/i915/
Di915_gem.c1281 unsigned long expire; in __i915_wait_request() local
1284 expire = missed_irq(dev_priv, ring) ? jiffies + 1 : timeout_expire; in __i915_wait_request()
1285 mod_timer(&timer, expire); in __i915_wait_request()
/linux-4.1.27/net/core/
Ddev.c3236 bool expire = true; in rps_may_expire_flow() local
3248 expire = false; in rps_may_expire_flow()
3251 return expire; in rps_may_expire_flow()
/linux-4.1.27/Documentation/power/
Druntime_pm.txt209 timer is running and will expire at that time, otherwise the timer is not
490 - calculate the time when the current autosuspend delay period will expire,
/linux-4.1.27/Documentation/security/
Dkeys.txt75 (*) Each key can be set to expire at a specific time by the key type's
1412 Similarly, the kernel may attempt to update an expired or a soon to expire key