From: Steven Barth Date: Fri, 19 Apr 2013 13:36:19 +0000 (+0200) Subject: IPv6: Try harder to assign prefix parts X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fnetifd.git;a=commitdiff_plain;h=cbb2b3270ad59ca91a04aba94eee0c73e24ce80b IPv6: Try harder to assign prefix parts --- diff --git a/interface-ip.c b/interface-ip.c index d18fa74..afdf67b 100644 --- a/interface-ip.c +++ b/interface-ip.c @@ -640,7 +640,13 @@ static void interface_update_prefix_assignments(struct device_prefix *prefix, bo while (!list_empty(&assign_later)) { c = list_first_entry(&assign_later, struct device_prefix_assignment, head); list_del(&c->head); - if (!interface_prefix_assign(&prefix->assignments, c)) { + + bool assigned = false; + do { + assigned = interface_prefix_assign(&prefix->assignments, c); + } while (!assigned && ++c->length <= 64); + + if (!assigned) { netifd_log_message(L_WARNING, "Failed to assign subprefix " "of size %hhu for %s\n", c->length, c->name); free(c);