Searched refs:ntail (Results 1 – 5 of 5) sorted by relevance
/linux-4.4.14/fs/jfs/ |
D | jfs_extent.c | 219 s64 ntail, nextend, ninsert; in extRealloc() local 281 ntail = nbperpage; in extRealloc() 282 nextend = ntail - xlen; in extRealloc() 287 ntail = nxlen; in extRealloc() 311 if ((rc = xtTailgate(0, ip, xoff, (int) ntail, nxaddr, 0))) { in extRealloc() 325 xaddr = nxaddr + ntail; in extRealloc() 326 if (xtInsert (0, ip, xflag, xoff + ntail, (int) ninsert, in extRealloc() 330 nxlen = ntail; in extRealloc()
|
/linux-4.4.14/net/xfrm/ |
D | xfrm_output.c | 29 int ntail = dst->dev->needed_tailroom - skb_tailroom(skb); in xfrm_skb_check_space() local 32 if (ntail <= 0) in xfrm_skb_check_space() 35 } else if (ntail < 0) in xfrm_skb_check_space() 36 ntail = 0; in xfrm_skb_check_space() 38 return pskb_expand_head(skb, nhead, ntail, GFP_ATOMIC); in xfrm_skb_check_space()
|
/linux-4.4.14/net/core/ |
D | skbuff.c | 1119 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, in pskb_expand_head() argument 1124 int size = nhead + skb_end_offset(skb) + ntail; in pskb_expand_head() 1291 int ntail; in skb_pad() local 1299 ntail = skb->data_len + pad - (skb->end - skb->tail); in skb_pad() 1300 if (likely(skb_cloned(skb) || ntail > 0)) { in skb_pad() 1301 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC); in skb_pad() 3510 int ntail = 0; in skb_cow_data() local 3525 ntail = tailbits + 128; in skb_cow_data() 3530 ntail || in skb_cow_data() 3536 if (ntail == 0) in skb_cow_data() [all …]
|
/linux-4.4.14/drivers/net/wireless/brcm80211/brcmfmac/ |
D | sdio.c | 2161 int ntail, ret; in brcmf_sdio_txpkt_prep_sg() local 2195 ntail = pkt->data_len + tail_pad - in brcmf_sdio_txpkt_prep_sg() 2197 if (skb_cloned(pkt) || ntail > 0) in brcmf_sdio_txpkt_prep_sg() 2198 if (pskb_expand_head(pkt, 0, ntail, GFP_ATOMIC)) in brcmf_sdio_txpkt_prep_sg()
|
/linux-4.4.14/include/linux/ |
D | skbuff.h | 877 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, gfp_t gfp_mask);
|