aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/generic/patches-4.1/101-pppoe-fix-disconnect-crash.patch
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@openwrt.org>2015-12-02 21:52:41 +0000
committerHauke Mehrtens <hauke@openwrt.org>2015-12-02 21:52:41 +0000
commite4d66cd66d8fa4c266f4d1c55fff551462b62395 (patch)
tree2c7e46d8d26cdcd63b252bf5741a8535bb96bb46 /target/linux/generic/patches-4.1/101-pppoe-fix-disconnect-crash.patch
parent080bc8eb39474e843c21a860ec4c4eaa11b77a99 (diff)
downloadmaster-187ad058-e4d66cd66d8fa4c266f4d1c55fff551462b62395.tar.gz
master-187ad058-e4d66cd66d8fa4c266f4d1c55fff551462b62395.tar.bz2
master-187ad058-e4d66cd66d8fa4c266f4d1c55fff551462b62395.zip
kernel: update 4.1 to 4.1.13
- two upstreamed patches removed - compile tested all targets using 4.1 - run tested ar71xx Signed-off-by: Roman Yeryomin <roman@advem.lv> Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@47694 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic/patches-4.1/101-pppoe-fix-disconnect-crash.patch')
-rw-r--r--target/linux/generic/patches-4.1/101-pppoe-fix-disconnect-crash.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/target/linux/generic/patches-4.1/101-pppoe-fix-disconnect-crash.patch b/target/linux/generic/patches-4.1/101-pppoe-fix-disconnect-crash.patch
deleted file mode 100644
index f2e6e45b0b..0000000000
--- a/target/linux/generic/patches-4.1/101-pppoe-fix-disconnect-crash.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-Fix crash with actions performed on the underlying interface (MAC address,
-MTU or link state update). This triggers pppoe_flush_dev(), which cleans up
-the device without announcing it in sk->sk_state.
-
-Patch by Guillaume Nault (pulled from netdev@vger)
-
---- a/drivers/net/ppp/pppoe.c
-+++ b/drivers/net/ppp/pppoe.c
-@@ -313,7 +313,6 @@ static void pppoe_flush_dev(struct net_d
- if (po->pppoe_dev == dev &&
- sk->sk_state & (PPPOX_CONNECTED | PPPOX_BOUND | PPPOX_ZOMBIE)) {
- pppox_unbind_sock(sk);
-- sk->sk_state = PPPOX_ZOMBIE;
- sk->sk_state_change(sk);
- po->pppoe_dev = NULL;
- dev_put(dev);