Searched defs:now (Results 51 - 64 of 64) sorted by relevance

123

/net/ipv4/
H A Dtcp.c30 * Alan Cox : tcp_err() now handled properly. It
50 * Alan Cox : sk->keepopen now seems to work
109 * works now.
151 * now gets fed up of retrying without
168 * and TCP syn retries gets used now.
1436 /* We send an ACK if we can now advertise a non-zero window
1449 /* Send ACK now, if this read freed lots of space
1451 * We can advertise it now, if it is not less than current one.
1689 /* Well, if we have backlog, try to process it now yet. */
2658 u32 now local
[all...]
H A Dtcp_output.c98 * invalid. OK, let's make this for now:
168 const u32 now = tcp_time_stamp; local
172 (!tp->packets_out && (s32)(now - tp->lsndtime) > icsk->icsk_rto))
175 tp->lsndtime = now;
180 if ((u32)(now - icsk->icsk_ack.lrcvtime) < icsk->icsk_ack.ato &&
982 /* Calculate the MD5 hash, as we have all we need now */
1504 /* Return false, if packet can be sent now without violation Nagle's rules:
1550 /* Can at least one segment of SKB be sent right now, according to the
1589 * sent now.
1627 * should be put on the wire right now
[all...]
H A Dtcp_input.c571 * now is for the next RTT, not the current one :
631 u32 now; local
639 now = tcp_time_stamp;
648 int m = now - icsk->icsk_ack.lrcvtime;
665 icsk->icsk_ack.lrcvtime = now;
705 m -= (srtt >> 3); /* m is now error in rtt est */
708 m = -m; /* m is now abs(error) */
1035 * less than what is now known to be received by the other end (derived from
1237 struct skb_mstamp now; local
1239 skb_mstamp_get(&now);
3059 struct skb_mstamp first_ackt, last_ackt, now; local
3327 u32 now = jiffies / HZ; local
[all...]
/net/ipv6/
H A Dip6_fib.c1644 unsigned long now = jiffies; local
1651 * only if they are not in use now.
1655 if (time_after(now, rt->dst.expires)) {
1662 time_after_eq(now, rt->dst.lastuse + gc_args.timeout)) {
1690 unsigned long now; local
1704 now = jiffies;
1705 net->ipv6.ip6_rt_last_gc = now;
1709 round_jiffies(now
H A Dip6mr.c868 unsigned long now = jiffies; local
873 if (time_after(c->mfc_un.unres.expires, now)) {
875 unsigned long interval = c->mfc_un.unres.expires - now;
H A Daddrconf.c1064 unsigned long now = jiffies; local
1099 age = (now - ifp->tstamp) / HZ;
1123 age = (now - tmp_tstamp + ADDRCONF_TIMER_FUZZ_MINUS) / HZ;
1150 ift->cstamp = now;
2172 bool create, unsigned long now)
2193 age = (now - ift->cstamp) / HZ;
2213 ift->tstamp = now;
2402 unsigned long now; local
2407 now = jiffies;
2408 if (ifp->valid_lft > (now
2169 manage_tempaddrs(struct inet6_dev *idev, struct inet6_ifaddr *ifp, __u32 valid_lft, __u32 prefered_lft, bool create, unsigned long now) argument
3696 unsigned long now, next, next_sec, next_sched; local
[all...]
/net/netfilter/ipvs/
H A Dip_vs_sync.c3 * LINUX operating system. IPVS is now implemented as a module
335 sb->mesg->reserved = 0; /* old nr_conns i.e. must be zero now */
451 unsigned long now = jiffies; local
452 unsigned long n = (now + cp->timeout) & ~3UL;
502 if (time_before(now, orig - cp->timeout +
1696 /* do we have data now? */
H A Dip_vs_ctl.c3 * LINUX operating system. IPVS is now implemented as a module
799 * For now only for NAT!
1120 unsigned long now = jiffies; local
1127 if (time_before(now, dest->idle_start +
1131 dest->idle_start = max(1UL, now);
3869 smp_wmb(); /* Do we really need it now ? */
/net/sched/
H A Dsch_cbq.c161 psched_time_t now; /* Cached timestamp */ member in struct:cbq_sched_data
168 transmit just now */
357 psched_time_t now = psched_get_time(); local
360 if (cl->undertime < now) {
412 psched_tdiff_t delay = cl->undertime - q->now;
430 cl->undertime = q->now + delay;
447 delay = b->undertime - q->now;
485 psched_tdiff_t delay = cl->undertime - q->now;
492 psched_time_t sched = q->now;
500 cl->undertime = q->now
552 cbq_undelay_prio(struct cbq_sched_data *q, int prio, psched_time_t now) argument
592 psched_time_t now; local
699 psched_time_t now; local
947 psched_time_t now; local
[all...]
H A Dsch_htb.c169 s64 now; /* cached dequeue time */ member in struct:htb_sched
300 cl->pq_key = q->now + delay;
301 if (cl->pq_key == q->now)
488 * from now to time when cl will change its state.
652 diff = min_t(s64, q->now - cl->t_c, cl->mbuffer);
662 cl->t_c = q->now;
686 * next pending event (0 for no event in pq, q->now for too many events).
687 * Note: Applied are events whose have cl->pq_key <= q->now.
708 if (cl->pq_key > q->now)
712 diff = min_t(s64, q->now
[all...]
/net/sunrpc/auth_gss/
H A Dauth_gss.c215 unsigned long now = jiffies; local
228 ctx->gc_expiry = now + ((unsigned long)timeout * HZ);
278 dprintk("RPC: %s Success. gc_expiry %lu now %lu timeout %u acceptor %.*s\n",
279 __func__, ctx->gc_expiry, now, timeout, ctx->gc_acceptor.len,
1414 unsigned long now = jiffies; local
1422 if (!ctx || time_after(now, expire))
1464 /* test will now be done from generic cred */
1557 unsigned long now = jiffies; local
1565 if (time_in_range_open(now, begin, expire))
1640 /* We leave it to unwrap to calculate au_rslack. For now w
[all...]
/net/sunrpc/
H A Dcache.c45 time_t now = seconds_since_boot(); local
49 h->expiry_time = now + CACHE_NEW_EXPIRY;
50 h->last_refresh = now;
258 /* now see if we want to start an upcall */
429 /* Ok, now to clean this strand */
/net/xfrm/
H A Dxfrm_state.c383 unsigned long now = get_seconds(); local
395 x->curlft.add_time - now;
402 x->curlft.add_time = now - x->saved_tmo - 1;
412 (x->curlft.use_time ? : now) - now;
422 x->curlft.add_time - now;
434 (x->curlft.use_time ? : now) - now;
H A Dxfrm_policy.c178 unsigned long now = get_seconds(); local
192 xp->curlft.add_time - now;
200 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
208 xp->curlft.add_time - now;
218 (xp->curlft.use_time ? : xp->curlft.add_time) - now;
1634 unsigned long now = jiffies; local
1703 dst1->lastuse = now;

Completed in 293 milliseconds

123