qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [5416] Make network packet debug functions more accessible


From: Blue Swirl
Subject: [Qemu-devel] [5416] Make network packet debug functions more accessible
Date: Sat, 04 Oct 2008 07:25:46 +0000

Revision: 5416
          http://svn.sv.gnu.org/viewvc/?view=rev&root=qemu&revision=5416
Author:   blueswir1
Date:     2008-10-04 07:25:46 +0000 (Sat, 04 Oct 2008)

Log Message:
-----------
Make network packet debug functions more accessible

Modified Paths:
--------------
    trunk/vl.c

Modified: trunk/vl.c
===================================================================
--- trunk/vl.c  2008-10-04 07:24:27 UTC (rev 5415)
+++ trunk/vl.c  2008-10-04 07:25:46 UTC (rev 5416)
@@ -151,6 +151,8 @@
 
 //#define DEBUG_UNUSED_IOPORT
 //#define DEBUG_IOPORT
+//#define DEBUG_NET
+//#define DEBUG_SLIRP
 
 #ifdef TARGET_PPC
 #define DEFAULT_RAM_SIZE 144
@@ -3861,7 +3863,7 @@
 /***********************************************************/
 /* network device redirectors */
 
-__attribute__ (( unused ))
+#if defined(DEBUG_NET) || defined(DEBUG_SLIRP)
 static void hex_dump(FILE *f, const uint8_t *buf, int size)
 {
     int len, i, j, c;
@@ -3887,6 +3889,7 @@
         fprintf(f, "\n");
     }
 }
+#endif
 
 static int parse_macaddr(uint8_t *macaddr, const char *p)
 {
@@ -4105,7 +4108,7 @@
     VLANState *vlan = vc1->vlan;
     VLANClientState *vc;
 
-#if 0
+#ifdef DEBUG_NET
     printf("vlan %d send:\n", vlan->id);
     hex_dump(stdout, buf, size);
 #endif
@@ -4130,7 +4133,7 @@
 
 void slirp_output(const uint8_t *pkt, int pkt_len)
 {
-#if 0
+#ifdef DEBUG_SLIRP
     printf("slirp output:\n");
     hex_dump(stdout, pkt, pkt_len);
 #endif
@@ -4141,7 +4144,7 @@
 
 static void slirp_receive(void *opaque, const uint8_t *buf, int size)
 {
-#if 0
+#ifdef DEBUG_SLIRP
     printf("slirp input:\n");
     hex_dump(stdout, buf, size);
 #endif






reply via email to

[Prev in Thread] Current Thread [Next in Thread]