]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/commit
ipv6: pass up EMSGSIZE msg for UDP socket in Ipv6
authorWei Wang <weiwan@google.com>
Wed, 17 Feb 2016 21:58:22 +0000 (13:58 -0800)
committerDavid S. Miller <davem@davemloft.net>
Fri, 19 Feb 2016 20:46:24 +0000 (15:46 -0500)
commite0d8c1b7381133240f0c69eaf740f64975b6058e
treee4db7477d4deaf5a5b922ddeb89f6327fe7d8483
parent68f227930b887ef9f18065f15a17aa9dc1ac2d31
ipv6: pass up EMSGSIZE msg for UDP socket in Ipv6

In ipv4,  when  the machine receives a ICMP_FRAG_NEEDED message,  the
connected UDP socket will get EMSGSIZE message on its next read from the
socket.
However, this is not the case for ipv6.
This fix modifies the udp err handler in Ipv6 for ICMP6_PKT_TOOBIG to
make it similar to ipv4 behavior. That is when the machine gets an
ICMP6_PKT_TOOBIG message, the connected UDP socket will get EMSGSIZE
message on its next read from the socket.

Signed-off-by: Wei Wang <weiwan@google.com>
Acked-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
net/ipv6/udp.c