aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h26
1 files changed, 5 insertions, 21 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 5992f65b4184..f9441b5f8d13 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -27,6 +27,7 @@
27#include <net/checksum.h> 27#include <net/checksum.h>
28#include <linux/rcupdate.h> 28#include <linux/rcupdate.h>
29#include <linux/dmaengine.h> 29#include <linux/dmaengine.h>
30#include <linux/hrtimer.h>
30 31
31#define HAVE_ALLOC_SKB /* For the drivers to know */ 32#define HAVE_ALLOC_SKB /* For the drivers to know */
32#define HAVE_ALIGNABLE_SKB /* Ditto 8) */ 33#define HAVE_ALIGNABLE_SKB /* Ditto 8) */
@@ -156,11 +157,6 @@ struct skb_shared_info {
156#define SKB_DATAREF_SHIFT 16 157#define SKB_DATAREF_SHIFT 16
157#define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1) 158#define SKB_DATAREF_MASK ((1 << SKB_DATAREF_SHIFT) - 1)
158 159
159struct skb_timeval {
160 u32 off_sec;
161 u32 off_usec;
162};
163
164 160
165enum { 161enum {
166 SKB_FCLONE_UNAVAILABLE, 162 SKB_FCLONE_UNAVAILABLE,
@@ -233,7 +229,7 @@ struct sk_buff {
233 struct sk_buff *prev; 229 struct sk_buff *prev;
234 230
235 struct sock *sk; 231 struct sock *sk;
236 struct skb_timeval tstamp; 232 ktime_t tstamp;
237 struct net_device *dev; 233 struct net_device *dev;
238 int iif; 234 int iif;
239 /* 4 byte hole on 64 bit*/ 235 /* 4 byte hole on 64 bit*/
@@ -1365,26 +1361,14 @@ extern void skb_add_mtu(int mtu);
1365 */ 1361 */
1366static inline void skb_get_timestamp(const struct sk_buff *skb, struct timeval *stamp) 1362static inline void skb_get_timestamp(const struct sk_buff *skb, struct timeval *stamp)
1367{ 1363{
1368 stamp->tv_sec = skb->tstamp.off_sec; 1364 *stamp = ktime_to_timeval(skb->tstamp);
1369 stamp->tv_usec = skb->tstamp.off_usec;
1370} 1365}
1371 1366
1372/** 1367static inline void __net_timestamp(struct sk_buff *skb)
1373 * skb_set_timestamp - set timestamp of a skb
1374 * @skb: skb to set stamp of
1375 * @stamp: pointer to struct timeval to get stamp from
1376 *
1377 * Timestamps are stored in the skb as offsets to a base timestamp.
1378 * This function converts a struct timeval to an offset and stores
1379 * it in the skb.
1380 */
1381static inline void skb_set_timestamp(struct sk_buff *skb, const struct timeval *stamp)
1382{ 1368{
1383 skb->tstamp.off_sec = stamp->tv_sec; 1369 skb->tstamp = ktime_get_real();
1384 skb->tstamp.off_usec = stamp->tv_usec;
1385} 1370}
1386 1371
1387extern void __net_timestamp(struct sk_buff *skb);
1388 1372
1389extern __sum16 __skb_checksum_complete(struct sk_buff *skb); 1373extern __sum16 __skb_checksum_complete(struct sk_buff *skb);
1390 1374