Hi, When preparing my patch 94a945ffa81b7 ("libnftables: Get rid of explicit cache flushes"), I missed that 'nft -i' was explicitly dropping the interface cache after every command, so now it won't recognize interface changes anymore. Sadly, there is no lightweight method available to detect an outdated interface cache like we have with ruleset cache, so I played around a bit with alternatives. First thing to mention, using the iface cache is considerably faster than calling if_nametoindex/if_indextoname each time. OTOH, I'm not sure having interface indexes in rules is a good idea to begin with: A seemingly obvious rule like e.g. 'oif br0 accept' all of a sudden stops working if br0 is recreated (typically by restarting libvirt or whatever manages it). This becomes obvious when inspecting the rule set (said rule won't print the interface name anymore but just the ifindex value), but it's something users have to be aware of first. So given that oifname/iifname expressions should be recommended over plain oif/iif ones for general-purpose applications, I wonder how important that interface cache really is and whether there is a relevant drawback when dropping it. Getting back to the original issue, I see the following alternatives: * Drop interface cache altogether. * Make nft_run_cmd_from_*() drop the interface cache before parsing commands. * Reintroduce a 'drop_cache()' API function for cli.c to call it. Obviously, I prefer the first one, but would appreciate others' opinions before sending patches. Thanks, Phil -- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html