All the mail mirrored from lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] [v2] virtio_net: Remove BUG() to avoid machine dead
@ 2021-06-05 15:31 Xianting Tian
  2021-06-06  4:48   ` Leon Romanovsky
  2021-06-07 20:10 ` patchwork-bot+netdevbpf
  0 siblings, 2 replies; 4+ messages in thread
From: Xianting Tian @ 2021-06-05 15:31 UTC (permalink / raw)
  To: mst, jasowang, davem, kuba, linux-kernel
  Cc: virtualization, netdev, Xianting Tian

From: Xianting Tian <xianting.tian@linux.alibaba.com>

We should not directly BUG() when there is hdr error, it is
better to output a print when such error happens. Currently,
the caller of xmit_skb() already did it.

Signed-off-by: Xianting Tian <xianting.tian@linux.alibaba.com>
---
 drivers/net/virtio_net.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/net/virtio_net.c b/drivers/net/virtio_net.c
index 9b6a4a8..7f11ea4 100644
--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -1623,7 +1623,7 @@ static int xmit_skb(struct send_queue *sq, struct sk_buff *skb)
 	if (virtio_net_hdr_from_skb(skb, &hdr->hdr,
 				    virtio_is_little_endian(vi->vdev), false,
 				    0))
-		BUG();
+		return -EPROTO;
 
 	if (vi->mergeable_rx_bufs)
 		hdr->num_buffers = 0;
-- 
1.8.3.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-06-07 20:10 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-06-05 15:31 [PATCH] [v2] virtio_net: Remove BUG() to avoid machine dead Xianting Tian
2021-06-06  4:48 ` Leon Romanovsky
2021-06-06  4:48   ` Leon Romanovsky
2021-06-07 20:10 ` patchwork-bot+netdevbpf

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.