Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 243233
b: refs/heads/master
c: e433430
h: refs/heads/master
i:
  243231: 37f9550
v: v3
  • Loading branch information
Steffen Klassert authored and David S. Miller committed Mar 28, 2011
1 parent fedd915 commit 9583312
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3bc07321ccc236f693ce1b6a8786f0a2e38bb87e
refs/heads/master: e433430a0ca9cc1b851a83ac3b305e955b64880a
2 changes: 1 addition & 1 deletion trunk/include/net/dst.h
Original file line number Diff line number Diff line change
Expand Up @@ -345,7 +345,7 @@ static inline void skb_tunnel_rx(struct sk_buff *skb, struct net_device *dev)

static inline struct dst_entry *skb_dst_pop(struct sk_buff *skb)
{
struct dst_entry *child = skb_dst(skb)->child;
struct dst_entry *child = dst_clone(skb_dst(skb)->child);

skb_dst_drop(skb);
return child;
Expand Down
2 changes: 1 addition & 1 deletion trunk/net/xfrm/xfrm_output.c
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ static int xfrm_output_one(struct sk_buff *skb, int err)
err = -EHOSTUNREACH;
goto error_nolock;
}
skb_dst_set(skb, dst_clone(dst));
skb_dst_set(skb, dst);
x = dst->xfrm;
} while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));

Expand Down

0 comments on commit 9583312

Please sign in to comment.