/openbmc/linux/net/ipv6/ |
H A D | xfrm6_policy.c | 77 static int xfrm6_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, in xfrm6_fill_dst() argument 80 struct rt6_info *rt = dst_rt6_info(xdst->route); in xfrm6_fill_dst() 82 xdst->u.dst.dev = dev; in xfrm6_fill_dst() 83 netdev_hold(dev, &xdst->u.dst.dev_tracker, GFP_ATOMIC); in xfrm6_fill_dst() 85 xdst->u.rt6.rt6i_idev = in6_dev_get(dev); in xfrm6_fill_dst() 86 if (!xdst->u.rt6.rt6i_idev) { in xfrm6_fill_dst() 87 netdev_put(dev, &xdst->u.dst.dev_tracker); in xfrm6_fill_dst() 93 xdst->u.rt6.rt6i_flags = rt->rt6i_flags & (RTF_ANYCAST | in xfrm6_fill_dst() 95 xdst->route_cookie = rt6_get_cookie(rt); in xfrm6_fill_dst() 96 xdst->u.rt6.rt6i_gateway = rt->rt6i_gateway; in xfrm6_fill_dst() [all …]
|
/openbmc/linux/net/ipv4/ |
H A D | xfrm4_policy.c | 65 static int xfrm4_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, in xfrm4_fill_dst() argument 68 struct rtable *rt = (struct rtable *)xdst->route; in xfrm4_fill_dst() 71 xdst->u.rt.rt_iif = fl4->flowi4_iif; in xfrm4_fill_dst() 73 xdst->u.dst.dev = dev; in xfrm4_fill_dst() 74 netdev_hold(dev, &xdst->u.dst.dev_tracker, GFP_ATOMIC); in xfrm4_fill_dst() 78 xdst->u.rt.rt_is_input = rt->rt_is_input; in xfrm4_fill_dst() 79 xdst->u.rt.rt_flags = rt->rt_flags & (RTCF_BROADCAST | RTCF_MULTICAST | in xfrm4_fill_dst() 81 xdst->u.rt.rt_type = rt->rt_type; in xfrm4_fill_dst() 82 xdst->u.rt.rt_uses_gateway = rt->rt_uses_gateway; in xfrm4_fill_dst() 83 xdst->u.rt.rt_gw_family = rt->rt_gw_family; in xfrm4_fill_dst() [all …]
|
/openbmc/linux/net/xfrm/ |
H A D | xfrm_policy.c | 166 static int xfrm_bundle_ok(struct xfrm_dst *xdst); 2577 struct xfrm_dst *xdst; in xfrm_alloc_dst() local 2594 xdst = dst_alloc(dst_ops, NULL, 1, DST_OBSOLETE_NONE, 0); in xfrm_alloc_dst() 2596 if (likely(xdst)) { in xfrm_alloc_dst() 2597 memset_after(xdst, 0, u.dst); in xfrm_alloc_dst() 2599 xdst = ERR_PTR(-ENOBUFS); in xfrm_alloc_dst() 2603 return xdst; in xfrm_alloc_dst() 2615 static inline int xfrm_fill_dst(struct xfrm_dst *xdst, struct net_device *dev, in xfrm_fill_dst() argument 2619 xfrm_policy_get_afinfo(xdst->u.dst.ops->family); in xfrm_fill_dst() 2625 err = afinfo->fill_dst(xdst, dev, fl); in xfrm_fill_dst() [all …]
|
H A D | xfrm_device.c | 412 struct xfrm_dst *xdst = (struct xfrm_dst *)dst; in xfrm_dev_offload_ok() local 421 !xdst->child->xfrm)) { in xfrm_dev_offload_ok() 422 mtu = xfrm_state_mtu(x, xdst->child_mtu_cached); in xfrm_dev_offload_ok()
|
/openbmc/linux/include/net/ |
H A D | xfrm.h | 364 int (*fill_dst)(struct xfrm_dst *xdst, 979 const struct xfrm_dst *xdst = (const struct xfrm_dst *) dst; in xfrm_dst_path() local 981 return xdst->path; in xfrm_dst_path() 991 struct xfrm_dst *xdst = (struct xfrm_dst *) dst; in xfrm_dst_child() local 992 return xdst->child; in xfrm_dst_child() 999 static inline void xfrm_dst_set_child(struct xfrm_dst *xdst, struct dst_entry *child) in xfrm_dst_set_child() argument 1001 xdst->child = child; in xfrm_dst_set_child() 1004 static inline void xfrm_dst_destroy(struct xfrm_dst *xdst) in xfrm_dst_destroy() argument 1006 xfrm_pols_put(xdst->pols, xdst->num_pols); in xfrm_dst_destroy() 1007 dst_release(xdst->route); in xfrm_dst_destroy() [all …]
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/sec/fuc/ |
H A D | g98.fuc0s | 159 xdst $r0 $r2 334 xdst $r4 $r5 442 xdst $r0 $r4 445 xdst $r0 $r4 648 xdst $r0 $r9 667 xdst $r7 $r9 684 xdst $r0 $r9 689 xdst $r7 $r9
|
/openbmc/linux/net/core/ |
H A D | dst.c | 107 struct xfrm_dst *xdst = (struct xfrm_dst *) dst; in dst_destroy() local 109 child = xdst->child; in dst_destroy()
|
H A D | pktgen.c | 431 struct xfrm_dst xdst; member 2650 skb->_skb_refdst = (unsigned long)&pkt_dev->xdst.u.dst | SKB_DST_NOREF; in pktgen_output_ipsec() 3799 pkt_dev->xdst.u.dst.dev = pkt_dev->odev; in pktgen_add_device() 3800 dst_init_metrics(&pkt_dev->xdst.u.dst, pktgen_dst_metrics, false); in pktgen_add_device() 3801 pkt_dev->xdst.child = &pkt_dev->xdst.u.dst; in pktgen_add_device() 3802 pkt_dev->xdst.u.dst.ops = &pkt_dev->dstops; in pktgen_add_device()
|
/openbmc/linux/include/video/ |
H A D | mmp_disp.h | 72 u16 xdst; member
|
/openbmc/linux/drivers/video/fbdev/mmp/hw/ |
H A D | mmp_ctrl.c | 146 writel_relaxed((win->ydst << 16) | win->xdst, in overlay_set_win() 155 writel_relaxed((win->ydst << 16) | win->xdst, in overlay_set_win()
|
/openbmc/qemu/target/sh4/ |
H A D | translate.c | 965 int xdst = XHACK(B11_8); in _decode_opc() local 966 tcg_gen_mov_i32(FREG(xdst), FREG(xsrc)); in _decode_opc() 967 tcg_gen_mov_i32(FREG(xdst + 1), FREG(xsrc + 1)); in _decode_opc()
|
/openbmc/openbmc/poky/meta/recipes-devtools/syslinux/syslinux/ |
H A D | 0008-libinstaller-syslinuxext-implement-syslinux_patch_bo.patch | 201 struct stat dirst, xdst;
|
/openbmc/linux/drivers/video/fbdev/mmp/fb/ |
H A D | mmpfb.c | 388 win.xsrc = win.xdst = fbi->mode.xres; in mmpfb_set_win()
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/gr/fuc/ |
H A D | hub.fuc | 590 xdst $r0 $r1
|
/openbmc/linux/drivers/gpu/drm/nouveau/nvkm/engine/ce/fuc/ |
H A D | com.fuc | 234 xdst $r0 $r4
|