stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Patch "Fix "tunnels: Don't apply GRO to multiple layers of encapsulation."" has been added to the 3.18-stable tree
@ 2017-02-07 18:38 gregkh
  0 siblings, 0 replies; only message in thread
From: gregkh @ 2017-02-07 18:38 UTC (permalink / raw)
  To: gregkh, alexander.levin, ben, davem, jesse; +Cc: stable, stable-commits


This is a note to let you know that I've just added the patch titled

    Fix "tunnels: Don't apply GRO to multiple layers of encapsulation."

to the 3.18-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:
     fix-tunnels-don-t-apply-gro-to-multiple-layers-of-encapsulation.patch
and it can be found in the queue-3.18 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@vger.kernel.org> know about it.


>From foo@baz Tue Feb  7 17:25:25 CET 2017
Date: Tue, 07 Feb 2017 17:25:25 +0100
To: Greg KH <gregkh@linuxfoundation.org>
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Subject: Fix "tunnels: Don't apply GRO to multiple layers of encapsulation."

From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Commit dd4fff23f0f4c7c5414f50c091c78a7e423f85da which is commit
fac8e0f579695a3ecbc4d3cac369139d7f819971 upstream, seems to have
included the sit_gro_receive function, yet it never is used, causing an
obvious warning message.  Hook it up to the correct sit_offload
structure.

Note, for 3.16, the backport of fac8e0f579695a3ecbc4d3cac369139d7f819971
does not include this function, nor the ipip case.  I'm guessing that
this is not correct for 3.18, as one of the functions was included, but
could be totally wrong.

Cc: Jesse Gross <jesse@kernel.org>
Cc: David S. Miller <davem@davemloft.net>
Cc: Ben Hutchings <ben@decadent.org.uk>
Cc: Sasha Levin <alexander.levin@verizon.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

---
 net/ipv6/ip6_offload.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/net/ipv6/ip6_offload.c
+++ b/net/ipv6/ip6_offload.c
@@ -305,7 +305,7 @@ static struct packet_offload ipv6_packet
 static const struct net_offload sit_offload = {
 	.callbacks = {
 		.gso_segment	= ipv6_gso_segment,
-		.gro_receive	= ipv6_gro_receive,
+		.gro_receive	= sit_gro_receive,
 		.gro_complete	= ipv6_gro_complete,
 	},
 };


Patches currently in stable-queue which might be from gregkh@linuxfoundation.org are

queue-3.18/module_device_table-fix-some-callsites.patch
queue-3.18/drm-i915-cleanup-some-indenting.patch
queue-3.18/drivers-net-ethernet-dec-tulip-uli526x.c-fix-misleading-indentation-in-uli526x_timer.patch
queue-3.18/iwlegacy-avoid-warning-about-missing-braces.patch
queue-3.18/s3c-camif-fix-compiler-warnings.patch
queue-3.18/fix-crypto-algif_hash-require-setkey-before-accept-2.patch
queue-3.18/staging-iio-adc-fix-indent-on-break-statement.patch
queue-3.18/bfa-fix-indentation.patch
queue-3.18/x86-boot-add-config_paravirt_spinlocks-quirk-to-arch-x86-boot-compressed-misc.h.patch
queue-3.18/fix-tunnels-don-t-apply-gro-to-multiple-layers-of-encapsulation.patch
queue-3.18/xilinx-usb2-gadget-get-rid-of-incredibly-annoying-compile-warning.patch
queue-3.18/hid-hid-input-add-parentheses-to-quell-gcc-warning.patch
queue-3.18/documentation-remove-zboot-mmc-sdhi-utility-and-docs.patch
queue-3.18/net-caif-fix-misleading-indentation.patch
queue-3.18/disable-frame-address-warning.patch
queue-3.18/paride-fix-the-verbose-module-param.patch
queue-3.18/be2iscsi-fix-bogus-warn_on-length-check.patch
queue-3.18/i40e-reduce-stack-in-i40e_dbg_dump_desc.patch
queue-3.18/fix-qla2xxx-terminate-exchange-when-command-is-aborted-by-lio.patch
queue-3.18/netfilter-add-some-missing-default-cases-to-switch-statements-in-nft_reject.patch
queue-3.18/spi-dw-mid-refactor-to-use-helpers.patch
queue-3.18/x86-xen-fix-upper-bound-of-pmd-loop-in-xen_cleanhighmap.patch
queue-3.18/ata-hpt366-fix-constant-cast-warning.patch
queue-3.18/media-remove-unused-variable-that-causes-a-warning.patch
queue-3.18/usb-renesas_usbhs-fix-build-warning-if-64-bit-architecture.patch
queue-3.18/atm-iphase-fix-misleading-indention.patch
queue-3.18/mtd-blkdevs-fix-switch-bool-compilation-warning.patch
queue-3.18/net-add-sysctl_max_skb_frags.patch
queue-3.18/netfilter-fix-switch-statement-warnings-with-recent-gcc.patch
queue-3.18/alsa-oxygen-fix-logical-not-parentheses-warning.patch
queue-3.18/blk-rq_data_dir-should-not-return-a-boolean.patch
queue-3.18/bluetooth-make-hci_test_bit-s-addr-const.patch
queue-3.18/staging-lustre-missing-curly-braces-in-ll_setattr_raw.patch
queue-3.18/module-fix-types-of-device-tables-aliases.patch
queue-3.18/staging-rtl8723au-core-rtw_wlan_util-fix-misleading-indentation.patch

^ permalink raw reply	[flat|nested] only message in thread

only message in thread, other threads:[~2017-02-07 19:07 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-02-07 18:38 Patch "Fix "tunnels: Don't apply GRO to multiple layers of encapsulation."" has been added to the 3.18-stable tree gregkh

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).