| /linux/tools/testing/selftests/bpf/progs/ |
| H A D | test_tc_neigh.c | 90 bool redirect = false; in tc_dst() local 94 redirect = is_remote_ep_v4(skb, __bpf_constant_htonl(ip4_src)); in tc_dst() 97 redirect = is_remote_ep_v6(skb, (struct in6_addr){{ip6_src}}); in tc_dst() 101 if (!redirect) in tc_dst() 115 bool redirect = false; in tc_src() local 119 redirect = is_remote_ep_v4(skb, __bpf_constant_htonl(ip4_dst)); in tc_src() 122 redirect = is_remote_ep_v6(skb, (struct in6_addr){{ip6_dst}}); in tc_src() 126 if (!redirect) in tc_src()
|
| /linux/tools/testing/ktest/ |
| H A D | config-bisect.pl | 160 my ($command, $redirect) = @_; 173 if (defined($redirect)) { 174 open (RD, ">$redirect") or 175 dodie "failed to write to redirect $redirect";
|
| /linux/Documentation/networking/device_drivers/ethernet/freescale/dpaa2/ |
| H A D | switch-driver.rst | 127 Routing actions (redirect, trap, drop) 141 Also, the matchall filter can be used to redirect the entire traffic received 147 * mirred egress redirect 163 Example 3: redirect all frames received on eth4 to eth1:: 165 $ tc filter add dev eth4 ingress matchall action mirred egress redirect dev eth1 174 action mirred egress redirect dev eth3
|
| /linux/Documentation/bpf/ |
| H A D | redirect.rst | 25 :doc: xdp redirect 28 Not all drivers support transmitting frames after a redirect, and for
|
| H A D | map_xskmap.rst | 33 | | BPF |-- redirect -->+-------------+-------------+ 44 accept XDP frames from that <netdev/queue_id>. If an XDP program tries to redirect 139 ``xsks_map`` and how to redirect packets to an XSK.
|
| H A D | map_sockmap.rst | 13 redirect skbs between sockets or to apply policy at the socket level based on 31 verdict program is essentially the redirect program and can return a verdict 91 returns ``SK_PASS``), redirect it to the socket referenced by ``map`` (of type 171 ``SK_PASS``), redirect it to the socket referenced by ``map`` (of type 187 returns ``SK_PASS``), redirect it to the socket referenced by ``map`` (of type 376 sockmap to redirect traffic to another socket based on the local port. 411 sockhash to redirect traffic to another socket based on a hash of some of the
|
| H A D | map_cpumap.rst | 25 initial CPU is where the XDP redirect program is executed. The remote CPU 103 ``cpu_map`` and how to redirect packets to a remote CPU using a round robin scheme.
|
| /linux/fs/overlayfs/ |
| H A D | params.h | 15 bool redirect; member
|
| H A D | params.c | 664 ctx->set.redirect = true; in ovl_parse_param() 915 if (set.metacopy && set.redirect) { in ovl_fs_params_verify() 920 if (set.redirect) { in ovl_fs_params_verify() 990 if (set.redirect && in ovl_fs_params_verify() 1015 if (set.redirect && in ovl_fs_params_verify()
|
| H A D | ovl_entry.h | 164 const char *redirect; member
|
| H A D | util.c | 581 return OVL_I(d_inode(dentry))->redirect; in ovl_dentry_get_redirect() 584 void ovl_dentry_set_redirect(struct dentry *dentry, const char *redirect) in ovl_dentry_set_redirect() argument 588 kfree(oi->redirect); in ovl_dentry_set_redirect() 589 oi->redirect = redirect; in ovl_dentry_set_redirect()
|
| H A D | Kconfig | 16 bool "Overlayfs: turn on redirect directory feature by default" 79 inconsistencies on lookup, like redirect from multiple upper dirs to
|
| /linux/net/bridge/ |
| H A D | br_nf_core.c | 55 .redirect = fake_redirect,
|
| /linux/Documentation/networking/ |
| H A D | xdp-rx-metadata.rst | 96 ``bpf_redirect_map`` can redirect the frame to a different device. 98 program after the redirect. However, the final consumer doesn't have 105 before redirect. If the frame is eventually passed to the kernel, the
|
| H A D | representors.rst | 84 the representee VF. Conversely, a mirred egress redirect to a VF representor 200 action mirred egress redirect dev $PORT_DEV 225 action mirred egress redirect dev vxlan0 228 action tunnel_key unset action mirred egress redirect dev $REP_DEV
|
| /linux/include/net/ |
| H A D | dst_ops.h | 32 void (*redirect)(struct dst_entry *dst, struct sock *sk, member
|
| /linux/net/ipv6/ |
| H A D | xfrm6_policy.c | 123 path->ops->redirect(path, sk, skb); in xfrm6_redirect() 162 .redirect = xfrm6_redirect,
|
| /linux/kernel/irq/ |
| H A D | irqdesc.c | 83 handle_irq_desc(container_of(work, struct irq_desc, redirect.work)); in irq_redirect_work() 98 desc->redirect.work = IRQ_WORK_INIT_HARD(irq_redirect_work); in desc_smp_init() 781 unsigned int target_cpu = READ_ONCE(desc->redirect.target_cpu); in demux_redirect_remote() 819 irq_work_queue_on(&desc->redirect.work, target_cpu); in demux_redirect_remote()
|
| /linux/drivers/accel/qaic/ |
| H A D | qaic_ras.c | 150 u16 redirect; member 262 le16_to_cpus(&sysbus2_syndrome->redirect); in ras_msg_to_cpu() 440 sysbus2_syndrome->redirect, in decode_ras_msg()
|
| /linux/arch/x86/kernel/apic/ |
| H A D | x2apic_uv_x.c | 792 union uvh_rh_gam_alias_2_redirect_config_u redirect; in get_lowmem_redirect() local 815 redirect.v = uv_read_local_mmr(m_redirect); in get_lowmem_redirect() 816 *base = (unsigned long)redirect.s.dest_base << DEST_SHIFT; in get_lowmem_redirect() 977 unsigned long redirect = uv_read_local_mmr(m_redirect); in calc_mmioh_map() local 979 nasid = redirect & nasid_mask; in calc_mmioh_map() 982 id, redirect, m_redirect, nasid); in calc_mmioh_map()
|
| /linux/kernel/bpf/ |
| H A D | cpumap.c | 162 stats->redirect++; in cpu_map_bpf_prog_run_skb() 222 stats->redirect++; in cpu_map_bpf_prog_run_xdp() 268 if (stats->redirect) in cpu_map_bpf_prog_run()
|
| /linux/drivers/net/dsa/sja1105/ |
| H A D | Kconfig | 50 - redirect, trap, drop
|
| /linux/arch/arm/ |
| H A D | Kconfig-nommu | 53 external support to redirect the hardware exception vectors to
|
| /linux/drivers/media/radio/si470x/ |
| H A D | Kconfig | 32 to redirect the audio stream from the radio to your sound device:
|
| /linux/Documentation/filesystems/ |
| H A D | overlayfs.rst | 211 copied up (but not the contents). Then the "trusted.overlay.redirect" 235 The maximum number of bytes in an absolute redirect (default is 256). 260 turning off redirect follow (e.g. "redirect_dir=nofollow"). 443 when a "metacopy" file in one of the lower layers above it, has a "redirect" 450 must be given to privileges needed to change the "user.overlay.redirect" xattr 676 to by the "trusted.overlay.redirect" extended attribute, will verify 732 directory may have a "redirect" to lower directory. Because middle layer 734 "redirect" origin directory, cannot be used to find the middle or upper 736 descendant of the "redirect" origin directory, cannot be used to 741 used NFS export in this setup requires turning off redirect follow (e.g.
|