Hello, On Mon, 28 Jan 2008, Jarek Poplawski wrote:
> BTW, the way "add" works wasn't questioned now, but it seems could be, > or man ip should call it e.g. "ip route add - add new destination", > and append "ip route append" (unless I have old man). "add" is similar to "prepend", only that checks NLM_F_EXCL to avoid many alternative routes, only one route for tos+priority is allowed for "add". As for the sorting by tos/priority and the insertion position I remember for thread on this issue: http://marc.info/?t=109614290600002&r=1&w=2 > > + fa = list_entry(fa->fa_list.prev, struct fib_alias, fa_list); > > + list_for_each_entry_continue(fa, &f->fn_alias, fa_list) { > > + if (fa->fa_tos != tos) > > + break; > > + if (fa->fa_info->fib_priority != fi->fib_priority) > > + break; > > + if (fa->fa_type == cfg->fc_type && > > + fa->fa_scope == cfg->fc_scope && > > + fa->fa_info == fi) { > > + fa_match = fa; > > + break; > > Why can't we try goto out from here? (less reading...) The case with NLM_F_REPLACE needs to check more things, one day one can combine NLM_F_APPEND+NLM_F_REPLACE to replace last alternative route, not only the first one as currently implemented. > > + fa = fa_first; > > + if (fa_match) { > > + if (fa == fa_match) > > + err = 0; > > Could you comment more why returning an error seems to depend on the > order of aliases here? But, IMHO there is no reason to change the old > behavior WRT this error, so probably this err = 0 should be always if > NLM_F_REPLACE is set. fa_match is some existing alias that matches all new parameters. As NLM_F_REPLACE changes the first alternative route for tos+priority if fa_match == fa_first (we are replacing alias that matches all parameters) we return 0, only that routing cache is not flushed - nothing is replaced/changed. So, "fa == fa_match" means "replace will not change existing parameters", return 0 as this is not an error. > PS: I think, this FIB info you sent earlier is just fine for > Documentation/networking without any changes! (Maybe one more patch?) This is so small part of the picture, such 15-minute listing is not enough to explain everything. May be such and other information can be added as part of some known documentation. Regards -- Julian Anastasov <[EMAIL PROTECTED]> -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html