Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 66928
b: refs/heads/master
c: 28692ec
h: refs/heads/master
v: v3
  • Loading branch information
Ursula Braun authored and David S. Miller committed Oct 10, 2007
1 parent 58f0d1a commit afc51d6
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 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: 59579da329b22bcddc5da0c22c61d6dc1f9eb96a
refs/heads/master: 28692ec45e58f40a998beb155fe1c0d3e1167485
7 changes: 6 additions & 1 deletion trunk/drivers/s390/net/qeth_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -2702,10 +2702,15 @@ qeth_process_inbound_buffer(struct qeth_card *card,
qeth_layer2_rebuild_skb(card, skb, hdr);
else if (hdr->hdr.l3.id == QETH_HEADER_TYPE_LAYER3)
vlan_tag = qeth_rebuild_skb(card, skb, hdr);
else { /*in case of OSN*/
else if (hdr->hdr.osn.id == QETH_HEADER_TYPE_OSN) {
skb_push(skb, sizeof(struct qeth_hdr));
skb_copy_to_linear_data(skb, hdr,
sizeof(struct qeth_hdr));
} else { /* unknown header type */
dev_kfree_skb_any(skb);
QETH_DBF_TEXT(trace, 3, "inbunkno");
QETH_DBF_HEX(control, 3, hdr, QETH_DBF_CONTROL_LEN);
continue;
}
/* is device UP ? */
if (!(card->dev->flags & IFF_UP)){
Expand Down

0 comments on commit afc51d6

Please sign in to comment.