On Tue, Oct 17, 2017 at 11:26 AM, Wei Wang <wei...@google.com> wrote: > On Tue, Oct 17, 2017 at 10:40 AM, Paolo Abeni <pab...@redhat.com> wrote: >> After the commit 2b760fcf5cfb ("ipv6: hook up exception table to >> store dst cache"), entries in the routing cache are not shown by: >> >> ip route show cache > > Hi Paolo, > > Thanks for doing this. > But I think your patch does not take care of the case where there are > a lot of cached routes in the exception table and 1 skb is just not > enough to dump the main route + all cached routes in the exception > table. > In this case, your patch will keep dumping the same main route. > > I think some logic needs to be incorporated into the fib6_walk() so > that it can also remember the last dumped cached route if necessary in > the exception table and start from there for the next dump. > I do have a patch for that and that patch tries to keep a linked list > of all cached routes from the exception table in the walker struct and > remove any routes that are already dumped. > It is a bit complicated and might not be the best solution. And as > IPv4 already does not support dumping cached routes, I did not send > that out in the previous patch series.
Yes, since we no longer dump IPV4 cached routes, I doubt anyone depends on IPv6 cached routes, but not on IPv4 ones. Paolo, do you have a concrete use case for this ?