Lines Matching refs:buff
809 struct sk_buff *buff; in tcp_v6_send_response() local
824 buff = alloc_skb(MAX_HEADER + sizeof(struct ipv6hdr) + tot_len, in tcp_v6_send_response()
826 if (buff == NULL) in tcp_v6_send_response()
829 skb_reserve(buff, MAX_HEADER + sizeof(struct ipv6hdr) + tot_len); in tcp_v6_send_response()
831 t1 = (struct tcphdr *) skb_push(buff, tot_len); in tcp_v6_send_response()
832 skb_reset_transport_header(buff); in tcp_v6_send_response()
869 buff->ip_summed = CHECKSUM_PARTIAL; in tcp_v6_send_response()
870 buff->csum = 0; in tcp_v6_send_response()
872 __tcp_v6_send_check(buff, &fl6.saddr, &fl6.daddr); in tcp_v6_send_response()
891 skb_dst_set(buff, dst); in tcp_v6_send_response()
892 ip6_xmit(ctl_sk, buff, &fl6, NULL, tclass); in tcp_v6_send_response()
899 kfree_skb(buff); in tcp_v6_send_response()