All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v5 0/5] SCTP: Event skb list overhaul.
@ 2019-04-10 21:19 David Miller
  2019-04-11 21:39 ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2019-04-10 21:19 UTC (permalink / raw)
  To: netdev


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 for
reviewing previous versions of this series.

Testing would be very much appreciated, in addition to the review of
course.

v4 --> v5: Rebase to net-next and remove RFC tag

v3 --> v4: Fix the logic in patch #4 so that we don't miss cases
           where we should add event to the on-stack temp list.
    
Signed-off-by: David S. Miller <davem@davemloft.net>



^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v5 0/5] SCTP: Event skb list overhaul.
  2019-04-10 21:19 [PATCH v5 0/5] SCTP: Event skb list overhaul David Miller
@ 2019-04-11 21:39 ` David Miller
  2019-04-11 21:54   ` Marcelo Ricardo Leitner
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2019-04-11 21:39 UTC (permalink / raw)
  To: netdev; +Cc: marcelo.leitner, lucien.xin, nhorman

From: David Miller <davem@davemloft.net>
Date: Wed, 10 Apr 2019 14:19:22 -0700 (PDT)

> This patch series eliminates the explicit reference to the skb list
> implementation via skb->prev dereferences.
 ...

Can I get some ACKs etc. before I toss this into net-next?

It's the same as the v4, just respun to current net-next.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v5 0/5] SCTP: Event skb list overhaul.
  2019-04-11 21:39 ` David Miller
@ 2019-04-11 21:54   ` Marcelo Ricardo Leitner
  2019-04-11 21:58     ` David Miller
  0 siblings, 1 reply; 6+ messages in thread
From: Marcelo Ricardo Leitner @ 2019-04-11 21:54 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, lucien.xin, nhorman

On Thu, Apr 11, 2019 at 02:39:35PM -0700, David Miller wrote:
> From: David Miller <davem@davemloft.net>
> Date: Wed, 10 Apr 2019 14:19:22 -0700 (PDT)
> 
> > This patch series eliminates the explicit reference to the skb list
> > implementation via skb->prev dereferences.
>  ...
> 
> Can I get some ACKs etc. before I toss this into net-next?
> 
> It's the same as the v4, just respun to current net-next.

Yep, but I never got the v5 series. This is the first indication that
I have of its existence. Need a repost here.

  Marcelo

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v5 0/5] SCTP: Event skb list overhaul.
  2019-04-11 21:54   ` Marcelo Ricardo Leitner
@ 2019-04-11 21:58     ` David Miller
  0 siblings, 0 replies; 6+ messages in thread
From: David Miller @ 2019-04-11 21:58 UTC (permalink / raw)
  To: marcelo.leitner; +Cc: netdev, lucien.xin, nhorman

From: Marcelo Ricardo Leitner <marcelo.leitner@gmail.com>
Date: Thu, 11 Apr 2019 18:54:13 -0300

> On Thu, Apr 11, 2019 at 02:39:35PM -0700, David Miller wrote:
>> From: David Miller <davem@davemloft.net>
>> Date: Wed, 10 Apr 2019 14:19:22 -0700 (PDT)
>> 
>> > This patch series eliminates the explicit reference to the skb list
>> > implementation via skb->prev dereferences.
>>  ...
>> 
>> Can I get some ACKs etc. before I toss this into net-next?
>> 
>> It's the same as the v4, just respun to current net-next.
> 
> Yep, but I never got the v5 series. This is the first indication that
> I have of its existence. Need a repost here.

It was posted to netdev but I forgot to CC: you guys, sorry.

I'll repost.

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH v5 0/5] SCTP: Event skb list overhaul.
  2019-04-11 22:01 David Miller
@ 2019-04-12 10:52 ` Neil Horman
  0 siblings, 0 replies; 6+ messages in thread
From: Neil Horman @ 2019-04-12 10:52 UTC (permalink / raw)
  To: David Miller; +Cc: netdev, marcelo.leitner, lucien.xin

On Thu, Apr 11, 2019 at 03:01:48PM -0700, David Miller wrote:
> 
> [ A repost to get the SCTP folks on the CC: list, sorry ]
> 
> 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 for
> reviewing previous versions of this series.
> 
> Testing would be very much appreciated, in addition to the review of
> course.
> 
> v4 --> v5: Rebase to net-next and remove RFC tag
> 
> v3 --> v4: Fix the logic in patch #4 so that we don't miss cases
>            where we should add event to the on-stack temp list.
>     
> Signed-off-by: David S. Miller <davem@davemloft.net>
> 
> 
> 
Series
Acked-by: Neil Horman <nhorman@tuxdriver.com>


^ permalink raw reply	[flat|nested] 6+ messages in thread

* [PATCH v5 0/5] SCTP: Event skb list overhaul.
@ 2019-04-11 22:01 David Miller
  2019-04-12 10:52 ` Neil Horman
  0 siblings, 1 reply; 6+ messages in thread
From: David Miller @ 2019-04-11 22:01 UTC (permalink / raw)
  To: netdev; +Cc: marcelo.leitner, lucien.xin, nhorman


[ A repost to get the SCTP folks on the CC: list, sorry ]

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 for
reviewing previous versions of this series.

Testing would be very much appreciated, in addition to the review of
course.

v4 --> v5: Rebase to net-next and remove RFC tag

v3 --> v4: Fix the logic in patch #4 so that we don't miss cases
           where we should add event to the on-stack temp list.
    
Signed-off-by: David S. Miller <davem@davemloft.net>



^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2019-04-12 10:53 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-10 21:19 [PATCH v5 0/5] SCTP: Event skb list overhaul David Miller
2019-04-11 21:39 ` David Miller
2019-04-11 21:54   ` Marcelo Ricardo Leitner
2019-04-11 21:58     ` David Miller
2019-04-11 22:01 David Miller
2019-04-12 10:52 ` Neil Horman

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.