Re: [PATCH RFC v4 0/5] SCTP: Event skb list overhaul.

2019-03-14 Thread Marcelo Ricardo Leitner
On Thu, Mar 14, 2019 at 03:51:59PM +0800, Xin Long wrote: > On Thu, Mar 14, 2019 at 9:23 AM Marcelo Ricardo Leitner > wrote: > > > > On Wed, Mar 13, 2019 at 01:06:21PM -0300, Marcelo Ricardo Leitner wrote: > > > On Mon, Mar 11, 2019 at 08:09:19PM -0700, David Miller wrote: > > > > > > > > This pat

Re: [PATCH RFC v4 0/5] SCTP: Event skb list overhaul.

2019-03-14 Thread Xin Long
On Thu, Mar 14, 2019 at 9:23 AM Marcelo Ricardo Leitner wrote: > > On Wed, Mar 13, 2019 at 01:06:21PM -0300, Marcelo Ricardo Leitner wrote: > > On Mon, Mar 11, 2019 at 08:09:19PM -0700, David Miller wrote: > > > > > > This patch series eliminates the explicit reference to the skb list > > > implem

Re: [PATCH RFC v4 0/5] SCTP: Event skb list overhaul.

2019-03-13 Thread Marcelo Ricardo Leitner
On Wed, Mar 13, 2019 at 01:06:21PM -0300, Marcelo Ricardo Leitner wrote: > On Mon, Mar 11, 2019 at 08:09:19PM -0700, David Miller wrote: > > > > This patch series eliminates the explicit reference to the skb list > > implementation via skb->prev dereferences. > > > > The approach used is to pass

Re: [PATCH RFC v4 0/5] SCTP: Event skb list overhaul.

2019-03-13 Thread Marcelo Ricardo Leitner
On Mon, Mar 11, 2019 at 08:09:19PM -0700, David Miller wrote: > > This patch series eliminates the explicit reference to the skb list > implementation via skb->prev dereferences. > > The approach used is to pass a non-empty skb list around instead of an > event skb object which may or may not be

Re: [PATCH RFC v4 0/5] SCTP: Event skb list overhaul.

2019-03-13 Thread Neil Horman
On Mon, Mar 11, 2019 at 08:09:19PM -0700, David Miller wrote: > > This patch series eliminates the explicit reference to the skb list > implementation via skb->prev dereferences. > > The approach used is to pass a non-empty skb list around instead of an > event skb object which may or may not be

[PATCH RFC v4 0/5] SCTP: Event skb list overhaul.

2019-03-11 Thread David Miller
This patch series eliminates the explicit reference to the skb list implementation via skb->prev dereferences. The approach used is to pass a non-empty skb list around instead of an event skb object which may or may not be on a list. I'd like to thank Marcelo Leitner, Xin Long, and Neil Horman