Home
last modified time | relevance | path

Searched refs:endtime (Results 1 - 25 of 25) sorted by relevance

/kernel/linux/linux-5.10/kernel/
H A Dasync.c328 ktime_t starttime, delta, endtime; in async_synchronize_cookie_domain() local
338 endtime = ktime_get(); in async_synchronize_cookie_domain()
339 delta = ktime_sub(endtime, starttime); in async_synchronize_cookie_domain()
/kernel/linux/linux-6.6/net/sunrpc/auth_gss/
H A Dgss_krb5_mech.c412 ctx->endtime = (time64_t)time32; in gss_import_v2_context()
470 time64_t *endtime, gfp_t gfp_mask) in gss_krb5_import_sec_context()
488 if (endtime) in gss_krb5_import_sec_context()
489 *endtime = ctx->endtime; in gss_krb5_import_sec_context()
469 gss_krb5_import_sec_context(const void *p, size_t len, struct gss_ctx *ctx_id, time64_t *endtime, gfp_t gfp_mask) gss_krb5_import_sec_context() argument
H A Dgss_krb5_wrap.c138 return (kctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_krb5_wrap_v2()
213 if (now > kctx->endtime) in gss_krb5_unwrap_v2()
H A Dgss_krb5_unseal.c119 if (now > ctx->endtime) in gss_krb5_verify_mic_v2()
H A Dgss_krb5_seal.c132 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_krb5_get_mic_v2()
H A Dgss_mech_switch.c356 time64_t *endtime, in gss_import_sec_context()
364 *ctx_id, endtime, gfp_mask); in gss_import_sec_context()
353 gss_import_sec_context(const void *input_token, size_t bufsize, struct gss_api_mech *mech, struct gss_ctx **ctx_id, time64_t *endtime, gfp_t gfp_mask) gss_import_sec_context() argument
H A Dgss_krb5_internal.h79 time64_t endtime; member
/kernel/linux/linux-5.10/net/sunrpc/auth_gss/
H A Dgss_krb5_unseal.c129 if (now > ctx->endtime) in gss_verify_mic_v1()
198 if (now > ctx->endtime) in gss_verify_mic_v2()
H A Dgss_krb5_mech.c258 ctx->endtime = (time64_t)time32; in gss_import_v1_context()
499 ctx->endtime = (time64_t)time32; in gss_import_v2_context()
561 time64_t *endtime, in gss_import_sec_context_kerberos()
579 if (endtime) in gss_import_sec_context_kerberos()
580 *endtime = ctx->endtime; in gss_import_sec_context_kerberos()
559 gss_import_sec_context_kerberos(const void *p, size_t len, struct gss_ctx *ctx_id, time64_t *endtime, gfp_t gfp_mask) gss_import_sec_context_kerberos() argument
H A Dgss_krb5_seal.c162 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_get_mic_v1()
203 return (ctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_get_mic_v2()
H A Dgss_krb5_wrap.c243 return (kctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_wrap_kerberos_v1()
323 if (now > kctx->endtime) in gss_unwrap_kerberos_v1()
456 return (kctx->endtime < now) ? GSS_S_CONTEXT_EXPIRED : GSS_S_COMPLETE; in gss_wrap_kerberos_v2()
534 if (now > kctx->endtime) in gss_unwrap_kerberos_v2()
H A Dgss_mech_switch.c356 time64_t *endtime, in gss_import_sec_context()
364 *ctx_id, endtime, gfp_mask); in gss_import_sec_context()
353 gss_import_sec_context(const void *input_token, size_t bufsize, struct gss_api_mech *mech, struct gss_ctx **ctx_id, time64_t *endtime, gfp_t gfp_mask) gss_import_sec_context() argument
/kernel/linux/linux-5.10/include/linux/sunrpc/
H A Dgss_api.h52 time64_t *endtime,
114 time64_t *endtime,
H A Dgss_krb5.h112 time64_t endtime; member
/kernel/linux/linux-6.6/include/linux/sunrpc/
H A Dgss_api.h52 time64_t *endtime,
114 time64_t *endtime,
/kernel/linux/linux-5.10/include/keys/
H A Drxrpc-type.h63 u64 endtime; /* time at which auth token expired */ member
/kernel/linux/linux-5.10/net/rxrpc/
H A Dkey.c481 rxk5->endtime = be64_to_cpup((const __be64 *) xdr); in rxrpc_preparse_xdr_rxk5()
490 rxk5->authtime, rxk5->starttime, rxk5->endtime, in rxrpc_preparse_xdr_rxk5()
537 expiry = rxrpc_u32_to_time64(token->k5->endtime); in rxrpc_preparse_xdr_rxk5()
1203 ENCODE64(token->k5->endtime); in rxrpc_read()
/kernel/linux/linux-5.10/drivers/vhost/
H A Dnet.c415 static bool vhost_can_busy_poll(unsigned long endtime) in vhost_can_busy_poll() argument
417 return likely(!need_resched() && !time_after(busy_clock(), endtime) && in vhost_can_busy_poll()
525 unsigned long endtime; in vhost_net_busy_poll() local
543 endtime = busy_clock() + busyloop_timeout; in vhost_net_busy_poll()
545 while (vhost_can_busy_poll(endtime)) { in vhost_net_busy_poll()
/kernel/linux/linux-6.6/drivers/vhost/
H A Dnet.c418 static bool vhost_can_busy_poll(unsigned long endtime) in vhost_can_busy_poll() argument
420 return likely(!need_resched() && !time_after(busy_clock(), endtime) && in vhost_can_busy_poll()
528 unsigned long endtime; in vhost_net_busy_poll() local
546 endtime = busy_clock() + busyloop_timeout; in vhost_net_busy_poll()
548 while (vhost_can_busy_poll(endtime)) { in vhost_net_busy_poll()
/kernel/linux/linux-5.10/drivers/s390/block/
H A Ddasd.c819 unsigned long strtime, irqtime, endtime, tottime; in dasd_profile_end() local
840 endtime = ((cqr->endclk - cqr->stopclk) >> 12); in dasd_profile_end()
850 dasd_profile_counter(endtime, endtime_ind); in dasd_profile_end()
858 data->dasd_sum_time_end += endtime; in dasd_profile_end()
876 data->dasd_sum_time_end += endtime; in dasd_profile_end()
894 data->dasd_sum_time_end += endtime; in dasd_profile_end()
/kernel/linux/linux-6.6/drivers/s390/block/
H A Ddasd.c753 unsigned long strtime, irqtime, endtime, tottime; in dasd_profile_end() local
774 endtime = ((cqr->endclk - cqr->stopclk) >> 12); in dasd_profile_end()
784 dasd_profile_counter(endtime, endtime_ind); in dasd_profile_end()
792 data->dasd_sum_time_end += endtime; in dasd_profile_end()
810 data->dasd_sum_time_end += endtime; in dasd_profile_end()
828 data->dasd_sum_time_end += endtime; in dasd_profile_end()
/kernel/linux/linux-5.10/kernel/rcu/
H A Drcutorture.c884 unsigned long endtime; in rcu_torture_boost() local
921 endtime = oldstarttime + test_boost_duration * HZ; in rcu_torture_boost()
923 while (time_before(jiffies, endtime)) { in rcu_torture_boost()
/kernel/linux/linux-5.10/tools/perf/ui/browsers/
H A Dhists.c2690 unsigned long endtime = act->time + symbol_conf.time_quantum; in do_run_script() local
2692 if (starttime == endtime) { /* Display 1ms as fallback */ in do_run_script()
2694 endtime += 1*NSEC_PER_MSEC; in do_run_script()
2697 timestamp__scnprintf_usec(endtime, end, sizeof end); in do_run_script()
/kernel/linux/linux-6.6/tools/perf/ui/browsers/
H A Dhists.c2695 unsigned long endtime = act->time + symbol_conf.time_quantum; in do_run_script() local
2697 if (starttime == endtime) { /* Display 1ms as fallback */ in do_run_script()
2699 endtime += 1*NSEC_PER_MSEC; in do_run_script()
2702 timestamp__scnprintf_usec(endtime, end, sizeof end); in do_run_script()
/kernel/linux/linux-6.6/kernel/rcu/
H A Drcutorture.c1079 unsigned long endtime; in rcu_torture_boost() local
1108 endtime = oldstarttime + test_boost_duration * HZ; in rcu_torture_boost()
1109 while (time_before(jiffies, endtime)) { in rcu_torture_boost()

Completed in 50 milliseconds