Re: [ovs-dev] [PATCH v2 04/16] skbuff: Phase out ksize() fallback for frag_size

2022-09-25 Thread Kees Cook
On Sun, Sep 25, 2022 at 09:17:40AM +0200, Paolo Abeni wrote: > On Fri, 2022-09-23 at 13:28 -0700, Kees Cook wrote: > > All callers of APIs that allowed a 0-sized frag_size appear to be > > passing actual size information already > > AFAICS, not yet: > > drivers/net/ethernet/qlogic/qed/qed_ll2.c:

Re: [ovs-dev] [PATCH v2 14/16] kasan: Remove ksize()-related tests

2022-09-25 Thread Kees Cook
On Sat, Sep 24, 2022 at 10:15:18AM +0200, Dmitry Vyukov wrote: > On Fri, 23 Sept 2022 at 22:28, Kees Cook wrote: > > > > In preparation for no longer unpoisoning in ksize(), remove the behavioral > > self-tests for ksize(). > > > > [...] > > -/* Check that ksize() makes the whole object

Re: [ovs-dev] [PATCH] mac-learning: Fix learned fdb entries are not age out issue.

2022-09-25 Thread lin huang
Hi Vasu, Pls review my patch. Thanks a lot. > -Original Message- > From: lin huang > Sent: Friday, July 29, 2022 7:17 PM > To: ovs-dev@openvswitch.org; echau...@redhat.com; i.maxim...@ovn.org; > vdas...@gmail.com > Cc: Lin Huang ; Zhang Yuhuang > > Subject: [PATCH] mac-learning: Fix

Re: [ovs-dev] [PATCH v2 04/16] skbuff: Phase out ksize() fallback for frag_size

2022-09-25 Thread Paolo Abeni
On Fri, 2022-09-23 at 13:28 -0700, Kees Cook wrote: > All callers of APIs that allowed a 0-sized frag_size appear to be > passing actual size information already AFAICS, not yet: drivers/net/ethernet/qlogic/qed/qed_ll2.c: skb = build_skb(buffer->data, 0); // -> __build_skb(..., 0)