Home
last modified time | relevance | path

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

/Linux-v4.19/drivers/crypto/
Datmel-aes-regs.h85 #define AES_EMR_NHEAD(nhead) (((nhead) << AES_EMR_NHEAD_OFFSET) &\ argument
/Linux-v4.19/net/xfrm/
Dxfrm_output.c27 int nhead = dst->header_len + LL_RESERVED_SPACE(dst->dev) in xfrm_skb_check_space() local
31 if (nhead <= 0) { in xfrm_skb_check_space()
34 nhead = 0; in xfrm_skb_check_space()
38 return pskb_expand_head(skb, nhead, ntail, GFP_ATOMIC); in xfrm_skb_check_space()
/Linux-v4.19/net/bpf/
Dtest_run.c150 int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb)); in bpf_prog_test_run_skb() local
152 if (pskb_expand_head(skb, nhead, 0, GFP_USER)) { in bpf_prog_test_run_skb()
/Linux-v4.19/net/core/
Dlwt_bpf.c140 int nhead = HH_DATA_ALIGN(hh_len - skb_headroom(skb)); in xmit_check_hhlen() local
142 if (pskb_expand_head(skb, nhead, 0, GFP_ATOMIC)) in xmit_check_hhlen()
Dskbuff.c1444 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, in pskb_expand_head() argument
1448 int size = osize + nhead + ntail; in pskb_expand_head()
1452 BUG_ON(nhead < 0); in pskb_expand_head()
1469 memcpy(data + nhead, skb->head, skb_tail_pointer(skb) - skb->head); in pskb_expand_head()
1495 off = (data + nhead) - skb->head; in pskb_expand_head()
1502 off = nhead; in pskb_expand_head()
1507 skb_headers_offset_update(skb, nhead); in pskb_expand_head()
Dpktgen.c2562 int nhead = 0; in process_ipsec() local
2568 nhead = x->props.header_len - skb_headroom(skb); in process_ipsec()
2569 if (nhead > 0) { in process_ipsec()
2570 ret = pskb_expand_head(skb, nhead, 0, GFP_ATOMIC); in process_ipsec()
/Linux-v4.19/security/smack/
Dsmack_lsm.c345 static int smk_copy_rules(struct list_head *nhead, struct list_head *ohead, in smk_copy_rules() argument
359 list_add_rcu(&nrp->list, nhead); in smk_copy_rules()
372 static int smk_copy_relabel(struct list_head *nhead, struct list_head *ohead, in smk_copy_relabel() argument
381 smk_destroy_label_list(nhead); in smk_copy_relabel()
385 list_add(&nklep->list, nhead); in smk_copy_relabel()
/Linux-v4.19/include/linux/
Dskbuff.h1054 int pskb_expand_head(struct sk_buff *skb, int nhead, int ntail, gfp_t gfp_mask);