RE: [PATCH net v1] net: wan: fsl_qmc_hdlc: Discard received CRC

2024-08-02 Thread David Laight via Linuxppc-dev
From: Simon Horman > Sent: 31 July 2024 09:45 > > On Tue, Jul 30, 2024 at 08:31:33AM +0200, Herve Codina wrote: > > Received frame from QMC contains the CRC. > > Upper layers don't need this CRC and tcpdump mentioned trailing junk > > data due to this CRC presence. > > > > As some other HDLC drive

Re: [PATCH net v1] net: wan: fsl_qmc_hdlc: Discard received CRC

2024-07-31 Thread patchwork-bot+netdevbpf
Hello: This patch was applied to netdev/net.git (main) by Jakub Kicinski : On Tue, 30 Jul 2024 08:31:33 +0200 you wrote: > Received frame from QMC contains the CRC. > Upper layers don't need this CRC and tcpdump mentioned trailing junk > data due to this CRC presence. > > As some other HDLC driv

Re: [PATCH net v1] net: wan: fsl_qmc_hdlc: Discard received CRC

2024-07-31 Thread Simon Horman
On Tue, Jul 30, 2024 at 08:31:33AM +0200, Herve Codina wrote: > Received frame from QMC contains the CRC. > Upper layers don't need this CRC and tcpdump mentioned trailing junk > data due to this CRC presence. > > As some other HDLC driver, simply discard this CRC. It might be nice to specificall

[PATCH net v1] net: wan: fsl_qmc_hdlc: Discard received CRC

2024-07-29 Thread Herve Codina
Received frame from QMC contains the CRC. Upper layers don't need this CRC and tcpdump mentioned trailing junk data due to this CRC presence. As some other HDLC driver, simply discard this CRC. Fixes: d0f2258e79fd ("net: wan: Add support for QMC HDLC") Cc: sta...@vger.kernel.org Signed-off-by: He