Searched defs:ts (Results 1 - 17 of 17) sorted by relevance

/net/netfilter/
H A Dnf_conntrack_amanda.c62 struct ts_config *ts; member in struct:__anon95
91 struct ts_state ts; local
116 memset(&ts, 0, sizeof(ts));
118 search[SEARCH_CONNECT].ts, &ts);
123 memset(&ts, 0, sizeof(ts));
125 search[SEARCH_NEWLINE].ts, &ts);
[all...]
H A Dxt_qtaguid_print.h21 char *pp_tag_stat(struct tag_stat *ts);
61 static inline char *pp_tag_stat(struct tag_stat *ts) argument
H A Dxt_IDLETIMER.c87 struct timespec *ts)
93 if ((ts->tv_sec - timer->last_modified_timer.tv_sec) > timer->timeout ||
100 ts->tv_sec = temp.tv_sec;
101 ts->tv_nsec = temp.tv_nsec;
107 ts->tv_sec = temp.tv_sec;
108 ts->tv_nsec = temp.tv_nsec;
125 struct timespec ts; local
136 get_monotonic_boottime(&ts);
137 state = check_for_delayed_trigger(timer, &ts);
156 time_ns = timespec_to_ns(&ts);
86 check_for_delayed_trigger(struct idletimer_tg *timer, struct timespec *ts) argument
238 struct timespec ts; local
[all...]
H A Dxt_qtaguid_print.c152 char *pp_tag_stat(struct tag_stat *ts) argument
159 if (!ts) {
164 tn_str = pp_tag_node(&ts->tn);
165 counters_str = pp_data_counters(&ts->counters, true);
166 parent_counters_str = pp_data_counters(ts->parent_counters, false);
169 ts, tn_str, counters_str, parent_counters_str);
H A Dnfnetlink_log.c531 struct nfulnl_msg_packet_timestamp ts; local
533 ts.sec = cpu_to_be64(tv.tv_sec);
534 ts.usec = cpu_to_be64(tv.tv_usec);
536 if (nla_put(inst->skb, NFULA_TIMESTAMP, sizeof(ts), &ts))
H A Dnfnetlink_queue_core.c461 struct nfqnl_msg_packet_timestamp ts; local
463 ts.sec = cpu_to_be64(tv.tv_sec);
464 ts.usec = cpu_to_be64(tv.tv_usec);
466 if (nla_put(skb, NFQA_TIMESTAMP, sizeof(ts), &ts))
/net/ipv4/
H A Dsyncookies.c65 u32 ts, ts_now = tcp_time_stamp; local
74 ts = ts_now & ~TSMASK;
75 ts |= options;
76 if (ts > ts_now) {
77 ts >>= TSBITS;
78 ts--;
79 ts <<= TSBITS;
80 ts |= options;
82 return ts;
H A Dtcp_input.c831 const int ts)
840 if (ts)
830 tcp_update_reordering(struct sock *sk, const int metric, const int ts) argument
/net/wireless/
H A Dcore.h126 unsigned long ts; member in struct:cfg80211_internal_bss
/net/9p/
H A Dtrans_fd.c235 struct p9_trans_fd *ts = NULL; local
238 ts = client->trans;
240 if (!ts)
243 if (!ts->rd->f_op->poll)
246 if (!ts->wr->f_op->poll)
249 ret = ts->rd->f_op->poll(ts->rd, pt);
253 if (ts->rd != ts->wr) {
254 n = ts
274 struct p9_trans_fd *ts = NULL; local
417 struct p9_trans_fd *ts = NULL; local
581 struct p9_trans_fd *ts = client->trans; local
663 struct p9_trans_fd *ts = client->trans; local
787 struct p9_trans_fd *ts = kzalloc(sizeof(struct p9_trans_fd), local
867 struct p9_trans_fd *ts; local
[all...]
/net/
H A Dcompat.c249 struct timespec *ts = (struct timespec *)data; local
251 cts[i].tv_sec = ts[i].tv_sec;
252 cts[i].tv_nsec = ts[i].tv_nsec;
484 struct timespec ts; local
493 ts = ktime_to_timespec(sk->sk_stamp);
494 if (ts.tv_sec == -1)
496 if (ts.tv_sec == 0) {
498 ts = ktime_to_timespec(sk->sk_stamp);
501 if (put_user(ts.tv_sec, &ctv->tv_sec) ||
502 put_user(ts
[all...]
H A Dsocket.c726 struct timespec ts; local
727 skb_get_timestampns(skb, &ts);
729 sizeof(ts), &ts);
735 ktime_to_timespec_cond(skb->tstamp, tss.ts + 0))
739 ktime_to_timespec_cond(shhwtstamps->hwtstamp, tss.ts + 2))
/net/core/
H A Dsock.c2413 struct timespec ts; local
2416 ts = ktime_to_timespec(sk->sk_stamp);
2417 if (ts.tv_sec == -1)
2419 if (ts.tv_sec == 0) {
2421 ts = ktime_to_timespec(sk->sk_stamp);
2423 return copy_to_user(userstamp, &ts, sizeof(ts)) ? -EFAULT : 0;
/net/sched/
H A Dsch_api.c1882 struct timespec ts; local
1884 hrtimer_get_res(CLOCK_MONOTONIC, &ts);
1888 (u32)NSEC_PER_SEC/(u32)ktime_to_ns(timespec_to_ktime(ts)));
H A Dsch_qfq.c749 static inline u64 qfq_round_down(u64 ts, unsigned int shift) argument
751 return ts & ~((1ULL << shift) - 1);
1333 /* Update agg ts and schedule agg for service */
/net/mac80211/
H A Dutil.c2436 u64 ts = status->mactime; local
2490 ts -= mpdu_len * 8 * 10 / rate;
2492 ts += mpdu_offset * 8 * 10 / rate;
2494 return ts;
/net/packet/
H A Daf_packet.c433 static __u32 tpacket_get_timestamp(struct sk_buff *skb, struct timespec *ts, argument
440 ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts))
443 if (ktime_to_timespec_cond(skb->tstamp, ts))
453 struct timespec ts; local
456 if (!(ts_status = tpacket_get_timestamp(skb, &ts, po->tp_tstamp)))
462 h.h1->tp_sec = ts.tv_sec;
463 h.h1->tp_usec = ts.tv_nsec / NSEC_PER_USEC;
466 h.h2->tp_sec = ts.tv_sec;
467 h.h2->tp_nsec = ts.tv_nsec;
795 /* Get the ts o
801 struct timespec ts; local
830 struct timespec ts; local
1874 struct timespec ts; local
2086 __u32 ts; local
[all...]

Completed in 157 milliseconds