net: Clarified the debug print about packet length
The print about packet length is the data part of the length and does not include the ll header. Change-Id: Ia66eb830796a572ffa416df1e6d0badcbe9f9aac Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
f6dc86c678
commit
9c72b60981
|
@ -47,7 +47,7 @@ static void net_if_tx_fiber(struct net_if *iface)
|
|||
/* Get next packet from application - wait if necessary */
|
||||
buf = nano_fifo_get(&iface->tx_queue, TICKS_UNLIMITED);
|
||||
|
||||
NET_DBG("Processing (buf %p, len %u) network packet",
|
||||
NET_DBG("Processing (buf %p, data len %u) network packet",
|
||||
buf, net_buf_frags_len(buf->frags));
|
||||
|
||||
if (api && api->send) {
|
||||
|
|
Loading…
Reference in New Issue