Re: [PATCH net] neighbor: Reset gc_entries counter if new entry is released before insert

2019-06-06 Thread Jeremy Cline
Hi, On Sat, May 04, 2019 at 12:41:00AM -0400, David Miller wrote: > From: David Ahern > Date: Wed, 1 May 2019 18:08:34 -0700 > > > From: David Ahern > > > > Ian and Alan both reported seeing overflows after upgrades to 5.x kernels: > > neighbour: arp_cache: neighbor table overflow! > > > >

[PATCH] tools/libbpf: Avoid possibly using uninitialized variable

2018-02-19 Thread Jeremy Cline
Fixes a GCC maybe-uninitialized warning introduced by 48cca7e44f9f. "text" is only initialized inside the if statement so only print debug info there. Signed-off-by: Jeremy Cline --- tools/lib/bpf/libbpf.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/too