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

12

/linux-master/fs/smb/client/
H A Ddns_resolve.h17 int dns_resolve_server_name_to_ip(const char *unc, struct sockaddr *ip_addr, time64_t *expiry);
H A Ddns_resolve.c27 * @expiry: Where to return the expiry time for the dns record.
32 dns_resolve_server_name_to_ip(const char *unc, struct sockaddr *ip_addr, time64_t *expiry) argument
69 NULL, &ip, expiry, false);
74 cifs_dbg(FYI, "%s: resolved: %*.*s to %s expiry %llu\n",
76 expiry ? (*expiry) : 0);
/linux-master/block/
H A Dblk-timeout.c131 unsigned long expiry; local
142 expiry = jiffies + req->timeout;
143 WRITE_ONCE(req->deadline, expiry);
150 expiry = blk_rq_timeout(blk_round_jiffies(expiry));
153 time_before(expiry, q->timeout.expires)) {
154 unsigned long diff = q->timeout.expires - expiry;
164 mod_timer(&q->timeout, expiry);
/linux-master/security/keys/
H A Dpermission.c105 time64_t expiry = READ_ONCE(key->expiry); local
116 if (expiry) {
117 if (ktime_get_real_seconds() >= expiry)
H A Dgc.c14 * Delay between key revocation/expiry in seconds
72 void key_set_expiry(struct key *key, time64_t expiry) argument
74 key->expiry = expiry;
75 if (expiry != TIME64_MAX) {
77 expiry += key_gc_delay;
78 key_schedule_gc(expiry);
199 time64_t new_timer, limit, expiry; local
244 expiry = key->expiry;
[all...]
H A Dinternal.h170 void key_set_expiry(struct key *key, time64_t expiry);
219 time64_t expiry = key->expiry; local
221 if (expiry != TIME64_MAX) {
223 expiry += key_gc_delay;
224 if (expiry <= limit)
H A Dproc.c159 time64_t now, expiry; local
200 expiry = READ_ONCE(key->expiry);
201 if (expiry == TIME64_MAX) {
203 } else if (now >= expiry) {
206 timo = expiry - now;
H A Duser_defined.c112 key->expiry = prep->expiry;
H A Dkey.c296 key->expiry = TIME64_MAX;
466 key_set_expiry(key, prep->expiry);
510 prep.expiry = TIME64_MAX;
722 time64_t expiry = TIME64_MAX; local
728 expiry = ktime_get_real_seconds() + timeout;
729 key_set_expiry(key, expiry);
839 prep.expiry = TIME64_MAX;
1081 prep.expiry = TIME64_MAX;
1132 /* set the death time to no more than the expiry time */
/linux-master/include/keys/
H A Drxrpc-type.h26 u32 expiry; /* time at which ticket expires */ member in struct:rxkad_key
52 u32 expiry; /* time_t */ member in struct:rxrpc_key_data_v1
/linux-master/net/rxrpc/
H A Dkey.c57 time64_t expiry; local
93 token->kad->expiry = ntohl(xdr[5]);
100 _debug("EXPY: %x", token->kad->expiry);
124 expiry = rxrpc_u32_to_time64(token->kad->expiry);
125 if (expiry < prep->expiry)
126 prep->expiry = expiry;
270 * 8 4 key expiry tim
281 time64_t expiry; local
478 rxrpc_get_server_data_key(struct rxrpc_connection *conn, const void *session_key, time64_t expiry, u32 kvno) argument
[all...]
H A Dconn_client.c19 * There are two idle client connection expiry durations. If the total number
743 unsigned long expiry, conn_expires_at, now; local
761 * expedite discard by reducing the expiry timeout. We must,
765 expiry = rxrpc_conn_idle_client_expiry;
767 expiry = rxrpc_conn_idle_client_fast_expiry;
769 expiry = rxrpc_closed_conn_expiry * HZ;
771 conn_expires_at = conn->idle_timestamp + expiry;
/linux-master/drivers/scsi/device_handler/
H A Dscsi_dh_alua.c75 unsigned long expiry; member in struct:alua_port_group
541 if (!pg->expiry) {
547 pg->expiry = round_jiffies_up(jiffies + transition_tmo);
618 pg->expiry != 0 && time_before(jiffies, pg->expiry)) {
629 pg->expiry = 0;
644 pg->expiry = 0;
660 pg->expiry = jiffies + pg->transition_tmo * HZ;
724 if (time_before(jiffies, pg->expiry)) {
734 pg->expiry
[all...]
/linux-master/drivers/net/ethernet/sfc/
H A Dptp.c161 * @expiry: Time after which the packet should be delivered irrespective of
167 unsigned long expiry; member in struct:efx_ptp_match
177 * @expiry: Time which the packet arrived
184 unsigned long expiry; member in struct:efx_ptp_event_rx
213 * @expiry: time when the filter expires, in jiffies
221 unsigned long expiry; member in struct:efx_ptp_rxfilter
1188 } else if (time_after(jiffies, match->expiry)) {
1254 unsigned long expiry)
1262 rxfilter->expiry = expiry;
1251 efx_ptp_insert_filter(struct efx_nic *efx, struct list_head *filter_list, struct efx_filter_spec *spec, unsigned long expiry) argument
1291 efx_ptp_insert_ipv4_filter(struct efx_nic *efx, struct list_head *filter_list, __be32 addr, u16 port, unsigned long expiry) argument
1303 efx_ptp_insert_ipv6_filter(struct efx_nic *efx, struct list_head *filter_list, const struct in6_addr *addr, u16 port, unsigned long expiry) argument
1396 unsigned long expiry; local
[all...]
/linux-master/include/trace/events/
H A Drpcgss.h597 unsigned long expiry,
604 TP_ARGS(window_size, expiry, now, timeout, len, data),
607 __field(unsigned long, expiry)
616 __entry->expiry = expiry;
624 TP_printk("win_size=%u expiry=%lu now=%lu timeout=%u acceptor=%.*s",
625 __entry->window_size, __entry->expiry, __entry->now,
/linux-master/net/dns_resolver/
H A Ddns_query.c58 * @_expiry: Where to store the result expiry time (or NULL)
160 *_expiry = rkey->expiry;
H A Ddns_key.c128 if (prep->expiry == TIME64_MAX)
129 prep->expiry = ktime_get_real_seconds() + 1;
/linux-master/net/sunrpc/
H A Dsvcauth_unix.c176 static int __ip_map_update(struct cache_detail *cd, struct ip_map *ipm, struct unix_domain *udom, time64_t expiry);
197 time64_t expiry; local
229 err = get_expiry(&mesg, &expiry);
249 expiry);
309 struct unix_domain *udom, time64_t expiry)
318 ip.h.expiry_time = expiry;
490 /* uid expiry Ngid gid0 gid1 ... gidN-1 */
497 time64_t expiry; local
510 err = get_expiry(&mesg, &expiry);
540 ug.h.expiry_time = expiry;
308 __ip_map_update(struct cache_detail *cd, struct ip_map *ipm, struct unix_domain *udom, time64_t expiry) argument
[all...]
/linux-master/include/linux/
H A Dkey-type.h38 time64_t expiry; /* Expiry time of key */ member in struct:key_preparsed_payload
/linux-master/fs/afs/
H A Dcell.c398 time64_t now, expiry = 0; local
403 vllist = afs_dns_query(cell, &expiry);
439 if (expiry < now + min_ttl)
440 expiry = now + min_ttl;
441 else if (expiry > now + max_ttl)
442 expiry = now + max_ttl;
451 cell->dns_expiry = expiry;
463 cell->dns_expiry = expiry;
/linux-master/include/net/
H A Dmctp.h133 * - through an expiry timeout, on a per-socket timer
151 * expiry data below.
167 /* expiry timeout; valid (above) cleared on expiry */
168 unsigned long expiry; member in struct:mctp_sk_key
/linux-master/net/mctp/
H A Daf_mctp.c590 if (!time_after_eq(key->expiry, jiffies)) {
597 if (time_before(key->expiry, next_expiry))
598 next_expiry = key->expiry;
600 next_expiry = key->expiry;
660 * keys), stop any pending expiry events. the timer cannot be re-queued
/linux-master/net/sunrpc/auth_gss/
H A Dsvcauth_gss.c228 /* context token expiry major minor context token */
233 time64_t expiry; local
259 /* expiry */
260 status = get_expiry(&mesg, &expiry);
295 rsii.h.expiry_time = expiry;
467 /* contexthandle expiry [ uid gid N <n gids> mechname ...mechdata... ] */
472 time64_t expiry; local
485 /* expiry */
486 status = get_expiry(&mesg, &expiry);
573 rsci.h.expiry_time = expiry;
1232 time64_t expiry; local
[all...]
/linux-master/drivers/net/ethernet/sfc/siena/
H A Dptp.c163 * @expiry: Time after which the packet should be delivered irrespective of
170 unsigned long expiry; member in struct:efx_ptp_match
180 * @expiry: Time which the packet arrived
187 unsigned long expiry; member in struct:efx_ptp_event_rx
1168 if (time_after(jiffies, evt->expiry)) {
1240 } else if (time_after(jiffies, match->expiry)) {
1625 match->expiry = jiffies + msecs_to_jiffies(PKT_EVENT_LIFETIME_MS);
1869 evt->expiry = jiffies + msecs_to_jiffies(PKT_EVENT_LIFETIME_MS);
/linux-master/fs/nfsd/
H A Dnfscache.c267 unsigned long expiry = jiffies - RC_EXPIRE; local
283 time_before(expiry, rp->c_timestamp))

Completed in 318 milliseconds

12