aboutsummaryrefslogtreecommitdiffstats
path: root/net/ipv6/ip6_output.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/ipv6/ip6_output.c')
-rw-r--r--net/ipv6/ip6_output.c10
1 files changed, 4 insertions, 6 deletions
diff --git a/net/ipv6/ip6_output.c b/net/ipv6/ip6_output.c
index 8e950c250ada..916d2a166a9b 100644
--- a/net/ipv6/ip6_output.c
+++ b/net/ipv6/ip6_output.c
@@ -747,13 +747,11 @@ slow_path:
747 if (len < left) { 747 if (len < left) {
748 len &= ~7; 748 len &= ~7;
749 } 749 }
750 /*
751 * Allocate buffer.
752 */
753 750
754 if ((frag = alloc_skb(len + hlen + sizeof(struct frag_hdr) + 751 /* Allocate buffer */
755 hroom + troom, GFP_ATOMIC)) == NULL) { 752 frag = alloc_skb(len + hlen + sizeof(struct frag_hdr) +
756 NETDEBUG(KERN_INFO "IPv6: frag: no memory for new fragment!\n"); 753 hroom + troom, GFP_ATOMIC);
754 if (!frag) {
757 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)), 755 IP6_INC_STATS(net, ip6_dst_idev(skb_dst(skb)),
758 IPSTATS_MIB_FRAGFAILS); 756 IPSTATS_MIB_FRAGFAILS);
759 err = -ENOMEM; 757 err = -ENOMEM;