Home
last modified time | relevance | path

Searched refs:oif (Results 1 – 25 of 70) sorted by relevance

123

/openbmc/linux/net/netfilter/
H A Dxt_TEE.c24 int oif; member
40 int oif = info->priv ? info->priv->oif : 0; in tee_tg4() local
42 nf_dup_ipv4(xt_net(par), skb, xt_hooknum(par), &info->gw.in, oif); in tee_tg4()
52 int oif = info->priv ? info->priv->oif : 0; in tee_tg6() local
54 nf_dup_ipv6(xt_net(par), skb, xt_hooknum(par), &info->gw.in6, oif); in tee_tg6()
72 if (!strcmp(dev->name, priv->tginfo->oif)) in tee_netdev_event()
73 priv->oif = dev->ifindex; in tee_netdev_event()
76 if (dev->ifindex == priv->oif) in tee_netdev_event()
77 priv->oif = -1; in tee_netdev_event()
80 if (!strcmp(dev->name, priv->tginfo->oif)) in tee_netdev_event()
[all …]
H A Dnf_dup_netdev.c43 void nf_fwd_netdev_egress(const struct nft_pktinfo *pkt, int oif) in nf_fwd_netdev_egress() argument
47 dev = dev_get_by_index_rcu(nft_net(pkt), oif); in nf_fwd_netdev_egress()
57 void nf_dup_netdev_egress(const struct nft_pktinfo *pkt, int oif) in nf_dup_netdev_egress() argument
62 dev = dev_get_by_index_rcu(nft_net(pkt), oif); in nf_dup_netdev_egress()
74 enum flow_action_id id, int oif) in nft_fwd_dup_netdev_offload() argument
80 dev = dev_get_by_index(ctx->net, oif); in nft_fwd_dup_netdev_offload()
H A Dnft_dup_netdev.c25 int oif = regs->data[priv->sreg_dev]; in nft_dup_netdev_eval() local
27 nf_dup_netdev_egress(pkt, oif); in nft_dup_netdev_eval()
66 int oif = ctx->regs[priv->sreg_dev].data.data[0]; in nft_dup_netdev_offload() local
68 return nft_fwd_dup_netdev_offload(ctx, flow, FLOW_ACTION_MIRRED, oif); in nft_dup_netdev_offload()
H A Dnft_fwd_netdev.c29 int oif = regs->data[priv->sreg_dev]; in nft_fwd_netdev_eval() local
36 nf_fwd_netdev_egress(pkt, oif); in nft_fwd_netdev_eval()
78 int oif = ctx->regs[priv->sreg_dev].data.data[0]; in nft_fwd_netdev_offload() local
80 return nft_fwd_dup_netdev_offload(ctx, flow, FLOW_ACTION_REDIRECT, oif); in nft_fwd_netdev_offload()
100 int oif = regs->data[priv->sreg_dev]; in nft_fwd_neigh_eval() local
144 dev = dev_get_by_index_rcu(nft_net(pkt), oif); in nft_fwd_neigh_eval()
/openbmc/linux/net/ipv6/
H A Dping.c69 int oif = 0; in ping_v6_sendmsg() local
95 oif = u->sin6_scope_id; in ping_v6_sendmsg()
103 if (!oif) in ping_v6_sendmsg()
104 oif = sk->sk_bound_dev_if; in ping_v6_sendmsg()
106 if (!oif) in ping_v6_sendmsg()
107 oif = np->sticky_pktinfo.ipi6_ifindex; in ping_v6_sendmsg()
109 if (!oif && ipv6_addr_is_multicast(daddr)) in ping_v6_sendmsg()
110 oif = np->mcast_oif; in ping_v6_sendmsg()
111 else if (!oif) in ping_v6_sendmsg()
112 oif = np->ucast_oif; in ping_v6_sendmsg()
[all …]
H A Dfib6_rules.c64 int fib6_lookup(struct net *net, int oif, struct flowi6 *fl6, in fib6_lookup() argument
72 .lookup_data = &oif, in fib6_lookup()
82 err = fib6_table_lookup(net, net->ipv6.fib6_local_tbl, oif, in fib6_lookup()
86 oif, fl6, res, flags); in fib6_lookup()
165 int err, *oif; in fib6_rule_action_alt() local
185 oif = (int *)arg->lookup_data; in fib6_rule_action_alt()
186 err = fib6_table_lookup(net, table, *oif, flp6, res, flags); in fib6_rule_action_alt()
H A Daddrconf_core.c152 int oif, struct flowi6 *fl6, in eafnosupport_fib6_table_lookup() argument
159 eafnosupport_fib6_lookup(struct net *net, int oif, struct flowi6 *fl6, in eafnosupport_fib6_lookup() argument
167 struct flowi6 *fl6, int oif, bool have_oif_match, in eafnosupport_fib6_select_path() argument
/openbmc/linux/net/ipv4/
H A Ddatagram.c26 int oif; in __ip4_datagram_connect() local
38 oif = sk->sk_bound_dev_if; in __ip4_datagram_connect()
41 if (!oif || netif_index_is_l3_master(sock_net(sk), oif)) in __ip4_datagram_connect()
42 oif = inet->mc_index; in __ip4_datagram_connect()
45 } else if (!oif) { in __ip4_datagram_connect()
46 oif = inet->uc_index; in __ip4_datagram_connect()
49 rt = ip_route_connect(fl4, usin->sin_addr.s_addr, saddr, oif, in __ip4_datagram_connect()
/openbmc/linux/net/ipv6/netfilter/
H A Dnf_dup_ipv6.c20 const struct in6_addr *gw, int oif) in nf_dup_ipv6_route() argument
27 if (oif != -1) in nf_dup_ipv6_route()
28 fl6.flowi6_oif = oif; in nf_dup_ipv6_route()
48 const struct in6_addr *gw, int oif) in nf_dup_ipv6() argument
66 if (nf_dup_ipv6_route(net, skb, gw, oif)) { in nf_dup_ipv6()
H A Dnft_fib_ipv6.c161 const struct net_device *oif = NULL; in nft_fib6_eval() local
174 oif = nft_in(pkt); in nft_fib6_eval()
176 oif = nft_out(pkt); in nft_fib6_eval()
184 lookup_flags = nft_fib6_flowi_init(&fl6, priv, pkt, oif, iph); in nft_fib6_eval()
205 if (oif && oif != rt->rt6i_idev->dev && in nft_fib6_eval()
206 l3mdev_master_ifindex_rcu(rt->rt6i_idev->dev) != oif->ifindex) in nft_fib6_eval()
H A Dnft_dup_ipv6.c26 int oif = priv->sreg_dev ? regs->data[priv->sreg_dev] : -1; in nft_dup_ipv6_eval() local
28 nf_dup_ipv6(nft_net(pkt), pkt->skb, nft_hook(pkt), gw, oif); in nft_dup_ipv6_eval()
/openbmc/linux/net/ipv4/netfilter/
H A Dnf_dup_ipv4.c24 const struct in_addr *gw, int oif) in nf_dup_ipv4_route() argument
31 if (oif != -1) in nf_dup_ipv4_route()
32 fl4.flowi4_oif = oif; in nf_dup_ipv4_route()
51 const struct in_addr *gw, int oif) in nf_dup_ipv4() argument
87 if (nf_dup_ipv4_route(net, skb, gw, oif)) { in nf_dup_ipv4()
H A Dnft_fib_ipv4.c71 const struct net_device *oif; in nft_fib4_eval() local
82 oif = nft_out(pkt); in nft_fib4_eval()
84 oif = nft_in(pkt); in nft_fib4_eval()
86 oif = NULL; in nft_fib4_eval()
139 if (!oif) { in nft_fib4_eval()
142 if (!fib_info_nh_uses_dev(res.fi, oif)) in nft_fib4_eval()
144 found = oif; in nft_fib4_eval()
H A Dnft_dup_ipv4.c28 int oif = priv->sreg_dev ? regs->data[priv->sreg_dev] : -1; in nft_dup_ipv4_eval() local
30 nf_dup_ipv4(nft_net(pkt), pkt->skb, nft_hook(pkt), &gw, oif); in nft_dup_ipv4_eval()
/openbmc/linux/sound/soc/uniphier/
H A Daio-pxs2.c49 .oif = { 0, 0, },
63 .oif = { 1, 1, },
77 .oif = { 2, 2, },
90 .oif = { 6, 4, },
103 .oif = { 6, 4, },
116 .oif = { 7, 5, },
129 .oif = { 7, 5, },
H A Daio-ld11.c75 .oif = { 0, 0, },
89 .oif = { 0, 0, },
103 .oif = { 2, 2, },
116 .oif = { 3, 3, },
129 .oif = { 7, 5, },
144 .oif = { 8, 6, },
160 .oif = { 1, 1, },
174 .oif = { 1, 1, },
/openbmc/linux/include/net/
H A Droute.h154 __be32 saddr, u8 tos, int oif) in ip_route_output() argument
157 .flowi4_oif = oif, in ip_route_output()
169 __u8 proto, __u8 tos, int oif) in ip_route_output_ports() argument
171 flowi4_init_output(fl4, oif, sk ? READ_ONCE(sk->sk_mark) : 0, tos, in ip_route_output_ports()
182 __be32 gre_key, __u8 tos, int oif) in ip_route_output_gre() argument
185 fl4->flowi4_oif = oif; in ip_route_output_gre()
220 void ipv4_update_pmtu(struct sk_buff *skb, struct net *net, u32 mtu, int oif,
223 void ipv4_redirect(struct sk_buff *skb, struct net *net, int oif, u8 protocol);
296 __be32 src, int oif, u8 protocol, in ip_route_connect_init()
305 flowi4_init_output(fl4, oif, READ_ONC in ip_route_connect_init()
295 ip_route_connect_init(struct flowi4 * fl4,__be32 dst,__be32 src,int oif,u8 protocol,__be16 sport,__be16 dport,const struct sock * sk) ip_route_connect_init() argument
310 ip_route_connect(struct flowi4 * fl4,__be32 dst,__be32 src,int oif,u8 protocol,__be16 sport,__be16 dport,const struct sock * sk) ip_route_connect() argument
[all...]
H A Dflow.h93 static inline void flowi4_init_output(struct flowi4 *fl4, int oif, in flowi4_init_output() argument
100 fl4->flowi4_oif = oif; in flowi4_init_output()
119 static inline void flowi4_update_output(struct flowi4 *fl4, int oif, in flowi4_update_output() argument
122 fl4->flowi4_oif = oif; in flowi4_update_output()
H A Dipv6_stubs.h34 int (*fib6_lookup)(struct net *net, int oif, struct flowi6 *fl6,
37 int oif, struct flowi6 *fl6,
40 struct flowi6 *fl6, int oif, bool oif_match,
H A Dip6_route.h156 const struct in6_addr *saddr, int oif,
189 void ip6_update_pmtu(struct sk_buff *skb, struct net *net, __be32 mtu, int oif,
192 void ip6_redirect(struct sk_buff *skb, struct net *net, int oif, u32 mark,
194 void ip6_redirect_no_header(struct sk_buff *skb, struct net *net, int oif);
/openbmc/linux/include/net/netfilter/
H A Dnf_dup_netdev.h7 void nf_dup_netdev_egress(const struct nft_pktinfo *pkt, int oif);
8 void nf_fwd_netdev_egress(const struct nft_pktinfo *pkt, int oif);
15 enum flow_action_id id, int oif);
/openbmc/openbmc/meta-openembedded/meta-oe/recipes-support/canonical-multitouch/frame/
H A Dpessimizing-move.patch4 | std::move(UniqueUFAxis(static_cast<oif::frame::UFAxis*>(axis)));
7 | std::move(UniqueUFAxis(static_cast<oif::frame::UFAxis*>(axis)));
23 - std::move(UniqueUFAxis(static_cast<oif::frame::UFAxis*>(axis)));
24 + axes_[type] = UniqueUFAxis(static_cast<oif::frame::UFAxis*>(axis));
/openbmc/linux/tools/testing/selftests/netfilter/
H A Dconntrack_vrf.sh123 oif veth0 counter ct zone set 1 counter return
124 oif tvrf counter ct zone set 2 counter return
167 oif tvrf ct state untracked counter
172 oif tvrf ct state untracked counter
215 meta oif veth0 ip saddr 172.30.30.0/30 counter masquerade random
/openbmc/linux/include/trace/events/
H A Dfib6.h23 __field( int, oif )
43 __entry->oif = flp->flowi6_oif;
80 __entry->tb_id, __entry->oif, __entry->iif, __entry->proto,
H A Dfib.h23 __field( int, oif )
45 __entry->oif = flp->flowi4_oif;
94 __entry->tb_id, __entry->oif, __entry->iif, __entry->proto,

123