From: Michael Brown Date: Mon, 17 Sep 2007 17:57:32 +0000 (+0100) Subject: Minor debug message improvement. X-Git-Tag: v0.9.3~71^2~26 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=387a1a85561bd828d82bc4b69ca18dab5fc10831;p=thirdparty%2Fipxe.git Minor debug message improvement. --- diff --git a/src/net/netdevice.c b/src/net/netdevice.c index 460de89cf..59a50205b 100644 --- a/src/net/netdevice.c +++ b/src/net/netdevice.c @@ -476,8 +476,9 @@ static void net_step ( struct process *process __unused ) { * NIC faster than they arrive. */ if ( ( iobuf = netdev_rx_dequeue ( netdev ) ) ) { - DBGC ( netdev, "NETDEV %p processing %p\n", - netdev, iobuf ); + DBGC ( netdev, "NETDEV %p processing %p (%p+%zx)\n", + netdev, iobuf, iobuf->data, + iob_len ( iobuf ) ); netdev->ll_protocol->rx ( iobuf, netdev ); } }