maxnonfragsize    974 net/ipv4/ip_output.c 	unsigned int maxfraglen, fragheaderlen, maxnonfragsize;
maxnonfragsize    995 net/ipv4/ip_output.c 	maxnonfragsize = ip_sk_ignore_df(sk) ? 0xFFFF : mtu;
maxnonfragsize    997 net/ipv4/ip_output.c 	if (cork->length + length > maxnonfragsize - fragheaderlen) {
maxnonfragsize   1334 net/ipv4/ip_output.c 	unsigned int maxfraglen, fragheaderlen, fraggap, maxnonfragsize;
maxnonfragsize   1358 net/ipv4/ip_output.c 	maxnonfragsize = ip_sk_ignore_df(sk) ? 0xFFFF : mtu;
maxnonfragsize   1360 net/ipv4/ip_output.c 	if (cork->length + size > maxnonfragsize - fragheaderlen) {
maxnonfragsize   1336 net/ipv6/ip6_output.c 	unsigned int maxnonfragsize, headersize;
maxnonfragsize   1382 net/ipv6/ip6_output.c 		maxnonfragsize = sizeof(struct ipv6hdr) + IPV6_MAXPLEN;
maxnonfragsize   1384 net/ipv6/ip6_output.c 		maxnonfragsize = mtu;
maxnonfragsize   1386 net/ipv6/ip6_output.c 	if (cork->length + length > maxnonfragsize - headersize) {