david/ipxe
Archived
1
0

Minor debug message improvement.

This commit is contained in:
Michael Brown 2007-09-17 18:57:32 +01:00
parent af303db75d
commit 1af346b531

View File

@ -476,8 +476,9 @@ static void net_step ( struct process *process __unused ) {
* NIC faster than they arrive. * NIC faster than they arrive.
*/ */
if ( ( iobuf = netdev_rx_dequeue ( netdev ) ) ) { if ( ( iobuf = netdev_rx_dequeue ( netdev ) ) ) {
DBGC ( netdev, "NETDEV %p processing %p\n", DBGC ( netdev, "NETDEV %p processing %p (%p+%zx)\n",
netdev, iobuf ); netdev, iobuf, iobuf->data,
iob_len ( iobuf ) );
netdev->ll_protocol->rx ( iobuf, netdev ); netdev->ll_protocol->rx ( iobuf, netdev );
} }
} }