app/testpmd: add nanosecond output for ieee1588
Testpmd was only printing out second values when printing RX/TX timestamp value, instead of both second and nanoseconds. Since resolution of time counters is in nanoseconds, testpmd should print out both. Signed-off-by: Pablo de Lara <pablo.de.lara.guarch@intel.com> Reviewed-by: John McNamara <john.mcnamara@intel.com>
This commit is contained in:
parent
f3a4e40eca
commit
8a45731c02
@ -89,8 +89,8 @@ port_ieee1588_rx_timestamp_check(portid_t pi, uint32_t index)
|
||||
(unsigned) pi);
|
||||
return;
|
||||
}
|
||||
printf("Port %u RX timestamp value %lu\n",
|
||||
(unsigned) pi, timestamp.tv_sec);
|
||||
printf("Port %u RX timestamp value %lu s %lu ns\n",
|
||||
(unsigned) pi, timestamp.tv_sec, timestamp.tv_nsec);
|
||||
}
|
||||
|
||||
#define MAX_TX_TMST_WAIT_MICROSECS 1000 /**< 1 milli-second */
|
||||
@ -112,9 +112,9 @@ port_ieee1588_tx_timestamp_check(portid_t pi)
|
||||
(unsigned) pi, (unsigned) MAX_TX_TMST_WAIT_MICROSECS);
|
||||
return;
|
||||
}
|
||||
printf("Port %u TX timestamp value %lu validated after "
|
||||
printf("Port %u TX timestamp value %lu s %lu ns validated after "
|
||||
"%u micro-second%s\n",
|
||||
(unsigned) pi, timestamp.tv_sec, wait_us,
|
||||
(unsigned) pi, timestamp.tv_sec, timestamp.tv_nsec, wait_us,
|
||||
(wait_us == 1) ? "" : "s");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user