Re: [PATCH] [RFT] ip_tables NUMA optimization
From: "David S. Miller" <davem@davemloft.net>
Date: 2005-11-19 00:00:43
Also in:
netfilter-devel
From: "David S. Miller" <davem@davemloft.net>
Date: 2005-11-19 00:00:43
Also in:
netfilter-devel
From: Eric Dumazet <redacted> 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(info->entries[cpu]);
> + }I've put the patch into the net-2.6.16 tree with the obvious fix Eric points out. Thanks.