Home
last modified time | relevance | path

Searched refs:hdrsize (Results 1 – 25 of 65) sorted by relevance

123

/Linux-v6.6/scripts/dtc/libfdt/
Dfdt.c52 static int check_off_(uint32_t hdrsize, uint32_t totalsize, uint32_t off) in check_off_() argument
54 return (off >= hdrsize) && (off <= totalsize); in check_off_()
57 static int check_block_(uint32_t hdrsize, uint32_t totalsize, in check_block_() argument
60 if (!check_off_(hdrsize, totalsize, base)) in check_block_()
64 if (!check_off_(hdrsize, totalsize, base + size)) in check_block_()
91 size_t hdrsize; in fdt_check_header() local
107 hdrsize = fdt_header_size(fdt); in fdt_check_header()
109 if ((fdt_totalsize(fdt) < hdrsize) in fdt_check_header()
114 if (!check_off_(hdrsize, fdt_totalsize(fdt), in fdt_check_header()
120 if (!check_off_(hdrsize, fdt_totalsize(fdt), in fdt_check_header()
[all …]
Dfdt_sw.c111 const int hdrsize = FDT_ALIGN(sizeof(struct fdt_header), in fdt_create_with_flags() local
115 if (bufsize < hdrsize) in fdt_create_with_flags()
136 fdt_set_off_mem_rsvmap(fdt, hdrsize); in fdt_create_with_flags()
/Linux-v6.6/net/netfilter/
Dnft_inner.c44 u8 hdrsize; member
61 u32 hdrsize; in nft_inner_parse_l2l3() local
71 hdrsize = sizeof(_eth); in nft_inner_parse_l2l3()
80 hdrsize = sizeof(_veth); in nft_inner_parse_l2l3()
88 off += hdrsize; in nft_inner_parse_l2l3()
188 *off += priv->hdrsize; in nft_inner_parse_tunhdr()
296 u32 flags, hdrsize, type, num; in nft_inner_init() local
315 hdrsize = ntohl(nla_get_be32(tb[NFTA_INNER_HDRSIZE])); in nft_inner_init()
322 if (hdrsize == 0 || hdrsize > 64) in nft_inner_init()
327 priv->hdrsize = hdrsize; in nft_inner_init()
[all …]
Dnf_flow_table_ip.c170 u32 hdrsize; member
196 ctx->hdrsize = sizeof(struct tcphdr); in nf_flow_tuple_ip()
199 ctx->hdrsize = sizeof(struct udphdr); in nf_flow_tuple_ip()
203 ctx->hdrsize = sizeof(struct gre_base_hdr); in nf_flow_tuple_ip()
213 if (!pskb_may_pull(skb, thoff + ctx->hdrsize)) in nf_flow_tuple_ip()
388 if (skb_try_make_writable(skb, thoff + ctx->hdrsize)) in nf_flow_offload_forward()
591 ctx->hdrsize = sizeof(struct tcphdr); in nf_flow_tuple_ipv6()
594 ctx->hdrsize = sizeof(struct udphdr); in nf_flow_tuple_ipv6()
598 ctx->hdrsize = sizeof(struct gre_base_hdr); in nf_flow_tuple_ipv6()
608 if (!pskb_may_pull(skb, thoff + ctx->hdrsize)) in nf_flow_tuple_ipv6()
[all …]
Dnf_nat_proto.c106 int hdrsize = 8; in sctp_manip_pkt() local
113 hdrsize = sizeof(*hdr); in sctp_manip_pkt()
115 if (skb_ensure_writable(skb, hdroff + hdrsize)) in sctp_manip_pkt()
128 if (hdrsize < sizeof(*hdr)) in sctp_manip_pkt()
148 int hdrsize = 8; /* TCP connection tracking guarantees this much */ in tcp_manip_pkt() local
154 hdrsize = sizeof(struct tcphdr); in tcp_manip_pkt()
156 if (skb_ensure_writable(skb, hdroff + hdrsize)) in tcp_manip_pkt()
174 if (hdrsize < sizeof(*hdr)) in tcp_manip_pkt()
191 int hdrsize = 8; /* DCCP connection tracking guarantees this much */ in dccp_manip_pkt() local
194 hdrsize = sizeof(struct dccp_hdr); in dccp_manip_pkt()
[all …]
/Linux-v6.6/drivers/infiniband/hw/qib/
Dqib_uc.c243 u32 hdrsize; in qib_uc_rcv() local
254 hdrsize = 8 + 12; /* LRH + BTH */ in qib_uc_rcv()
257 hdrsize = 8 + 40 + 12; /* LRH + GRH + BTH */ in qib_uc_rcv()
358 if (unlikely(tlen != (hdrsize + pmtu + 4))) in qib_uc_rcv()
369 hdrsize += 4; in qib_uc_rcv()
381 if (unlikely(tlen < (hdrsize + pad + 4))) in qib_uc_rcv()
384 tlen -= (hdrsize + pad + 4); in qib_uc_rcv()
416 hdrsize += sizeof(*reth); in qib_uc_rcv()
447 if (unlikely(tlen != (hdrsize + pmtu + 4))) in qib_uc_rcv()
458 hdrsize += 4; in qib_uc_rcv()
[all …]
Dqib_rc.c1274 u32 psn, u32 hdrsize, u32 pmtu, in qib_rc_rcv_resp() argument
1356 hdrsize += 4; in qib_rc_rcv_resp()
1376 if (unlikely(tlen != (hdrsize + pmtu + 4))) in qib_rc_rcv_resp()
1416 if (unlikely(tlen < (hdrsize + pad + 8))) in qib_rc_rcv_resp()
1441 if (unlikely(tlen <= (hdrsize + pad + 8))) in qib_rc_rcv_resp()
1444 tlen -= hdrsize + pad + 8; in qib_rc_rcv_resp()
1720 u32 hdrsize; in qib_rc_rcv() local
1733 hdrsize = 8 + 12; /* LRH + BTH */ in qib_rc_rcv()
1736 hdrsize = 8 + 40 + 12; /* LRH + GRH + BTH */ in qib_rc_rcv()
1755 hdrsize, pmtu, rcd); in qib_rc_rcv()
[all …]
Dqib_ud.c432 u32 hdrsize; in qib_ud_rcv() local
442 hdrsize = 8 + 12 + 8; /* LRH + BTH + DETH */ in qib_ud_rcv()
445 hdrsize = 8 + 40 + 12 + 8; /* LRH + GRH + BTH + DETH */ in qib_ud_rcv()
455 if (unlikely(tlen < (hdrsize + pad + 4))) in qib_ud_rcv()
458 tlen -= hdrsize + pad + 4; in qib_ud_rcv()
/Linux-v6.6/drivers/net/wireless/intersil/orinoco/
Dfw.c59 u16 hdrsize; in validate_fw() local
66 hdrsize = le16_to_cpu(hdr->headersize); in validate_fw()
67 if (hdrsize > len) in validate_fw()
69 if ((hdrsize + le32_to_cpu(hdr->block_offset)) > len) in validate_fw()
71 if ((hdrsize + le32_to_cpu(hdr->pdr_offset)) > len) in validate_fw()
73 if ((hdrsize + le32_to_cpu(hdr->pri_offset)) > len) in validate_fw()
75 if ((hdrsize + le32_to_cpu(hdr->compat_offset)) > len) in validate_fw()
/Linux-v6.6/drivers/infiniband/hw/hfi1/
Duc.c267 u32 hdrsize = packet->hlen; in hfi1_uc_rcv() local
379 if (unlikely(tlen != (hdrsize + pmtu + extra_bytes))) in hfi1_uc_rcv()
399 if (unlikely(tlen < (hdrsize + extra_bytes))) in hfi1_uc_rcv()
402 tlen -= (hdrsize + extra_bytes); in hfi1_uc_rcv()
475 if (unlikely(tlen != (hdrsize + pmtu + 4))) in hfi1_uc_rcv()
490 if (unlikely(tlen < (hdrsize + pad + 4))) in hfi1_uc_rcv()
493 tlen -= (hdrsize + extra_bytes); in hfi1_uc_rcv()
515 if (unlikely(tlen < (hdrsize + pad + 4))) in hfi1_uc_rcv()
518 tlen -= (hdrsize + extra_bytes); in hfi1_uc_rcv()
/Linux-v6.6/drivers/crypto/nx/
Dnx-842.c163 unsigned int hdrsize) in compress() argument
174 if (p->oremain == 0 || hdrsize + c->minimum > dlen) in compress()
194 dst += hdrsize; in compress()
195 dlen -= hdrsize; in compress()
229 dskip += hdrsize; in compress()
257 unsigned int groups, hdrsize, h; in nx842_crypto_compress() local
274 hdrsize = NX842_CRYPTO_HEADER_SIZE(groups); in nx842_crypto_compress()
299 h = !n && add_header ? hdrsize : 0; in nx842_crypto_compress()
/Linux-v6.6/fs/xfs/scrub/
Dattr.c381 unsigned int hdrsize; in xchk_xattr_block() local
404 hdrsize = xfs_attr3_leaf_hdr_size(leaf); in xchk_xattr_block()
410 if (leafhdr.firstused < hdrsize) in xchk_xattr_block()
412 if (!xchk_xattr_set_map(ds->sc, ab->usedmap, 0, hdrsize)) in xchk_xattr_block()
465 int hdrsize; in xchk_xattr_rec() local
487 hdrsize = xfs_attr3_leaf_hdr_size(bp->b_addr); in xchk_xattr_rec()
489 if (nameidx < hdrsize || nameidx >= mp->m_attr_geo->blksize) { in xchk_xattr_rec()
/Linux-v6.6/net/rxrpc/
Dpeer_object.c249 peer->hdrsize = sizeof(struct iphdr); in rxrpc_init_peer()
253 peer->hdrsize = sizeof(struct ipv6hdr); in rxrpc_init_peer()
262 peer->hdrsize += sizeof(struct udphdr); in rxrpc_init_peer()
268 peer->hdrsize += sizeof(struct rxrpc_wire_header); in rxrpc_init_peer()
269 peer->maxdata = peer->mtu - peer->hdrsize; in rxrpc_init_peer()
Dpeer_event.c118 if (mtu < peer->hdrsize) in rxrpc_adjust_mtu()
119 mtu = peer->hdrsize + 4; in rxrpc_adjust_mtu()
126 peer->maxdata = peer->mtu - peer->hdrsize; in rxrpc_adjust_mtu()
/Linux-v6.6/include/net/
Dgenetlink.h61 unsigned int hdrsize; member
361 return __nlmsg_parse(nlh, family->hdrsize + GENL_HDRLEN, tb, maxtype, in genlmsg_parse_deprecated()
380 return __nlmsg_parse(nlh, family->hdrsize + GENL_HDRLEN, tb, maxtype, in genlmsg_parse()
/Linux-v6.6/drivers/s390/crypto/
Dzcrypt_ep11misc.c123 size_t hdrsize, plsize = 0; in ep11_kb_split() local
134 hdrsize = 0; in ep11_kb_split()
139 hdrsize = sizeof(struct ep11kblob_header); in ep11_kb_split()
145 plsize = kblen - hdrsize; in ep11_kb_split()
146 pl = (u8 *)kb + hdrsize; in ep11_kb_split()
151 *kbhdrsize = hdrsize; in ep11_kb_split()
167 size_t hdrsize = 0, plsize = 0; in ep11_kb_decode() local
181 &hdr, &hdrsize, &tmpp, &plsize)) in ep11_kb_decode()
191 plsize = hdr->len - hdrsize; in ep11_kb_decode()
196 *kbhdrsize = hdrsize; in ep11_kb_decode()
/Linux-v6.6/net/sched/
Dact_ct.c479 size_t hdrsize; in tcf_ct_flow_table_fill_tuple_ipv4() local
495 hdrsize = sizeof(struct tcphdr); in tcf_ct_flow_table_fill_tuple_ipv4()
498 hdrsize = sizeof(*ports); in tcf_ct_flow_table_fill_tuple_ipv4()
502 hdrsize = sizeof(struct gre_base_hdr); in tcf_ct_flow_table_fill_tuple_ipv4()
512 if (!pskb_network_may_pull(skb, thoff + hdrsize)) in tcf_ct_flow_table_fill_tuple_ipv4()
552 size_t hdrsize; in tcf_ct_flow_table_fill_tuple_ipv6() local
564 hdrsize = sizeof(struct tcphdr); in tcf_ct_flow_table_fill_tuple_ipv6()
567 hdrsize = sizeof(*ports); in tcf_ct_flow_table_fill_tuple_ipv6()
571 hdrsize = sizeof(struct gre_base_hdr); in tcf_ct_flow_table_fill_tuple_ipv6()
581 if (!pskb_network_may_pull(skb, thoff + hdrsize)) in tcf_ct_flow_table_fill_tuple_ipv6()
/Linux-v6.6/fs/smb/client/
Dnetlink.c48 .hdrsize = 0,
/Linux-v6.6/fs/quota/
Dnetlink.c18 .hdrsize = 0,
/Linux-v6.6/net/smc/
Dsmc_netlink.c137 .hdrsize = 0,
/Linux-v6.6/net/ipv6/ila/
Dila_main.c47 .hdrsize = 0,
/Linux-v6.6/drivers/scsi/aacraid/
Dcomminit.c370 unsigned long hdrsize = (sizeof(u32) * NUMBER_OF_COMM_QUEUES) * 2; in aac_comm_init() local
389 size = hdrsize + queuesize; in aac_comm_init()
394 queues = (struct aac_entry *)(((ulong)headers) + hdrsize); in aac_comm_init()
/Linux-v6.6/net/ieee802154/
Dnetlink.c127 .hdrsize = 0,
/Linux-v6.6/drivers/net/wireless/broadcom/b43/
Ddma.c1202 size_t hdrsize = b43_txhdr_size(ring->dev); in dma_tx_fragment() local
1217 header = &(ring->txhdr_cache[(slot / TX_SLOTS_PER_FRAME) * hdrsize]); in dma_tx_fragment()
1228 hdrsize, 1); in dma_tx_fragment()
1229 if (b43_dma_mapping_error(ring, meta_hdr->dmaaddr, hdrsize, 1)) { in dma_tx_fragment()
1235 hdrsize, 1, 0, 0); in dma_tx_fragment()
1284 hdrsize, 1); in dma_tx_fragment()
/Linux-v6.6/include/linux/sunrpc/
Dclnt.h204 unsigned int hdrsize);

123