Home
last modified time | relevance | path

Searched refs:nhead (Results 1 – 11 of 11) sorted by relevance

/kernel/linux/linux-5.10/drivers/crypto/
Datmel-aes-regs.h85 #define AES_EMR_NHEAD(nhead) (((nhead) << AES_EMR_NHEAD_OFFSET) &\ argument
/kernel/liteos_a/fs/jffs2/src/
Djffs2_hash.c68 LIST_HEAD *nhead = &heads[i]; in Jffs2HashDump() local
71 LOS_DL_LIST_FOR_EACH_ENTRY(node, nhead, struct jffs2_inode, i_hashlist) { in Jffs2HashDump()
/kernel/liteos_a/fs/vfs/
Dvnode_hash.c65 LIST_HEAD *nhead = &g_vnodeHashEntrys[i]; in VnodeHashDump() local
68 LOS_DL_LIST_FOR_EACH_ENTRY(node, nhead, struct Vnode, hashEntry) { in VnodeHashDump()
Dpath_cache.c71 LIST_HEAD *nhead = &g_pathCacheHashEntrys[i]; in PathCacheDump() local
73 LOS_DL_LIST_FOR_EACH_ENTRY(pc, nhead, struct PathCache, hashEntry) { in PathCacheDump()
/kernel/linux/linux-5.10/net/xfrm/
Dxfrm_output.c33 int nhead = dst->header_len + LL_RESERVED_SPACE(dst->dev) in xfrm_skb_check_space() local
37 if (nhead <= 0) { in xfrm_skb_check_space()
40 nhead = 0; in xfrm_skb_check_space()
44 return pskb_expand_head(skb, nhead, ntail, GFP_ATOMIC); in xfrm_skb_check_space()
/kernel/linux/linux-5.10/net/core/
Dlwt_bpf.c164 int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb)); in xmit_check_hhlen() local
166 if (pskb_expand_head(skb, nhead, 0, GFP_ATOMIC)) in xmit_check_hhlen()
Dskbuff.c1621 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, in pskb_expand_head() argument
1625 int size = osize + nhead + ntail; in pskb_expand_head()
1629 BUG_ON(nhead < 0); in pskb_expand_head()
1646 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head); in pskb_expand_head()
1672 off = (data + nhead) - skb->head; in pskb_expand_head()
1679 off = nhead; in pskb_expand_head()
1684 skb_headers_offset_update(skb, nhead); in pskb_expand_head()
Dpktgen.c2556 int nhead = 0; in process_ipsec() local
2562 nhead = x->props.header_len - skb_headroom(skb); in process_ipsec()
2563 if (nhead > 0) { in process_ipsec()
2564 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC); in process_ipsec()
/kernel/linux/linux-5.10/net/bpf/
Dtest_run.c597 int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb)); in bpf_prog_test_run_skb() local
599 if (pskb_expand_head(skb, nhead, 0, GFP_USER)) { in bpf_prog_test_run_skb()
/kernel/linux/linux-5.10/security/smack/
Dsmack_lsm.c344 static int smk_copy_rules(struct list_head *nhead, struct list_head *ohead, in smk_copy_rules() argument
358 list_add_rcu(&nrp->list, nhead); in smk_copy_rules()
371 static int smk_copy_relabel(struct list_head *nhead, struct list_head *ohead, in smk_copy_relabel() argument
380 smk_destroy_label_list(nhead); in smk_copy_relabel()
384 list_add(&nklep->list, nhead); in smk_copy_relabel()
/kernel/linux/linux-5.10/include/linux/
Dskbuff.h1168 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, gfp_t gfp_mask);