diff --git a/src/net/netdevice.c b/src/net/netdevice.c index 460de89c..59a50205 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 ); } }