diff options
author | Eric Dumazet <dada1@cosmosbay.com> | 2007-04-19 19:16:32 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 01:23:34 -0400 |
commit | b7aa0bf70c4afb9e38be25f5c0922498d0f8684c (patch) | |
tree | 4bc9d61031f4eb40d73887d6bde09e7d6bf2b259 /net/ipv6 | |
parent | 3927f2e8f9afa3424bb51ca81f7abac01ffd0005 (diff) |
[NET]: convert network timestamps to ktime_t
We currently use a special structure (struct skb_timeval) and plain
'struct timeval' to store packet timestamps in sk_buffs and struct
sock.
This has some drawbacks :
- Fixed resolution of micro second.
- Waste of space on 64bit platforms where sizeof(struct timeval)=16
I suggest using ktime_t that is a nice abstraction of high resolution
time services, currently capable of nanosecond resolution.
As sizeof(ktime_t) is 8 bytes, using ktime_t in 'struct sock' permits
a 8 byte shrink of this structure on 64bit architectures. Some other
structures also benefit from this size reduction (struct ipq in
ipv4/ip_fragment.c, struct frag_queue in ipv6/reassembly.c, ...)
Once this ktime infrastructure adopted, we can more easily provide
nanosecond resolution on top of it. (ioctl SIOCGSTAMPNS and/or
SO_TIMESTAMPNS/SCM_TIMESTAMPNS)
Note : this patch includes a bug correction in
compat_sock_get_timestamp() where a "err = 0;" was missing (so this
syscall returned -ENOENT instead of 0)
Signed-off-by: Eric Dumazet <dada1@cosmosbay.com>
CC: Stephen Hemminger <shemminger@linux-foundation.org>
CC: John find <linux.kernel@free.fr>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6')
-rw-r--r-- | net/ipv6/exthdrs.c | 2 | ||||
-rw-r--r-- | net/ipv6/netfilter/ip6_queue.c | 6 | ||||
-rw-r--r-- | net/ipv6/netfilter/nf_conntrack_reasm.c | 6 | ||||
-rw-r--r-- | net/ipv6/reassembly.c | 6 |
4 files changed, 11 insertions, 9 deletions
diff --git a/net/ipv6/exthdrs.c b/net/ipv6/exthdrs.c index fb39604c3d09..a963a31e5fb6 100644 --- a/net/ipv6/exthdrs.c +++ b/net/ipv6/exthdrs.c | |||
@@ -255,7 +255,7 @@ static int ipv6_dest_hao(struct sk_buff **skbp, int optoff) | |||
255 | ipv6_addr_copy(&ipv6h->saddr, &hao->addr); | 255 | ipv6_addr_copy(&ipv6h->saddr, &hao->addr); |
256 | ipv6_addr_copy(&hao->addr, &tmp_addr); | 256 | ipv6_addr_copy(&hao->addr, &tmp_addr); |
257 | 257 | ||
258 | if (skb->tstamp.off_sec == 0) | 258 | if (skb->tstamp.tv64 == 0) |
259 | __net_timestamp(skb); | 259 | __net_timestamp(skb); |
260 | 260 | ||
261 | return 1; | 261 | return 1; |
diff --git a/net/ipv6/netfilter/ip6_queue.c b/net/ipv6/netfilter/ip6_queue.c index fdb30a5916e5..66a2c4135251 100644 --- a/net/ipv6/netfilter/ip6_queue.c +++ b/net/ipv6/netfilter/ip6_queue.c | |||
@@ -195,6 +195,7 @@ ipq_build_packet_message(struct ipq_queue_entry *entry, int *errp) | |||
195 | struct sk_buff *skb; | 195 | struct sk_buff *skb; |
196 | struct ipq_packet_msg *pmsg; | 196 | struct ipq_packet_msg *pmsg; |
197 | struct nlmsghdr *nlh; | 197 | struct nlmsghdr *nlh; |
198 | struct timeval tv; | ||
198 | 199 | ||
199 | read_lock_bh(&queue_lock); | 200 | read_lock_bh(&queue_lock); |
200 | 201 | ||
@@ -239,8 +240,9 @@ ipq_build_packet_message(struct ipq_queue_entry *entry, int *errp) | |||
239 | 240 | ||
240 | pmsg->packet_id = (unsigned long )entry; | 241 | pmsg->packet_id = (unsigned long )entry; |
241 | pmsg->data_len = data_len; | 242 | pmsg->data_len = data_len; |
242 | pmsg->timestamp_sec = entry->skb->tstamp.off_sec; | 243 | tv = ktime_to_timeval(entry->skb->tstamp); |
243 | pmsg->timestamp_usec = entry->skb->tstamp.off_usec; | 244 | pmsg->timestamp_sec = tv.tv_sec; |
245 | pmsg->timestamp_usec = tv.tv_usec; | ||
244 | pmsg->mark = entry->skb->mark; | 246 | pmsg->mark = entry->skb->mark; |
245 | pmsg->hook = entry->info->hook; | 247 | pmsg->hook = entry->info->hook; |
246 | pmsg->hw_protocol = entry->skb->protocol; | 248 | pmsg->hw_protocol = entry->skb->protocol; |
diff --git a/net/ipv6/netfilter/nf_conntrack_reasm.c b/net/ipv6/netfilter/nf_conntrack_reasm.c index 15ab1e3e8b56..c311b9a12ca6 100644 --- a/net/ipv6/netfilter/nf_conntrack_reasm.c +++ b/net/ipv6/netfilter/nf_conntrack_reasm.c | |||
@@ -82,7 +82,7 @@ struct nf_ct_frag6_queue | |||
82 | struct sk_buff *fragments; | 82 | struct sk_buff *fragments; |
83 | int len; | 83 | int len; |
84 | int meat; | 84 | int meat; |
85 | struct timeval stamp; | 85 | ktime_t stamp; |
86 | unsigned int csum; | 86 | unsigned int csum; |
87 | __u8 last_in; /* has first/last segment arrived? */ | 87 | __u8 last_in; /* has first/last segment arrived? */ |
88 | #define COMPLETE 4 | 88 | #define COMPLETE 4 |
@@ -542,7 +542,7 @@ static int nf_ct_frag6_queue(struct nf_ct_frag6_queue *fq, struct sk_buff *skb, | |||
542 | fq->fragments = skb; | 542 | fq->fragments = skb; |
543 | 543 | ||
544 | skb->dev = NULL; | 544 | skb->dev = NULL; |
545 | skb_get_timestamp(skb, &fq->stamp); | 545 | fq->stamp = skb->tstamp; |
546 | fq->meat += skb->len; | 546 | fq->meat += skb->len; |
547 | atomic_add(skb->truesize, &nf_ct_frag6_mem); | 547 | atomic_add(skb->truesize, &nf_ct_frag6_mem); |
548 | 548 | ||
@@ -648,7 +648,7 @@ nf_ct_frag6_reasm(struct nf_ct_frag6_queue *fq, struct net_device *dev) | |||
648 | 648 | ||
649 | head->next = NULL; | 649 | head->next = NULL; |
650 | head->dev = dev; | 650 | head->dev = dev; |
651 | skb_set_timestamp(head, &fq->stamp); | 651 | head->tstamp = fq->stamp; |
652 | head->nh.ipv6h->payload_len = htons(payload_len); | 652 | head->nh.ipv6h->payload_len = htons(payload_len); |
653 | 653 | ||
654 | /* Yes, and fold redundant checksum back. 8) */ | 654 | /* Yes, and fold redundant checksum back. 8) */ |
diff --git a/net/ipv6/reassembly.c b/net/ipv6/reassembly.c index 7034c54e5010..1dde449379fb 100644 --- a/net/ipv6/reassembly.c +++ b/net/ipv6/reassembly.c | |||
@@ -88,7 +88,7 @@ struct frag_queue | |||
88 | int len; | 88 | int len; |
89 | int meat; | 89 | int meat; |
90 | int iif; | 90 | int iif; |
91 | struct timeval stamp; | 91 | ktime_t stamp; |
92 | unsigned int csum; | 92 | unsigned int csum; |
93 | __u8 last_in; /* has first/last segment arrived? */ | 93 | __u8 last_in; /* has first/last segment arrived? */ |
94 | #define COMPLETE 4 | 94 | #define COMPLETE 4 |
@@ -562,7 +562,7 @@ static void ip6_frag_queue(struct frag_queue *fq, struct sk_buff *skb, | |||
562 | if (skb->dev) | 562 | if (skb->dev) |
563 | fq->iif = skb->dev->ifindex; | 563 | fq->iif = skb->dev->ifindex; |
564 | skb->dev = NULL; | 564 | skb->dev = NULL; |
565 | skb_get_timestamp(skb, &fq->stamp); | 565 | fq->stamp = skb->tstamp; |
566 | fq->meat += skb->len; | 566 | fq->meat += skb->len; |
567 | atomic_add(skb->truesize, &ip6_frag_mem); | 567 | atomic_add(skb->truesize, &ip6_frag_mem); |
568 | 568 | ||
@@ -663,7 +663,7 @@ static int ip6_frag_reasm(struct frag_queue *fq, struct sk_buff **skb_in, | |||
663 | 663 | ||
664 | head->next = NULL; | 664 | head->next = NULL; |
665 | head->dev = dev; | 665 | head->dev = dev; |
666 | skb_set_timestamp(head, &fq->stamp); | 666 | head->tstamp = fq->stamp; |
667 | head->nh.ipv6h->payload_len = htons(payload_len); | 667 | head->nh.ipv6h->payload_len = htons(payload_len); |
668 | IP6CB(head)->nhoff = nhoff; | 668 | IP6CB(head)->nhoff = nhoff; |
669 | 669 | ||