Home
last modified time | relevance | path

Searched refs:ntail (Results 1 – 5 of 5) sorted by relevance

/Linux-v5.15/fs/jfs/
Djfs_extent.c206 s64 ntail, nextend, ninsert; in extRealloc() local
268 ntail = nbperpage; in extRealloc()
269 nextend = ntail - xlen; in extRealloc()
274 ntail = nxlen; in extRealloc()
298 if ((rc = xtTailgate(0, ip, xoff, (int) ntail, nxaddr, 0))) { in extRealloc()
312 xaddr = nxaddr + ntail; in extRealloc()
313 if (xtInsert (0, ip, xflag, xoff + ntail, (int) ninsert, in extRealloc()
317 nxlen = ntail; in extRealloc()
/Linux-v5.15/net/xfrm/
Dxfrm_output.c35 int ntail = dst->dev->needed_tailroom - skb_tailroom(skb); in xfrm_skb_check_space() local
38 if (ntail <= 0) in xfrm_skb_check_space()
41 } else if (ntail < 0) in xfrm_skb_check_space()
42 ntail = 0; in xfrm_skb_check_space()
44 return pskb_expand_head(skb, nhead, ntail, GFP_ATOMIC); in xfrm_skb_check_space()
/Linux-v5.15/net/core/
Dskbuff.c1685 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, in pskb_expand_head() argument
1689 int size = osize + nhead + ntail; in pskb_expand_head()
1919 int ntail; in __skb_pad() local
1927 ntail = skb->data_len + pad - (skb->end - skb->tail); in __skb_pad()
1928 if (likely(skb_cloned(skb) || ntail > 0)) { in __skb_pad()
1929 err = pskb_expand_head(skb, 0, ntail, GFP_ATOMIC); in __skb_pad()
4675 int ntail = 0; in skb_cow_data() local
4690 ntail = tailbits + 128; in skb_cow_data()
4695 ntail || in skb_cow_data()
4701 if (ntail == 0) in skb_cow_data()
[all …]
/Linux-v5.15/drivers/net/wireless/broadcom/brcm80211/brcmfmac/
Dsdio.c2127 int ntail, ret; in brcmf_sdio_txpkt_prep_sg() local
2161 ntail = pkt->data_len + tail_pad - in brcmf_sdio_txpkt_prep_sg()
2163 if (skb_cloned(pkt) || ntail > 0) in brcmf_sdio_txpkt_prep_sg()
2164 if (pskb_expand_head(pkt, 0, ntail, GFP_ATOMIC)) in brcmf_sdio_txpkt_prep_sg()
/Linux-v5.15/include/linux/
Dskbuff.h1183 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, gfp_t gfp_mask);