Searched refs:tfclen (Results 1 – 2 of 2) sorted by relevance
/linux-4.1.27/net/ipv6/ |
D | esp6.c | 158 int tfclen; in esp6_output() local 171 tfclen = 0; in esp6_output() 178 tfclen = padto - skb->len; in esp6_output() 181 clen = ALIGN(skb->len + 2 + tfclen, blksize); in esp6_output() 182 plen = clen - skb->len - tfclen; in esp6_output() 184 err = skb_cow_data(skb, tfclen + plen + alen, &trailer); in esp6_output() 213 if (tfclen) { in esp6_output() 214 memset(tail, 0, tfclen); in esp6_output() 215 tail += tfclen; in esp6_output()
|
/linux-4.1.27/net/ipv4/ |
D | esp4.c | 132 int tfclen; in esp_output() local 144 tfclen = 0; in esp_output() 151 tfclen = padto - skb->len; in esp_output() 154 clen = ALIGN(skb->len + 2 + tfclen, blksize); in esp_output() 155 plen = clen - skb->len - tfclen; in esp_output() 157 err = skb_cow_data(skb, tfclen + plen + alen, &trailer); in esp_output() 186 if (tfclen) { in esp_output() 187 memset(tail, 0, tfclen); in esp_output() 188 tail += tfclen; in esp_output()
|