Home
last modified time | relevance | path

Searched refs:xt (Results 1 – 13 of 13) sorted by relevance

/linux/net/netfilter/
H A Dx_tables.c78 static struct xt_af *xt __read_mostly;
93 mutex_lock(&xt[af].mutex); in xt_register_target()
94 list_add(&target->list, &xt[af].target); in xt_register_target()
95 mutex_unlock(&xt[af].mutex); in xt_register_target()
105 mutex_lock(&xt[af].mutex); in xt_unregister_target()
107 mutex_unlock(&xt[af].mutex); in xt_unregister_target()
143 mutex_lock(&xt[af].mutex); in xt_register_match()
144 list_add(&match->list, &xt[af].match); in xt_register_match()
145 mutex_unlock(&xt[af].mutex); in xt_register_match()
155 mutex_lock(&xt[af].mutex); in xt_unregister_match()
[all …]
H A Dnft_compat.c63 const void *xt, const void *xt_info) in nft_compat_set_par() argument
68 par->target = xt; in nft_compat_set_par()
80 struct xt_action_param xt; in nft_target_eval_xt() local
83 nft_compat_set_par(&xt, pkt, target, info); in nft_target_eval_xt()
85 ret = target->target(skb, &xt); in nft_target_eval_xt()
87 if (xt.hotdrop) in nft_target_eval_xt()
107 struct xt_action_param xt; in nft_target_eval_bridge() local
110 nft_compat_set_par(&xt, pkt, target, info); in nft_target_eval_bridge()
112 ret = target->target(skb, &xt); in nft_target_eval_bridge()
114 if (xt.hotdrop) in nft_target_eval_bridge()
[all …]
/linux/drivers/media/platform/ti/omap/
H A Domap_vout_vrfb.c142 vout->vrfb_dma_tx.xt = kzalloc(xt_size, GFP_KERNEL); in omap_vout_setup_vrfb_bufs()
143 if (!vout->vrfb_dma_tx.xt) { in omap_vout_setup_vrfb_bufs()
187 kfree(vout->vrfb_dma_tx.xt); in omap_vout_release_vrfb()
236 struct dma_interleaved_template *xt = vout->vrfb_dma_tx.xt; in omap_vout_prepare_vrfb() local
256 xt->src_start = buf_phy_addr; in omap_vout_prepare_vrfb()
257 xt->dst_start = vout->vrfb_context[vb->index].paddr[0]; in omap_vout_prepare_vrfb()
259 xt->numf = vout->pix.height; in omap_vout_prepare_vrfb()
260 xt->frame_size = 1; in omap_vout_prepare_vrfb()
261 xt->sgl[0].size = vout->pix.width * vout->bpp; in omap_vout_prepare_vrfb()
262 xt->sgl[0].icg = dst_icg; in omap_vout_prepare_vrfb()
[all …]
/linux/arch/xtensa/kernel/
H A Dvmlinux.lds.S382 .xt.prop 0 : { KEEP(*(.xt.prop .xt.prop.* .gnu.linkonce.prop.*)) }
383 .xt.insn 0 : { KEEP(*(.xt.insn .xt.insn.* .gnu.linkonce.x*)) }
384 .xt.lit 0 : { KEEP(*(.xt.lit .xt.lit.* .gnu.linkonce.p*)) }
/linux/drivers/dma/
H A Ddma-axi-dmac.c743 struct dma_chan *c, struct dma_interleaved_template *xt, in axi_dmac_prep_interleaved() argument
750 if (xt->frame_size != 1) in axi_dmac_prep_interleaved()
753 if (xt->dir != chan->direction) in axi_dmac_prep_interleaved()
757 if (!xt->src_inc || !axi_dmac_check_addr(chan, xt->src_start)) in axi_dmac_prep_interleaved()
762 if (!xt->dst_inc || !axi_dmac_check_addr(chan, xt->dst_start)) in axi_dmac_prep_interleaved()
766 dst_icg = dmaengine_get_dst_icg(xt, &xt->sgl[0]); in axi_dmac_prep_interleaved()
767 src_icg = dmaengine_get_src_icg(xt, &xt->sgl[0]); in axi_dmac_prep_interleaved()
770 if (!axi_dmac_check_len(chan, xt->sgl[0].size) || in axi_dmac_prep_interleaved()
771 xt->numf == 0) in axi_dmac_prep_interleaved()
773 if (xt->sgl[0].size + dst_icg > chan->max_length || in axi_dmac_prep_interleaved()
[all …]
/linux/include/linux/
H A Ddmaengine.h936 struct dma_chan *chan, struct dma_interleaved_template *xt,
1048 struct dma_chan *chan, struct dma_interleaved_template *xt, in dmaengine_prep_interleaved_dma() argument
1057 return chan->device->device_prep_interleaved_dma(chan, xt, flags); in dmaengine_prep_interleaved_dma()
1346 static inline size_t dmaengine_get_dst_icg(struct dma_interleaved_template *xt, in dmaengine_get_dst_icg() argument
1349 return dmaengine_get_icg(xt->dst_inc, xt->dst_sgl, in dmaengine_get_dst_icg()
1353 static inline size_t dmaengine_get_src_icg(struct dma_interleaved_template *xt, in dmaengine_get_src_icg() argument
1356 return dmaengine_get_icg(xt->src_inc, xt->src_sgl, in dmaengine_get_src_icg()
/linux/drivers/media/platform/xilinx/
H A Dxilinx-dma.h99 struct dma_interleaved_template xt; member
/linux/kernel/time/
H A Dtimekeeping.c1418 struct timespec64 ts_delta, xt; in do_settimeofday64() local
1428 xt = tk_xtime(tks); in do_settimeofday64()
1429 ts_delta = timespec64_sub(*ts, xt); in do_settimeofday64()
/linux/Documentation/sphinx/
H A Dkerneldoc-preamble.sty48 \nobreak\hb@xt@\@pnumwidth{\hss #2%
/linux/Documentation/driver-api/dmaengine/
H A Dclient.rst119 struct dma_chan *chan, struct dma_interleaved_template *xt,
/linux/fs/ocfs2/
H A Dalloc.c306 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root; in ocfs2_xattr_tree_set_last_eb_blk() local
308 xt->xt_last_eb_blk = cpu_to_le64(blkno); in ocfs2_xattr_tree_set_last_eb_blk()
314 struct ocfs2_xattr_tree_root *xt = &xb->xb_attrs.xb_root; in ocfs2_xattr_tree_get_last_eb_blk() local
316 return le64_to_cpu(xt->xt_last_eb_blk); in ocfs2_xattr_tree_get_last_eb_blk()
/linux/arch/xtensa/
H A DKconfig585 xt-gdb can't place a Software Breakpoint in the 0XD region prior
/linux/
H A DMAINTAINERS22590 M: Xiantao Hu <xt.hu@cqplus1.com>