diff options
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index df229bd5f1a9..748f254b50cc 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -960,6 +960,11 @@ static inline void skb_reserve(struct sk_buff *skb, int len) | |||
960 | skb->tail += len; | 960 | skb->tail += len; |
961 | } | 961 | } |
962 | 962 | ||
963 | static inline void skb_reset_mac_header(struct sk_buff *skb) | ||
964 | { | ||
965 | skb->mac.raw = skb->data; | ||
966 | } | ||
967 | |||
963 | /* | 968 | /* |
964 | * CPUs often take a performance hit when accessing unaligned memory | 969 | * CPUs often take a performance hit when accessing unaligned memory |
965 | * locations. The actual performance hit varies, it can be small if the | 970 | * locations. The actual performance hit varies, it can be small if the |