diff options
Diffstat (limited to 'include/linux/skbuff.h')
-rw-r--r-- | include/linux/skbuff.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/linux/skbuff.h b/include/linux/skbuff.h index 16eef03ce0eb..5fb72da7da03 100644 --- a/include/linux/skbuff.h +++ b/include/linux/skbuff.h | |||
@@ -172,6 +172,9 @@ enum { | |||
172 | enum { | 172 | enum { |
173 | SKB_GSO_TCPV4 = 1 << 0, | 173 | SKB_GSO_TCPV4 = 1 << 0, |
174 | SKB_GSO_UDPV4 = 1 << 1, | 174 | SKB_GSO_UDPV4 = 1 << 1, |
175 | |||
176 | /* This indicates the skb is from an untrusted source. */ | ||
177 | SKB_GSO_DODGY = 1 << 2, | ||
175 | }; | 178 | }; |
176 | 179 | ||
177 | /** | 180 | /** |
@@ -1299,7 +1302,7 @@ extern void skb_split(struct sk_buff *skb, | |||
1299 | struct sk_buff *skb1, const u32 len); | 1302 | struct sk_buff *skb1, const u32 len); |
1300 | 1303 | ||
1301 | extern void skb_release_data(struct sk_buff *skb); | 1304 | extern void skb_release_data(struct sk_buff *skb); |
1302 | extern struct sk_buff *skb_segment(struct sk_buff *skb, int sg); | 1305 | extern struct sk_buff *skb_segment(struct sk_buff *skb, int features); |
1303 | 1306 | ||
1304 | static inline void *skb_header_pointer(const struct sk_buff *skb, int offset, | 1307 | static inline void *skb_header_pointer(const struct sk_buff *skb, int offset, |
1305 | int len, void *buffer) | 1308 | int len, void *buffer) |