Home
last modified time | relevance | path

Searched refs:remaining_sum (Results 1 – 1 of 1) sorted by relevance

/f-stack/freebsd/net/route/
H A Dnhgrp_ctl.c216 uint64_t remaining_sum, nh_weight, nh_slots; in compile_nhgrp() local
221 remaining_sum = 0; in compile_nhgrp()
223 remaining_sum += x[i].weight; in compile_nhgrp()
225 DPRINTF("O: %u/%u", (uint32_t)remaining_sum, remaining_slots); in compile_nhgrp()
228 if (remaining_sum > 0) { in compile_nhgrp()
230 nh_slots = (nh_weight * remaining_slots / remaining_sum); in compile_nhgrp()
234 remaining_sum -= x[i].weight; in compile_nhgrp()
238 (uint32_t)remaining_sum, remaining_slots, in compile_nhgrp()