diff options
-rw-r--r-- | drivers/net/virtio_net.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c index 5450eac9e263..9a3b85e55ccc 100644 --- a/drivers/net/virtio_net.c +++ b/drivers/net/virtio_net.c | |||
@@ -94,9 +94,7 @@ static void receive_skb(struct net_device *dev, struct sk_buff *skb, | |||
94 | BUG_ON(len > MAX_PACKET_LEN); | 94 | BUG_ON(len > MAX_PACKET_LEN); |
95 | 95 | ||
96 | skb_trim(skb, len); | 96 | skb_trim(skb, len); |
97 | skb->protocol = eth_type_trans(skb, dev); | 97 | |
98 | pr_debug("Receiving skb proto 0x%04x len %i type %i\n", | ||
99 | ntohs(skb->protocol), skb->len, skb->pkt_type); | ||
100 | dev->stats.rx_bytes += skb->len; | 98 | dev->stats.rx_bytes += skb->len; |
101 | dev->stats.rx_packets++; | 99 | dev->stats.rx_packets++; |
102 | 100 | ||
@@ -106,6 +104,10 @@ static void receive_skb(struct net_device *dev, struct sk_buff *skb, | |||
106 | goto frame_err; | 104 | goto frame_err; |
107 | } | 105 | } |
108 | 106 | ||
107 | skb->protocol = eth_type_trans(skb, dev); | ||
108 | pr_debug("Receiving skb proto 0x%04x len %i type %i\n", | ||
109 | ntohs(skb->protocol), skb->len, skb->pkt_type); | ||
110 | |||
109 | if (hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) { | 111 | if (hdr->gso_type != VIRTIO_NET_HDR_GSO_NONE) { |
110 | pr_debug("GSO!\n"); | 112 | pr_debug("GSO!\n"); |
111 | switch (hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { | 113 | switch (hdr->gso_type & ~VIRTIO_NET_HDR_GSO_ECN) { |