Searched refs:idx_old (Results 1 – 1 of 1) sorted by relevance
/freebsd/sys/net/route/ |
H A D | route_helpers.c | 300 uint32_t idx_old = 0, idx_new = 0; in decompose_change_notification() local 341 while ((idx_old < num_old) && (idx_new < num_new)) { in decompose_change_notification() 342 uint32_t nh_idx_old = wn_old[idx_old].nh->nh_priv->nh_idx; in decompose_change_notification() 346 if (wn_old[idx_old].weight != wn_new[idx_new].weight) { in decompose_change_notification() 348 notify_del(&rc_del, &wn_old[idx_old], cb, cbdata); in decompose_change_notification() 351 idx_old++; in decompose_change_notification() 355 notify_del(&rc_del, &wn_old[idx_old], cb, cbdata); in decompose_change_notification() 356 idx_old++; in decompose_change_notification() 364 while (idx_old < num_old) { in decompose_change_notification() 365 notify_del(&rc_del, &wn_old[idx_old], cb, cbdata); in decompose_change_notification() [all …]
|