Re: [PATCH] [RFT] ip_tables NUMA optimization

2005-11-19 Thread Harald Welte
On Fri, Nov 18, 2005 at 04:00:43PM -0800, David S. Miller wrote: > > It should probably use vfree() like : > > > > > +for_each_cpu(cpu) { > > > +if (info->size <= PAGE_SIZE) > > > +kfree(info->entries[cpu]); > > > +else > > > +

Re: [PATCH] [RFT] ip_tables NUMA optimization

2005-11-18 Thread David S. Miller
From: Eric Dumazet <[EMAIL PROTECTED]> Date: Thu, 17 Nov 2005 16:21:45 +0100 > It should probably use vfree() like : > > > + for_each_cpu(cpu) { > > + if (info->size <= PAGE_SIZE) > > + kfree(info->entries[cpu]); > > + else > > + vfree(inf

Re: [PATCH] [RFT] ip_tables NUMA optimization

2005-11-17 Thread Eric Dumazet
Harald Welte a écrit : I've hand-merged Eric Dumazet's original ip_tables numa optimization patch to current git head. Also, I've ported it to ip6_tables and arp_tables. Since this is 2.6.16 stuff, I don't want to have it applied at this time, but merely request testers (esp. for the non-ipv4 p

[PATCH] [RFT] ip_tables NUMA optimization

2005-11-17 Thread Harald Welte
I've hand-merged Eric Dumazet's original ip_tables numa optimization patch to current git head. Also, I've ported it to ip6_tables and arp_tables. Since this is 2.6.16 stuff, I don't want to have it applied at this time, but merely request testers (esp. for the non-ipv4 part). Thanks, -- - Har