Commit 90f2d906 authored by li hongming's avatar li hongming

Solve bug below:

    when the node connecting with the master port restarts, it won't be
  synced with CUTE-DP. The bug is introduced by the wrong ClockClass of
  the master port.
parent 7492cc08
ppsi @ 03189b55
Subproject commit 4ec34a29dab48cc7a7f1b161717673750564452c Subproject commit 03189b55255505fcf1c61db782f8db5233df1067
...@@ -40,10 +40,10 @@ int ptrackers_update(struct spll_ptracker_state *ptrackers, int tag, ...@@ -40,10 +40,10 @@ int ptrackers_update(struct spll_ptracker_state *ptrackers, int tag,
int source) int source)
{ {
const int adj_tab[16] = { /* psign */ const int adj_tab[16] = { /* psign */
/* 0 - 1/4 */ 0, 0, 0, -(1<<HPLL_N), /* 0 - 1/4 */ 0, 0, 0, -(1<<HPLL_N),
/* 1/4 - 1/2 */ 0, 0, 0, 0, /* 1/4 - 1/2 */ 0, 0, 0, 0,
/* 1/2 - 3/4 */ 0, 0, 0, 0, /* 1/2 - 3/4 */ 0, 0, 0, 0,
/* 3/4 - 1 */ (1<<HPLL_N), 0, 0, 0}; /* 3/4 - 1 */ (1<<HPLL_N), 0, 0, 0};
if(source == spll_n_chan_ref) if(source == spll_n_chan_ref)
{ {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment