From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.linuxfoundation.org ([140.211.169.12]:43022 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1422667AbbD2KMr (ORCPT ); Wed, 29 Apr 2015 06:12:47 -0400 Subject: Patch "ppp: call skb_checksum_complete_unset in ppp_receive_frame" has been added to the 4.0-stable tree To: tom@herbertland.com, davem@davemloft.net, gregkh@linuxfoundation.org Cc: , From: Date: Wed, 29 Apr 2015 12:12:36 +0200 Message-ID: <1430302356127136@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=ANSI_X3.4-1968 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org List-ID: This is a note to let you know that I've just added the patch titled ppp: call skb_checksum_complete_unset in ppp_receive_frame to the 4.0-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: ppp-call-skb_checksum_complete_unset-in-ppp_receive_frame.patch and it can be found in the queue-4.0 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let know about it. >>From foo@baz Wed Apr 29 11:59:49 CEST 2015 From: Tom Herbert Date: Mon, 20 Apr 2015 14:10:05 -0700 Subject: ppp: call skb_checksum_complete_unset in ppp_receive_frame From: Tom Herbert [ Upstream commit 3dfb05340ec6676e6fc71a9ae87bbbe66d3c2998 ] Call checksum_complete_unset in PPP receive to discard checksum-complete value. PPP does not pull checksum for headers and also modifies packet as in VJ compression. Signed-off-by: Tom Herbert Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- drivers/net/ppp/ppp_generic.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/net/ppp/ppp_generic.c +++ b/drivers/net/ppp/ppp_generic.c @@ -1716,6 +1716,7 @@ ppp_receive_frame(struct ppp *ppp, struc { /* note: a 0-length skb is used as an error indication */ if (skb->len > 0) { + skb_checksum_complete_unset(skb); #ifdef CONFIG_PPP_MULTILINK /* XXX do channel-level decompression here */ if (PPP_PROTO(skb) == PPP_MP) Patches currently in stable-queue which might be from tom@herbertland.com are queue-4.0/net-rfs-fix-crash-in-get_rps_cpus.patch queue-4.0/ppp-call-skb_checksum_complete_unset-in-ppp_receive_frame.patch queue-4.0/net-add-skb_checksum_complete_unset.patch