Searched +full:foo +full:- +full:over +full:- +full:udp (Results 1 – 15 of 15) sorted by relevance
/openbmc/linux/net/ipv4/ |
H A D | Kconfig | 1 # SPDX-License-Identifier: GPL-2.0-only 40 so-called IP spoofing, however it can pose problems if you use 42 than packets from that host to you) or if you operate a non-routing 52 <file:Documentation/networking/ip-sysctl.rst>. 71 address into account. Furthermore, the TOS (Type-Of-Service) field 89 equal "cost" and chooses one of them in a non-deterministic fashion 122 one containing the directory /) from some other computer over the 132 <file:Documentation/admin-guide/nfs/nfsroot.rst> for details. 139 one containing the directory /) from some other computer over the 147 Read <file:Documentation/admin-guide/nfs/nfsroot.rst> for details. [all …]
|
H A D | fou_core.c | 1 // SPDX-License-Identifier: GPL-2.0-only 8 #include <linux/udp.h> 17 #include <net/udp.h> 58 /* Remove 'len' bytes from the packet (UDP header and in fou_recv_pull() 61 if (fou->family == AF_INET) in fou_recv_pull() 62 ip_hdr(skb)->tot_len = htons(ntohs(ip_hdr(skb)->tot_len) - len); in fou_recv_pull() 64 ipv6_hdr(skb)->payload_len = in fou_recv_pull() 65 htons(ntohs(ipv6_hdr(skb)->payload_len) - len); in fou_recv_pull() 83 return -fou->protocol; in fou_udp_recv() 100 if (skb->remcsum_offload) in gue_remcsum() [all …]
|
H A D | ip_output.c | 1 // SPDX-License-Identifier: GPL-2.0-only 39 * silently drop skb instead of failing with -EPERM. 41 * Hirokazu Takahashi: HW checksumming for outgoing UDP 43 * Hirokazu Takahashi: sendfile() on UDP works now. 80 #include <linux/bpf-cgroup.h> 95 iph->check = 0; in ip_send_check() 96 iph->check = ip_fast_csum((unsigned char *)iph, iph->ihl); in ip_send_check() 106 iph_set_totlen(iph, skb->len); in __ip_local_out() 116 skb->protocol = htons(ETH_P_IP); in __ip_local_out() 119 net, sk, skb, NULL, skb_dst(skb)->dev, in __ip_local_out() [all …]
|
/openbmc/linux/Documentation/netlink/specs/ |
H A D | fou.yaml | 1 # SPDX-License-Identifier: ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause) 5 protocol: genetlink-legacy 8 Foo-over-UDP. 10 c-family-name: fou-genl-name 11 c-version-name: fou-genl-version 12 max-by-define: true 13 kernel-policy: global 16 - 19 name-prefix: fou-encap- 20 enum-name: [all …]
|
/openbmc/linux/net/ipv6/ |
H A D | fou6.c | 1 // SPDX-License-Identifier: GPL-2.0-only 7 #include <linux/udp.h> 16 #include <net/udp.h> 31 uh->dest = e->dport; in fou6_build_udp() 32 uh->source = sport; in fou6_build_udp() 33 uh->len = htons(skb->len); in fou6_build_udp() 34 udp6_set_csum(!(e->flags & TUNNEL_ENCAP_FLAG_CSUM6), skb, in fou6_build_udp() 35 &fl6->saddr, &fl6->daddr, skb->len); in fou6_build_udp() 45 int type = e->flags & TUNNEL_ENCAP_FLAG_CSUM6 ? in fou6_build_header() 62 int type = e->flags & TUNNEL_ENCAP_FLAG_CSUM6 ? in gue6_build_header() [all …]
|
/openbmc/linux/include/net/ |
H A D | gro.h | 1 /* SPDX-License-Identifier: GPL-2.0-or-later */ 11 #include <net/udp.h> 16 /* Virtual address of skb_shinfo(skb)->frags[0].page + offset. */ 32 /* This indicates where we are processing relative to skb->data. */ 35 /* This is non-zero if the packet cannot be merged with the new skb. */ 44 /* Used in ipv6_gro_receive() and foo-over-udp */ 56 /* This is non-zero if the packet may be of the same flow. */ 71 /* Used in foo-over-udp, set in udp[46]_gro_receive */ 100 #define NAPI_GRO_CB(skb) ((struct napi_gro_cb *)(skb)->cb) 105 return ++NAPI_GRO_CB(skb)->recursion_counter == GRO_RECURSION_LIMIT; in gro_recursion_inc_test() [all …]
|
/openbmc/qemu/docs/ |
H A D | qdev-device-use.txt | 1 = How to convert to -device & friends = 7 -device parameter bus. 10 where this address can be configured, devices provide a bus-specific 16 SCSI scsi-id %u 19 virtio-serial-bus nr %u 20 ccid-bus slot %u 23 Example: device i440FX-pcihost is on the root bus, and provides a PCI 24 bus named pci.0. To put a FOO device into its slot 4, use -device 25 FOO,bus=/i440FX-pcihost/pci.0,addr=4. The abbreviated form bus=pci.0 46 -drive, and guest device(s) with -device. [all …]
|
/openbmc/linux/Documentation/bpf/ |
H A D | verifier.rst | 32 After kernel function call, R1-R5 are reset to unreadable and 35 Since R6-R9 are callee saved, their state is preserved across the call. 40 bpf_call foo 72 stack bounds, which are [-MAX_BPF_STACK, 0). In this example offset is 8, 78 Classic BPF verifier does similar check with M[0-15] memory slots. 81 bpf_ld R0 = *(u32 *)(R10 - 4) 85 Though R10 is correct read-only register and has type PTR_TO_STACK 86 and R10 - 4 is within stack bounds, there were no stores into that location. 88 Pointer register spill/fill is tracked as well, since four (R6-R9) 91 Allowed function calls are customized with bpf_verifier_ops->get_func_proto() [all …]
|
/openbmc/qemu/docs/devel/testing/ |
H A D | fuzzing.rst | 5 This document describes the virtual-device fuzzing infrastructure in QEMU and 9 ------ 16 is an *in-process* fuzzer. For the developer, this means that it is their 17 responsibility to ensure that state is reset between fuzzing-runs. 20 -------------------- 24 Here, enable-asan and enable-ubsan are optional but they allow us to reliably 25 detect bugs such as out-of-bounds accesses, uses-after-free, double-frees 28 CC=clang-8 CXX=clang++-8 /path/to/configure \ 29 --enable-fuzzing --enable-asan --enable-ubsan 33 make qemu-fuzz-i386 [all …]
|
/openbmc/qemu/ |
H A D | qemu-options.hx | 14 "-h or -help display this help and exit\n", QEMU_ARCH_ALL) 16 ``-h`` 21 "-version display version information and exit\n", QEMU_ARCH_ALL) 23 ``-version`` 28 "-machine [type=]name[,prop[=value][,...]]\n" 29 " selects emulated machine ('-machine help' for list)\n" 33 " dump-guest-core=on|off include guest memory in a core dump (default=on)\n" 34 " mem-merge=on|off controls memory merge support (default: on)\n" 35 " aes-key-wrap=on|off controls support for AES key wrapping (default=on)\n" 36 " dea-key-wrap=on|off controls support for DEA key wrapping (default=on)\n" [all …]
|
/openbmc/linux/Documentation/networking/ |
H A D | bonding.rst | 1 .. SPDX-License-Identifier: GPL-2.0 11 Corrections, HA extensions: 2000/10/03-15: 13 - Willy Tarreau <willy at meta-x.org> 14 - Constantine Gavrilov <const-g at xpert.com> 15 - Chad N. Tindel <ctindel at ieee dot org> 16 - Janice Girouard <girouard at us dot ibm dot com> 17 - Jay Vosburgh <fubar at us dot ibm dot com> 22 - Mitch Williams <mitch.a.williams at intel.com> 35 the original tools from extreme-linux and beowulf sites will not work 119 ----------------------------------------------- [all …]
|
/openbmc/linux/net/netfilter/ |
H A D | nf_conntrack_proto_tcp.c | 1 // SPDX-License-Identifier: GPL-2.0-only 2 /* (C) 1999-2001 Paul `Rusty' Russell 3 * (C) 2002-2004 Netfilter Core Team <coreteam@netfilter.org> 4 * (C) 2002-2013 Jozsef Kadlecsik <kadlec@netfilter.org> 5 * (C) 2006-2012 Patrick McHardy <kaber@trash.net> 35 closely. They're more complex. --RR */ 73 to ~13-30min depending on RTO. */ 116 * SYN_SENT: SYN-only packet seen 117 * SYN_SENT2: SYN-only packet seen from reply dir, simultaneous open 118 * SYN_RECV: SYN-ACK packet seen [all …]
|
/openbmc/linux/Documentation/admin-guide/ |
H A D | kernel-parameters.txt | 5 force -- enable ACPI if default was off 6 on -- enable ACPI but allow fallback to DT [arm64,riscv64] 7 off -- disable ACPI if default was on 8 noirq -- do not use ACPI for IRQ routing 9 strict -- B [all...] |
/openbmc/linux/drivers/net/ethernet/natsemi/ |
H A D | ns83820.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 5 * Questions/comments/discussion to linux-ns83820@kvack.org. 16 * 20010414 0.1 - created 17 * 20010622 0.2 - basic rx and tx. 18 * 20010711 0.3 - added duplex and link state detection support. 19 * 20010713 0.4 - zero copy, no hangs. 20 * 0.5 - 64 bit dma support (davem will hate me for this) 21 * - disable jumbo frames to avoid tx hangs 22 * - work around tx deadlocks on my 1.02 card via 24 * 20010810 0.6 - use pci dma api for ringbuffers, work on ia64 [all …]
|
/openbmc/linux/drivers/net/ethernet/sun/ |
H A D | sunhme.c | 1 // SPDX-License-Identifier: GPL-2.0 10 * 2000/11/11 Willy Tarreau <willy AT meta-x.org> 11 * - port to non-sparc architectures. Tested only on x86 and 13 * - ability to specify the MAC address at module load time by passing this 20 #include <linux/dma-mapping.h> 111 tlp->tstamp = (unsigned int)jiffies; 112 tlp->tx_new = hp->tx_new; 113 tlp->tx_old = hp->tx_old; 114 tlp->action = a; 115 tlp->status = s; [all …]
|