Re: [PATCH v2] drivers/net/wan/x25_asy: Fix to make it work

2020-07-21 Thread Xie He
On Tue, Jul 21, 2020 at 6:30 PM -0700 David Miller wrote: > > Applied, thank you. Thank you so much, David!

Re: [PATCH v2] drivers/net/wan/x25_asy: Fix to make it work

2020-07-21 Thread David Miller
From: Xie He Date: Thu, 16 Jul 2020 16:44:33 -0700 > This driver is not working because of problems of its receiving code. > This patch fixes it to make it work. > > When the driver receives an LAPB frame, it should first pass the frame > to the LAPB module to process. After processing, the LAPB

Re: [PATCH v2] drivers/net/wan/x25_asy: Fix to make it work

2020-07-20 Thread Xie He
On Mon, Jul 20, 2020 at 4:23 AM -0700 Martin Schiller wrote: > > LGTM. > > I have never used the driver, but the adjustments look conclusive. The > functionality is now comparable to the one in the drivers lapbether or > hdlc_x25. > > Reviewed-by: Martin Schiller > Thank you so much!

Re: [PATCH v2] drivers/net/wan/x25_asy: Fix to make it work

2020-07-20 Thread Martin Schiller
On 2020-07-17 01:44, Xie He wrote: This driver is not working because of problems of its receiving code. This patch fixes it to make it work. When the driver receives an LAPB frame, it should first pass the frame to the LAPB module to process. After processing, the LAPB module passes the data (t

[PATCH v2] drivers/net/wan/x25_asy: Fix to make it work

2020-07-16 Thread Xie He
This driver is not working because of problems of its receiving code. This patch fixes it to make it work. When the driver receives an LAPB frame, it should first pass the frame to the LAPB module to process. After processing, the LAPB module passes the data (the packet) back to the driver, the dr