diff options
Diffstat (limited to 'net/ipv4/ip_output.c')
-rw-r--r-- | net/ipv4/ip_output.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/net/ipv4/ip_output.c b/net/ipv4/ip_output.c index 30ab7b6ab761..daebd93fd8a0 100644 --- a/net/ipv4/ip_output.c +++ b/net/ipv4/ip_output.c | |||
@@ -7,7 +7,7 @@ | |||
7 | * | 7 | * |
8 | * Version: $Id: ip_output.c,v 1.100 2002/02/01 22:01:03 davem Exp $ | 8 | * Version: $Id: ip_output.c,v 1.100 2002/02/01 22:01:03 davem Exp $ |
9 | * | 9 | * |
10 | * Authors: Ross Biro, <bir7@leland.Stanford.Edu> | 10 | * Authors: Ross Biro |
11 | * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> | 11 | * Fred N. van Kempen, <waltje@uWalt.NL.Mugnet.ORG> |
12 | * Donald Becker, <becker@super.org> | 12 | * Donald Becker, <becker@super.org> |
13 | * Alan Cox, <Alan.Cox@linux.org> | 13 | * Alan Cox, <Alan.Cox@linux.org> |
@@ -111,6 +111,7 @@ static int ip_dev_loopback_xmit(struct sk_buff *newskb) | |||
111 | #ifdef CONFIG_NETFILTER_DEBUG | 111 | #ifdef CONFIG_NETFILTER_DEBUG |
112 | nf_debug_ip_loopback_xmit(newskb); | 112 | nf_debug_ip_loopback_xmit(newskb); |
113 | #endif | 113 | #endif |
114 | nf_reset(newskb); | ||
114 | netif_rx(newskb); | 115 | netif_rx(newskb); |
115 | return 0; | 116 | return 0; |
116 | } | 117 | } |
@@ -195,6 +196,8 @@ static inline int ip_finish_output2(struct sk_buff *skb) | |||
195 | nf_debug_ip_finish_output2(skb); | 196 | nf_debug_ip_finish_output2(skb); |
196 | #endif /*CONFIG_NETFILTER_DEBUG*/ | 197 | #endif /*CONFIG_NETFILTER_DEBUG*/ |
197 | 198 | ||
199 | nf_reset(skb); | ||
200 | |||
198 | if (hh) { | 201 | if (hh) { |
199 | int hh_alen; | 202 | int hh_alen; |
200 | 203 | ||