pps: Directly assign the timestamps in pps_event()

Reviewed by: imp
Pull Request: https://github.com/freebsd/freebsd-src/pull/604
This commit is contained in:
Sebastian Huber 2023-02-27 14:49:09 -07:00 committed by Warner Losh
parent 0448501f2b
commit 8a142484d4

View File

@ -1860,8 +1860,7 @@ pps_event(struct pps_state *pps, int event)
tcount = pps->capcount - tcount;
tcount &= captc->tc_counter_mask;
bintime_addx(&bt, capth_scale * tcount);
bintime2timespec(&bt, &ts);
*tsp = ts;
bintime2timespec(&bt, tsp);
if (foff) {
timespecadd(tsp, osp, tsp);
@ -1876,9 +1875,8 @@ pps_event(struct pps_state *pps, int event)
bt = pps->capffth->tick_time;
ffclock_convert_delta(tcount, pps->capffth->cest.period, &bt);
bintime_add(&bt, &pps->capffth->tick_time);
bintime2timespec(&bt, &ts);
(*pseq_ffc)++;
*tsp_ffc = ts;
bintime2timespec(&bt, tsp_ffc);
#endif
#ifdef PPS_SYNC