Make the fault handling code more readable.

The code that decides whether a fault qualifies for ASAP treatment is
a tangle of logical operators.  This patch replaces the open coded
logic with a helper function whose name makes the intent clear.  This
is a cosmetic change only.

Signed-off-by: Richard Cochran <richardcochran@gmail.com>
master
Richard Cochran 2017-01-03 20:55:42 +01:00
parent 80a28a9dc3
commit 1f66948d38
1 changed files with 15 additions and 2 deletions

17
port.c
View File

@ -161,6 +161,19 @@ static void announce_to_dataset(struct ptp_message *m, struct port *p,
out->receiver = p->portIdentity; out->receiver = p->portIdentity;
} }
static int clear_fault_asap(struct fault_interval *faint)
{
switch (faint->type) {
case FTMO_LINEAR_SECONDS:
return faint->val == 0 ? 1 : 0;
case FTMO_LOG2_SECONDS:
return faint->val == FRI_ASAP ? 1 : 0;
case FTMO_CNT:
return 0;
}
return 0;
}
static int msg_current(struct ptp_message *m, struct timespec now) static int msg_current(struct ptp_message *m, struct timespec now)
{ {
int64_t t1, t2, tmo; int64_t t1, t2, tmo;
@ -2143,9 +2156,9 @@ int port_dispatch(struct port *p, enum fsm_event event, int mdiff)
next = p->state_machine(p->state, event, mdiff); next = p->state_machine(p->state, event, mdiff);
fault_interval(p, last_fault_type(p), &i); fault_interval(p, last_fault_type(p), &i);
if ((i.val == FRI_ASAP && i.type == FTMO_LOG2_SECONDS) || if (clear_fault_asap(&i)) {
(i.val == 0 && i.type == FTMO_LINEAR_SECONDS))
fri_asap = 1; fri_asap = 1;
}
if (PS_INITIALIZING == next || (PS_FAULTY == next && fri_asap)) { if (PS_INITIALIZING == next || (PS_FAULTY == next && fri_asap)) {
/* /*
* This is a special case. Since we initialize the * This is a special case. Since we initialize the