From: Steven Barth Date: Mon, 17 Jun 2013 21:15:02 +0000 (+0200) Subject: IPv6: Satisfy unhinted assignments ordered by prefix length X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=3c2c1bd38a577130848167093bf45eee0535f32a IPv6: Satisfy unhinted assignments ordered by prefix length --- diff --git a/interface-ip.c b/interface-ip.c index 44dd63d..3b6be6b 100644 --- a/interface-ip.c +++ b/interface-ip.c @@ -729,7 +729,16 @@ static void interface_update_prefix_assignments(struct device_prefix *prefix, bo netifd_log_message(L_WARNING, "Failed to assign requested subprefix " "of size %hhu for %s, trying other\n", c->length, c->name); } - list_add_tail(&c->head, &assign_later); + + struct list_head *next = &assign_later; + struct device_prefix_assignment *n; + list_for_each_entry(n, &assign_later, head) { + if (n->length > c->length) { + next = &n->head; + break; + } + } + list_add_tail(&c->head, next); } if (c->assigned != -1)