mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2025-04-21 12:27:27 +03:00
pppoe: use the interface mtu as upper limit for ppp packet size + header (based on a patch by Dirk Nehring)
git-svn-id: svn://svn.openwrt.org/openwrt/branches/buildroot-ng/openwrt@5009 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
12
target/linux/generic-2.4/patches/229-pppoe_mtu_fix.patch
Normal file
12
target/linux/generic-2.4/patches/229-pppoe_mtu_fix.patch
Normal file
@@ -0,0 +1,12 @@
|
||||
--- linux-2.4.30/drivers/net/pppoe.c.old 2006-10-10 13:49:12.000000000 +0200
|
||||
+++ linux-2.4.30/drivers/net/pppoe.c 2006-10-10 13:50:02.000000000 +0200
|
||||
@@ -639,6 +639,9 @@
|
||||
po->chan.hdrlen = (sizeof(struct pppoe_hdr) +
|
||||
dev->hard_header_len);
|
||||
|
||||
+ if (po->chan.mtu > dev->mtu - sizeof(struct pppoe_hdr))
|
||||
+ po->chan.mtu = dev->mtu - sizeof(struct pppoe_hdr);
|
||||
+
|
||||
po->chan.private = sk;
|
||||
po->chan.ops = &pppoe_chan_ops;
|
||||
|
||||
Reference in New Issue
Block a user