[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 02/16] net: Fix build error when DEBUG_NET is on
From: |
Jason Wang |
Subject: |
[PULL 02/16] net: Fix build error when DEBUG_NET is on |
Date: |
Fri, 12 Mar 2021 14:16:12 +0800 |
From: Bin Meng <bin.meng@windriver.com>
"qemu-common.h" should be included to provide the forward declaration
of qemu_hexdump() when DEBUG_NET is on.
Signed-off-by: Bin Meng <bin.meng@windriver.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Signed-off-by: Jason Wang <jasowang@redhat.com>
---
net/net.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/net.c b/net/net.c
index 6002ba5..9c784da 100644
--- a/net/net.c
+++ b/net/net.c
@@ -23,6 +23,7 @@
*/
#include "qemu/osdep.h"
+#include "qemu-common.h"
#include "net/net.h"
#include "clients.h"
--
2.7.4
- [PULL 00/16] Net patches, Jason Wang, 2021/03/12
- [PULL 04/16] net: unbreak well-form id check for "-nic", Jason Wang, 2021/03/12
- [PULL 06/16] net: introduce qemu_receive_packet(), Jason Wang, 2021/03/12
- [PULL 05/16] e1000: fail early for evil descriptor, Jason Wang, 2021/03/12
- [PULL 07/16] e1000: switch to use qemu_receive_packet() for loopback, Jason Wang, 2021/03/12
- [PULL 08/16] dp8393x: switch to use qemu_receive_packet() for loopback packet, Jason Wang, 2021/03/12
- [PULL 09/16] msf2-mac: switch to use qemu_receive_packet() for loopback, Jason Wang, 2021/03/12