david/ipxe
david
/
ipxe
Archived
1
0
Fork 0

Minor debug message improvement.

This commit is contained in:
Michael Brown 2007-09-17 18:57:32 +01:00
parent 2c56ede6f8
commit 387a1a8556
1 changed files with 3 additions and 2 deletions

View File

@ -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 );
}
}