diff options
| -rw-r--r-- | drivers/vhost/net.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/drivers/vhost/net.c b/drivers/vhost/net.c index 2764e0fbf29b..2f6185c845e0 100644 --- a/drivers/vhost/net.c +++ b/drivers/vhost/net.c | |||
| @@ -177,8 +177,8 @@ static void handle_tx(struct vhost_net *net) | |||
| 177 | break; | 177 | break; |
| 178 | } | 178 | } |
| 179 | if (err != len) | 179 | if (err != len) |
| 180 | pr_err("Truncated TX packet: " | 180 | pr_debug("Truncated TX packet: " |
| 181 | " len %d != %zd\n", err, len); | 181 | " len %d != %zd\n", err, len); |
| 182 | vhost_add_used_and_signal(&net->dev, vq, head, 0); | 182 | vhost_add_used_and_signal(&net->dev, vq, head, 0); |
| 183 | total_len += len; | 183 | total_len += len; |
| 184 | if (unlikely(total_len >= VHOST_NET_WEIGHT)) { | 184 | if (unlikely(total_len >= VHOST_NET_WEIGHT)) { |
| @@ -275,8 +275,8 @@ static void handle_rx(struct vhost_net *net) | |||
| 275 | } | 275 | } |
| 276 | /* TODO: Should check and handle checksum. */ | 276 | /* TODO: Should check and handle checksum. */ |
| 277 | if (err > len) { | 277 | if (err > len) { |
| 278 | pr_err("Discarded truncated rx packet: " | 278 | pr_debug("Discarded truncated rx packet: " |
| 279 | " len %d > %zd\n", err, len); | 279 | " len %d > %zd\n", err, len); |
| 280 | vhost_discard_vq_desc(vq); | 280 | vhost_discard_vq_desc(vq); |
| 281 | continue; | 281 | continue; |
| 282 | } | 282 | } |
