When the kernel reports that a configuration change is pending
(and that the schedule is still in the administrative state and
not yet operational), we (tc -j -p qdisc show) produce the following
output:
[ {
"kind": "taprio",
"handle": "8001:",
"root": true,
"refcnt": 9,
"options": {
"tc": 8,
"map": [ 0,1,2,3,4,5,6,7,0,0,0,0,0,0,0,0 ],
"queues": [ {
"offset": 0,
"count": 1
},{
"offset": 1,
"count": 1
},{
"offset": 2,
"count": 1
},{
"offset": 3,
"count": 1
},{
"offset": 4,
"count": 1
},{
"offset": 5,
"count": 1
},{
"offset": 6,
"count": 1
},{
"offset": 7,
"count": 1
} ],
"clockid": "TAI",
"base_time": 0,
"cycle_time":
20000000,
"cycle_time_extension": 0,
"schedule": [ {
"index": 0,
"cmd": "S",
"gatemask": "0xff",
"interval":
20000000
} ],{
"base_time":
1691160103110424418,
"cycle_time":
20000000,
"cycle_time_extension": 0,
"schedule": [ {
"index": 0,
"cmd": "S",
"gatemask": "0xff",
"interval":
20000000
} ]
},
"max-sdu": [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ],
"fp": [ "E","E","E","E","E","E","E","E","E","E","E","E","E","E","E","E" ]
}
} ]
which is invalid json, because the second group of "base_time",
"cycle_time", etc etc is placed in an unlabeled sub-object. If we pipe
it into jq, it complains:
parse error: Objects must consist of key:value pairs at line 53, column 14
Since it represents the administrative schedule, give this unnamed JSON
object the "admin" name. We now print valid JSON which looks like this:
[ {
"kind": "taprio",
"handle": "8001:",
"root": true,
"refcnt": 9,
"options": {
"tc": 8,
"map": [ 0,1,2,3,4,5,6,7,0,0,0,0,0,0,0,0 ],
"queues": [ {
"offset": 0,
"count": 1
},{
"offset": 1,
"count": 1
},{
"offset": 2,
"count": 1
},{
"offset": 3,
"count": 1
},{
"offset": 4,
"count": 1
},{
"offset": 5,
"count": 1
},{
"offset": 6,
"count": 1
},{
"offset": 7,
"count": 1
} ],
"clockid": "TAI",
"base_time": 0,
"cycle_time":
20000000,
"cycle_time_extension": 0,
"schedule": [ {
"index": 0,
"cmd": "S",
"gatemask": "0xff",
"interval":
20000000
} ],
"admin": {
"base_time":
1691160511783528178,
"cycle_time":
20000000,
"cycle_time_extension": 0,
"schedule": [ {
"index": 0,
"cmd": "S",
"gatemask": "0xff",
"interval":
20000000
} ]
},
"max-sdu": [ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 ],
"fp": [ "E","E","E","E","E","E","E","E","E","E","E","E","E","E","E","E" ]
}
} ]
Fixes: 602fae856d80 ("taprio: Add support for changing schedules")
Signed-off-by: Vladimir Oltean <vladimir.oltean@nxp.com>
Acked-by: Vinicius Costa Gomes <vinicius.gomes@intel.com>
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>