Re: [PATCH v2 net-next 0/6] bpf: LRU map

2016-11-15 Thread Martin KaFai Lau
On Tue, Nov 15, 2016 at 11:59:24AM -0500, David Miller wrote: > From: David Miller > Date: Tue, 15 Nov 2016 11:51:23 -0500 (EST) > > > From: Martin KaFai Lau > > Date: Fri, 11 Nov 2016 10:55:05 -0800 > > > >> This patch set adds LRU map implementation to the existing BPF map > >> family. > > > >

Re: [PATCH v2 net-next 0/6] bpf: LRU map

2016-11-15 Thread David Miller
From: David Miller Date: Tue, 15 Nov 2016 11:51:23 -0500 (EST) > From: Martin KaFai Lau > Date: Fri, 11 Nov 2016 10:55:05 -0800 > >> This patch set adds LRU map implementation to the existing BPF map >> family. > > Series applied, thanks. BTW, with Fedora 24's gcc-6.2.1 on x86_64 I'm getting

Re: [PATCH v2 net-next 0/6] bpf: LRU map

2016-11-15 Thread David Miller
From: Martin KaFai Lau Date: Fri, 11 Nov 2016 10:55:05 -0800 > This patch set adds LRU map implementation to the existing BPF map > family. Series applied, thanks.

Re: [PATCH v2 net-next 0/6] bpf: LRU map

2016-11-14 Thread David Miller
From: Martin KaFai Lau Date: Fri, 11 Nov 2016 10:55:05 -0800 > This patch set adds LRU map implementation to the existing BPF map > family. Alexei and Daniel, can I please get some review of this series? Thank you.

[PATCH v2 net-next 0/6] bpf: LRU map

2016-11-11 Thread Martin KaFai Lau
Hi, This patch set adds LRU map implementation to the existing BPF map family. The first few patches introduce the basic BPF LRU list implementation. The later patches introduce the LRU versions of the existing BPF_MAP_TYPE_LRU_[PERCPU_]HASH maps by leveraging the BPF LRU list. v2: - Added a pe