Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 189523
b: refs/heads/master
c: 9cae9e4
h: refs/heads/master
i:
  189521: 4010b31
  189519: e9c7469
v: v3
  • Loading branch information
Ajit Khaparde authored and David S. Miller committed Apr 2, 2010
1 parent 48b51de commit 859e9b5
Show file tree
Hide file tree
Showing 2 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: 8b93b710a9cd70d67013b4b0f00df7dfda058064
refs/heads/master: 9cae9e4f8b5887d8ef46fc56c7ca97814ae741ce
4 changes: 2 additions & 2 deletions trunk/drivers/net/benet/be_main.c
Original file line number Diff line number Diff line change
Expand Up @@ -807,7 +807,7 @@ static void be_rx_compl_process(struct be_adapter *adapter,
return;
}
vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp);
vid = be16_to_cpu(vid);
vid = swab16(vid);
vlan_hwaccel_receive_skb(skb, adapter->vlan_grp, vid);
} else {
netif_receive_skb(skb);
Expand Down Expand Up @@ -884,7 +884,7 @@ static void be_rx_compl_process_gro(struct be_adapter *adapter,
napi_gro_frags(&eq_obj->napi);
} else {
vid = AMAP_GET_BITS(struct amap_eth_rx_compl, vlan_tag, rxcp);
vid = be16_to_cpu(vid);
vid = swab16(vid);

if (!adapter->vlan_grp || adapter->vlans_added == 0)
return;
Expand Down

0 comments on commit 859e9b5

Please sign in to comment.