diff --git a/src/devices/nm-device.c b/src/devices/nm-device.c index e2a5fd4bf2..1241a098d1 100644 --- a/src/devices/nm-device.c +++ b/src/devices/nm-device.c @@ -6533,14 +6533,14 @@ tc_commit (NMDevice *self) } G_STMT_END if (strcmp (qdisc->kind, "fq_codel") == 0) { - GET_ATTR("limit", qdisc->fq_codel.limit, UINT32, uint32, 0); - GET_ATTR("flows", qdisc->fq_codel.flows, UINT32, uint32, 0); - GET_ATTR("target", qdisc->fq_codel.target, UINT32, uint32, 0); - GET_ATTR("interval", qdisc->fq_codel.interval, UINT32, uint32, 0); - GET_ATTR("quantum", qdisc->fq_codel.quantum, UINT32, uint32, 0); - GET_ATTR("ce_threshold", qdisc->fq_codel.ce_threshold, UINT32, uint32, NM_PLATFORM_FQ_CODEL_CE_THRESHOLD_DISABLED); - GET_ATTR("memory_limit", qdisc->fq_codel.memory_limit, UINT32, uint32, NM_PLATFORM_FQ_CODEL_MEMORY_LIMIT_UNSET); - GET_ATTR("ecn", qdisc->fq_codel.ecn, BOOLEAN, boolean, FALSE); + GET_ATTR ("limit", qdisc->fq_codel.limit, UINT32, uint32, 0); + GET_ATTR ("flows", qdisc->fq_codel.flows, UINT32, uint32, 0); + GET_ATTR ("target", qdisc->fq_codel.target, UINT32, uint32, 0); + GET_ATTR ("interval", qdisc->fq_codel.interval, UINT32, uint32, 0); + GET_ATTR ("quantum", qdisc->fq_codel.quantum, UINT32, uint32, 0); + GET_ATTR ("ce_threshold", qdisc->fq_codel.ce_threshold, UINT32, uint32, NM_PLATFORM_FQ_CODEL_CE_THRESHOLD_DISABLED); + GET_ATTR ("memory_limit", qdisc->fq_codel.memory_limit, UINT32, uint32, NM_PLATFORM_FQ_CODEL_MEMORY_LIMIT_UNSET); + GET_ATTR ("ecn", qdisc->fq_codel.ecn, BOOLEAN, boolean, FALSE); } #undef GET_ADDR