summaryrefslogtreecommitdiffstats
path: root/drivers/net/usb/cdc_ncm.c
diff options
context:
space:
mode:
authorlucien2014-03-17 05:51:01 +0100
committerDavid S. Miller2014-03-18 20:17:53 +0100
commite367c2d03dba4c9bcafad24688fadb79dd95b218 (patch)
treec2810ba4094340d30a3689e126caa433182d4948 /drivers/net/usb/cdc_ncm.c
parentisdn/capi: Make Middleware depend on CAPI2.0 (diff)
downloadkernel-qcow2-linux-e367c2d03dba4c9bcafad24688fadb79dd95b218.tar.gz
kernel-qcow2-linux-e367c2d03dba4c9bcafad24688fadb79dd95b218.tar.xz
kernel-qcow2-linux-e367c2d03dba4c9bcafad24688fadb79dd95b218.zip
ipv6: ip6_append_data_mtu do not handle the mtu of the second fragment properly
In ip6_append_data_mtu(), when the xfrm mode is not tunnel(such as transport),the ipsec header need to be added in the first fragment, so the mtu will decrease to reserve space for it, then the second fragment come, the mtu should be turn back, as the commit 0c1833797a5a6ec23ea9261d979aa18078720b74 said. however, in the commit a493e60ac4bbe2e977e7129d6d8cbb0dd236be, it use *mtu = min(*mtu, ...) to change the mtu, which lead to the new mtu is alway equal with the first fragment's. and cannot turn back. when I test through ping6 -c1 -s5000 $ip (mtu=1280): ...frag (0|1232) ESP(spi=0x00002000,seq=0xb), length 1232 ...frag (1232|1216) ...frag (2448|1216) ...frag (3664|1216) ...frag (4880|164) which should be: ...frag (0|1232) ESP(spi=0x00001000,seq=0x1), length 1232 ...frag (1232|1232) ...frag (2464|1232) ...frag (3696|1232) ...frag (4928|116) so delete the min() when change back the mtu. Signed-off-by: Xin Long <lucien.xin@gmail.com> Fixes: 75a493e60ac4bb ("ipv6: ip6_append_data_mtu did not care about pmtudisc and frag_size") Acked-by: Hannes Frederic Sowa <hannes@stressinduktion.org> Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/usb/cdc_ncm.c')
0 files changed, 0 insertions, 0 deletions