From 4dfcca733ba297e5ff02f560f7beb0396428c0bd Mon Sep 17 00:00:00 2001 From: Richard Cochran Date: Sun, 3 Mar 2013 20:20:12 +0100 Subject: [PATCH] Add support for the traceability management request. Signed-off-by: Richard Cochran --- clock.c | 6 ++++++ pmc.c | 10 +++++++++- 2 files changed, 15 insertions(+), 1 deletion(-) diff --git a/clock.c b/clock.c index 59b8703..bf4286c 100644 --- a/clock.c +++ b/clock.c @@ -228,6 +228,12 @@ static int clock_management_get_response(struct clock *c, struct port *p, datalen = sizeof(*mtd); respond = 1; break; + case TRACEABILITY_PROPERTIES: + mtd = (struct management_tlv_datum *) tlv->data; + mtd->val = c->tds.flags & (TIME_TRACEABLE|FREQ_TRACEABLE); + datalen = sizeof(*mtd); + respond = 1; + break; case TIME_STATUS_NP: tsn = (struct time_status_np *) tlv->data; tsn->master_offset = c->master_offset; diff --git a/pmc.c b/pmc.c index a46f4f2..0539fe2 100644 --- a/pmc.c +++ b/pmc.c @@ -71,7 +71,7 @@ struct management_id idtab[] = { { "TIME", TIME, not_supported }, { "CLOCK_ACCURACY", CLOCK_ACCURACY, do_get_action }, { "UTC_PROPERTIES", UTC_PROPERTIES, not_supported }, - { "TRACEABILITY_PROPERTIES", TRACEABILITY_PROPERTIES, not_supported }, + { "TRACEABILITY_PROPERTIES", TRACEABILITY_PROPERTIES, do_get_action }, { "TIMESCALE_PROPERTIES", TIMESCALE_PROPERTIES, not_supported }, { "PATH_TRACE_LIST", PATH_TRACE_LIST, not_supported }, { "PATH_TRACE_ENABLE", PATH_TRACE_ENABLE, not_supported }, @@ -338,6 +338,14 @@ static void pmc_show(struct ptp_message *msg, FILE *fp) fprintf(fp, "CLOCK_ACCURACY " IFMT "clockAccuracy 0x%02hhx", mtd->val); break; + case TRACEABILITY_PROPERTIES: + mtd = (struct management_tlv_datum *) mgt->data; + fprintf(fp, "TRACEABILITY_PROPERTIES " + IFMT "timeTraceable %d" + IFMT "frequencyTraceable %d", + mtd->val & TIME_TRACEABLE ? 1 : 0, + mtd->val & FREQ_TRACEABLE ? 1 : 0); + break; case TIME_STATUS_NP: tsn = (struct time_status_np *) mgt->data; fprintf(fp, "TIME_STATUS_NP "