Re: [PATCH net] ppp: fix xmit recursion detection on ppp channels

2017-08-08 Thread David Miller
From: Guillaume Nault Date: Tue, 8 Aug 2017 11:43:24 +0200 > Commit e5dadc65f9e0 ("ppp: Fix false xmit recursion detect with two ppp > devices") dropped the xmit_recursion counter incrementation in > ppp_channel_push() and relied on ppp_xmit_process() for this task. > But

Re: [PATCH net] ppp: fix xmit recursion detection on ppp channels

2017-08-08 Thread Guillaume Nault
On Tue, Aug 08, 2017 at 09:16:33PM +0800, Gao Feng wrote: > At 2017-08-08 17:43:24, "Guillaume Nault" wrote: > >--- a/drivers/net/ppp/ppp_generic.c > >+++ b/drivers/net/ppp/ppp_generic.c > >@@ -1915,21 +1915,23 @@ static void __ppp_channel_push(struct channel *pch) > >

Re:[PATCH net] ppp: fix xmit recursion detection on ppp channels

2017-08-08 Thread Gao Feng
At 2017-08-08 17:43:24, "Guillaume Nault" wrote: >Commit e5dadc65f9e0 ("ppp: Fix false xmit recursion detect with two ppp >devices") dropped the xmit_recursion counter incrementation in >ppp_channel_push() and relied on ppp_xmit_process() for this task. >But