On Wed, Jul 20, 2016 at 03:57:17PM +0200, jalvarez wrote: > @@ -1877,7 +1883,15 @@ static int nf_tables_dump_rules(struct sk_buff *skb, > continue; > > list_for_each_entry_rcu(table, &afi->tables, list) { > + if (ctx->table[0] && We could just check for this instead: if (ctx && ctx->table[0] && strcmp(ctx->table, table->name) != 0) continue; Will send a v2 including this. -- 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