summaryrefslogtreecommitdiffstats
path: root/include/net/ip.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/net/ip.h')
-rw-r--r--include/net/ip.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/net/ip.h b/include/net/ip.h
index 95bb77f95bcc..a2c61c36dc4a 100644
--- a/include/net/ip.h
+++ b/include/net/ip.h
@@ -185,7 +185,7 @@ static inline struct sk_buff *ip_fraglist_next(struct ip_fraglist_iter *iter)
185} 185}
186 186
187struct ip_frag_state { 187struct ip_frag_state {
188 struct iphdr *iph; 188 bool DF;
189 unsigned int hlen; 189 unsigned int hlen;
190 unsigned int ll_rs; 190 unsigned int ll_rs;
191 unsigned int mtu; 191 unsigned int mtu;
@@ -196,7 +196,7 @@ struct ip_frag_state {
196}; 196};
197 197
198void ip_frag_init(struct sk_buff *skb, unsigned int hlen, unsigned int ll_rs, 198void ip_frag_init(struct sk_buff *skb, unsigned int hlen, unsigned int ll_rs,
199 unsigned int mtu, struct ip_frag_state *state); 199 unsigned int mtu, bool DF, struct ip_frag_state *state);
200struct sk_buff *ip_frag_next(struct sk_buff *skb, 200struct sk_buff *ip_frag_next(struct sk_buff *skb,
201 struct ip_frag_state *state); 201 struct ip_frag_state *state);
202 202