X-Git-Url: http://v3vee.org/palacios/gitweb/gitweb.cgi?a=blobdiff_plain;f=palacios%2Fsrc%2Fvnet%2Fvnet_core.c;h=38c2f1d2f818ac6cc9303295be28749b8515ce3b;hb=e39ac677ad4eb2c2db111ce08eb6172c61f5001f;hp=42c9d3bc571da1bc8776df776e6c2d9af1ba8956;hpb=0e3a7655e9bf22eab05696605072bc051aeeb1ad;p=palacios.git diff --git a/palacios/src/vnet/vnet_core.c b/palacios/src/vnet/vnet_core.c index 42c9d3b..38c2f1d 100644 --- a/palacios/src/vnet/vnet_core.c +++ b/palacios/src/vnet/vnet_core.c @@ -29,7 +29,7 @@ #define Vnet_Debug(fmt, args...) #endif -int vnet_debug = 0; +int net_debug = 0; struct eth_hdr { uint8_t dst_mac[ETH_ALEN]; @@ -447,7 +447,7 @@ int vnet_tx_one_pkt(struct v3_vnet_pkt * pkt, void * private_data) { Vnet_Print(2, "VNET/P Core: cpu %d: pkt (size %d, src_id:%d, src_type: %d, dst_id: %d, dst_type: %d)\n", cpu, pkt->size, pkt->src_id, pkt->src_type, pkt->dst_id, pkt->dst_type); - if(vnet_debug >= 4){ + if(net_debug >= 4){ v3_hexdump(pkt->data, pkt->size, NULL, 0); }