Symbol: OTX2_ALIGN
drivers/net/ethernet/marvell/octeontx2/af/common.h
62
qmem->alloc_sz = (qsize * entry_sz) + OTX2_ALIGN;
drivers/net/ethernet/marvell/octeontx2/af/common.h
70
aligned_addr = ALIGN((u64)qmem->iova, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
238
CN10K_CPT_INST_GRP_QLEN_BYTES + OTX2_ALIGN;
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
250
iq->vaddr = PTR_ALIGN(iq->vaddr, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
251
iq->dma_addr = PTR_ALIGN(iq->dma_addr, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
535
sa_entry->ctx_size = (pf->ipsec.sa_size / OTX2_ALIGN) & 0xF;
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
681
err = qmem_alloc(pf->dev, &sa_info, pf->ipsec.sa_size, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
730
sa_entry->ctx_size = (pf->ipsec.sa_size / OTX2_ALIGN) & 0xF;
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
795
sa_size = sizeof(struct cn10k_tx_sa_s) % OTX2_ALIGN ?
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
796
(sizeof(struct cn10k_tx_sa_s) / OTX2_ALIGN + 1) *
drivers/net/ethernet/marvell/octeontx2/nic/cn10k_ipsec.c
797
OTX2_ALIGN : sizeof(struct cn10k_tx_sa_s);
drivers/net/ethernet/marvell/octeontx2/nic/cn20k.c
268
err = qmem_alloc(pfvf->dev, &pool->fc_addr, 1, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/cn20k.c
384
sz = ALIGN(ALIGN(SKB_DATA_ALIGN(buf_size), OTX2_ALIGN), PAGE_SIZE);
drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
1389
err = qmem_alloc(pfvf->dev, &pool->fc_addr, 1, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
539
sz = ALIGN(sz, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/otx2_common.c
560
buf = napi_alloc_frag_align(pool->rbsize, OTX2_ALIGN);
drivers/net/ethernet/marvell/octeontx2/nic/otx2_pf.c
1593
return ALIGN(pf->hw.rbuf_len, OTX2_ALIGN) + OTX2_HEAD_ROOM;
drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h
21
#define OTX2_DATA_ALIGN(X) ALIGN(X, OTX2_ALIGN)
drivers/net/ethernet/marvell/octeontx2/nic/otx2_txrx.h
22
#define OTX2_HEAD_ROOM OTX2_ALIGN
drivers/net/ethernet/marvell/octeontx2/nic/rep.c
608
priv->rbsize = ALIGN(priv->hw.rbuf_len, OTX2_ALIGN) + OTX2_HEAD_ROOM;