Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 277543
b: refs/heads/master
c: ad79eef
h: refs/heads/master
i:
  277541: c3f1b39
  277539: 90189f9
  277535: 55b98b4
v: v3
  • Loading branch information
RongQing.Li authored and David S. Miller committed Nov 14, 2011
1 parent 7bd77eb commit f0a1db4
Show file tree
Hide file tree
Showing 2 changed files with 8 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: 5219e4c93c281377700206ae2b3ba4d91653d2ba
refs/heads/master: ad79eefc42d56cb851a2b28a86e481cf1161005e
9 changes: 7 additions & 2 deletions trunk/net/ipv4/ipconfig.c
Original file line number Diff line number Diff line change
Expand Up @@ -822,8 +822,13 @@ static void __init ic_bootp_send_if(struct ic_device *d, unsigned long jiffies_d
skb->dev = dev;
skb->protocol = htons(ETH_P_IP);
if (dev_hard_header(skb, dev, ntohs(skb->protocol),
dev->broadcast, dev->dev_addr, skb->len) < 0 ||
dev_queue_xmit(skb) < 0)
dev->broadcast, dev->dev_addr, skb->len) < 0) {
kfree_skb(skb);
printk("E");
return;
}

if (dev_queue_xmit(skb) < 0)
printk("E");
}

Expand Down

0 comments on commit f0a1db4

Please sign in to comment.