Kill rtable_mpath_conflict

2015-10-25 Thread Martin Pieuchot
Instead of having a separate function to check for MPATH conflicts simply pass the gateway to rtable_insert(). Some regress tests outputs will need an update as we're now doing one more rtalloc(9) call in RTM_ADD. This is a step towards MPATH by default. ok? Index: net/route.c

Re: Kill rtable_mpath_conflict

2015-10-25 Thread Claudio Jeker
On Sun, Oct 25, 2015 at 03:22:51PM +0100, Martin Pieuchot wrote: > Instead of having a separate function to check for MPATH conflicts > simply pass the gateway to rtable_insert(). Some regress tests > outputs will need an update as we're now doing one more rtalloc(9) > call in RTM_ADD. > > This