summaryrefslogtreecommitdiffstats
path: root/include/linux/skbuff.h
diff options
context:
space:
mode:
authorStephen Hemminger2005-09-07 00:48:03 +0200
committerDavid S. Miller2005-09-07 00:48:03 +0200
commitf2c383988d68c91a7d474b7cf26c0a2df49bbafe (patch)
tree77981ee635498d88417ccb7742214cbbd3b1a466 /include/linux/skbuff.h
parent[NETLINK]: Don't prevent creating sockets when no kernel socket is registered (diff)
downloadkernel-qcow2-linux-f2c383988d68c91a7d474b7cf26c0a2df49bbafe.tar.gz
kernel-qcow2-linux-f2c383988d68c91a7d474b7cf26c0a2df49bbafe.tar.xz
kernel-qcow2-linux-f2c383988d68c91a7d474b7cf26c0a2df49bbafe.zip
[NET]: skb_get/set_timestamp use const
The new timestamp get/set routines should have const attribute on parameters (helps to indicate direction). Signed-off-by: Stephen Hemminger <shemminger@osdl.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r--include/linux/skbuff.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h
index 42edce6abe23..da7da9c0ed1b 100644
--- a/include/linux/skbuff.h
+++ b/include/linux/skbuff.h
@@ -1251,7 +1251,7 @@ extern void skb_add_mtu(int mtu);
* This function converts the offset back to a struct timeval and stores
* it in stamp.
*/
-static inline void skb_get_timestamp(struct sk_buff *skb, struct timeval *stamp)
+static inline void skb_get_timestamp(const struct sk_buff *skb, struct timeval *stamp)
{
stamp->tv_sec = skb->tstamp.off_sec;
stamp->tv_usec = skb->tstamp.off_usec;
@@ -1270,7 +1270,7 @@ static inline void skb_get_timestamp(struct sk_buff *skb, struct timeval *stamp)
* This function converts a struct timeval to an offset and stores
* it in the skb.
*/
-static inline void skb_set_timestamp(struct sk_buff *skb, struct timeval *stamp)
+static inline void skb_set_timestamp(struct sk_buff *skb, const struct timeval *stamp)
{
skb->tstamp.off_sec = stamp->tv_sec - skb_tv_base.tv_sec;
skb->tstamp.off_usec = stamp->tv_usec - skb_tv_base.tv_usec;