Convert call sites to the proper method for getting time stamp information.

Signed-off-by: Richard Cochran <richardcochran@gmail.com>
Reviewed-by: Jacob Keller <jacob.e.keller@intel.com>
master
Richard Cochran 2020-02-09 13:48:42 -08:00
parent cca19dab99
commit 6d73e755c3
2 changed files with 2 additions and 2 deletions

View File

@ -962,7 +962,7 @@ struct clock *clock_create(enum clock_type type, struct config *config,
STAILQ_FOREACH(iface, &config->interfaces, list) { STAILQ_FOREACH(iface, &config->interfaces, list) {
rtnl_get_ts_device(interface_name(iface), iface->ts_label); rtnl_get_ts_device(interface_name(iface), iface->ts_label);
ensure_ts_label(iface); ensure_ts_label(iface);
sk_get_ts_info(interface_label(iface), &iface->ts_info); interface_get_tsinfo(iface);
if (iface->ts_info.valid && if (iface->ts_info.valid &&
((iface->ts_info.so_timestamping & required_modes) != required_modes)) { ((iface->ts_info.so_timestamping & required_modes) != required_modes)) {
pr_err("interface '%s' does not support requested timestamping mode", pr_err("interface '%s' does not support requested timestamping mode",

2
port.c
View File

@ -2508,7 +2508,7 @@ void port_link_status(void *ctx, int linkup, int ts_index)
/* Both link down/up and change ts_label may change phc index. */ /* Both link down/up and change ts_label may change phc index. */
if (p->link_status & LINK_UP && if (p->link_status & LINK_UP &&
(p->link_status & LINK_STATE_CHANGED || p->link_status & TS_LABEL_CHANGED)) { (p->link_status & LINK_STATE_CHANGED || p->link_status & TS_LABEL_CHANGED)) {
sk_get_ts_info(interface_label(p->iface), &p->iface->ts_info); interface_get_tsinfo(p->iface);
/* Only switch phc with HW time stamping mode */ /* Only switch phc with HW time stamping mode */
if (p->iface->ts_info.valid && p->iface->ts_info.phc_index >= 0) { if (p->iface->ts_info.valid && p->iface->ts_info.phc_index >= 0) {