instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/include/libvfio/iova_allocator' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_IOVA_ALLOCATOR_H #define SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_IOVA_ALLOCATOR_H #include <linux/list.h> #include <linux/types.h> #include <linux/iommufd.h> #include <libvfio/iommu.h> struct iova_allocator { struct iommu_iova_ra...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/include/libvfio/vfio_pci_driver' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_VFIO_PCI_DRIVER_H #define SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_VFIO_PCI_DRIVER_H #include <libvfio/iommu.h> struct vfio_pci_device; struct vfio_pci_driver_ops { const char *name; /** * @probe() - Check if the driver suppor...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/include/libvfio/assert' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_ASSERT_H #define SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_ASSERT_H #include <stdio.h> #include <string.h> #include <sys/ioctl.h> #include "../../../../kselftest.h" #define VFIO_LOG_AND_EXIT(...) do { \ fprintf(stderr, " " __VA_A...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/include/libvfio/vfio_pci_device' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_VFIO_PCI_DEVICE_H #define SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_VFIO_PCI_DEVICE_H #include <fcntl.h> #include <linux/vfio.h> #include <linux/pci_regs.h> #include <libvfio/assert.h> #include <libvfio/iommu.h> #include <libvfio/vfi...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/include/libvfio/iommu' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ #ifndef SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_IOMMU_H #define SELFTESTS_VFIO_LIB_INCLUDE_LIBVFIO_IOMMU_H #include <linux/list.h> #include <linux/types.h> #include <libvfio/assert.h> typedef u64 iova_t; struct iommu_mode { const char *name; const char *container_path; ...
Linux kernel'inin 'tools/testing/selftests/vfio/lib/drivers/ioat/ioat' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only #include <stdint.h> #include <unistd.h> #include <linux/errno.h> #include <linux/io.h> #include <linux/pci_ids.h> #include <linux/sizes.h> #include <libvfio.h> #include "hw.h" #include "registers.h" #define IOAT_DMACOUNT_MAX UINT16_MAX struct ioat_state { /* Single de...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/drivers/ioat/registers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved. */ #ifndef _IOAT_REGISTERS_H_ #define _IOAT_REGISTERS_H_ #define IOAT_PCI_DMACTRL_OFFSET 0x48 #define IOAT_PCI_DMACTRL_DMA_EN 0x00000001 #define IOAT_PCI_DMACTRL_MSI_EN 0x00000002 #define...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/drivers/ioat/hw' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ /* * Copyright(c) 2004 - 2009 Intel Corporation. All rights reserved. */ #ifndef _IOAT_HW_H_ #define _IOAT_HW_H_ /* PCI Configuration Space Values */ #define IOAT_MMIO_BAR 0 /* CB device ID's */ #define PCI_DEVICE_ID_INTEL_IOAT_IVB0 0x0e20 #define PCI_DEVICE_ID_...
Linux kernel'inin 'tools/testing/selftests/vfio/lib/drivers/dsa/dsa' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only #include <stdint.h> #include <unistd.h> #include <linux/bits.h> #include <linux/errno.h> #include <linux/idxd.h> #include <linux/io.h> #include <linux/pci_ids.h> #include <linux/sizes.h> #include <libvfio.h> #include "registers.h" /* Vectors 1+ are available for work qu...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/vfio/lib/drivers/dsa/registers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright(c) 2019 Intel Corporation. All rights rsvd. */ #ifndef _IDXD_REGISTERS_H_ #define _IDXD_REGISTERS_H_ #ifdef __KERNEL__ #include <uapi/linux/idxd.h> #else #include <linux/idxd.h> #endif /* PCI Config */ #define PCI_DEVICE_ID_INTEL_DSA_GNRD 0x11fb #define PCI_DEV...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_kfuncs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef __BPF_KFUNCS__ #define __BPF_KFUNCS__ struct bpf_sock_addr_kern; /* Description * Initializes an skb-type dynptr * Returns * Error code */ extern int bpf_dynptr_from_skb(struct __sk_buff *skb, __u64 flags, struct bpf_dynptr *ptr__uninit) __ksym __weak; /* Description * Initializes an xdp-typ...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/cgroup_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CGROUP_HELPERS_H #define __CGROUP_HELPERS_H #include <errno.h> #include <string.h> #define clean_errno() (errno == 0 ? "None" : strerror(errno)) #define log_err(MSG, ...) fprintf(stderr, "(%s:%d: errno: %s) " MSG "\n", \ __FILE__, __LINE__, clean_errno(), ##__VA_...
Linux kernel'inin 'tools/testing/selftests/bpf/cgroup_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #define _GNU_SOURCE #include <sched.h> #include <sys/mount.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/xattr.h> #include <linux/limits.h> #include <stdio.h> #include <stdlib.h> #include <linux/sched.h> #include <fcntl.h> #include <unistd.h> #include <ftw.h> #i...
Linux kernel'inin 'tools/testing/selftests/bpf/urandom_read_lib2' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2022 Meta Platforms, Inc. and affiliates. */ #include "sdt.h" void urandlib_read_without_sema(int iter_num, int iter_cnt, int read_sz) { STAP_PROBE3(urandlib, read_without_sema, iter_num, iter_cnt, read_sz); } ```
Linux kernel'inin 'tools/testing/selftests/bpf/bench' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2020 Facebook */ #define _GNU_SOURCE #include <argp.h> #include <linux/compiler.h> #include <sys/time.h> #include <sched.h> #include <fcntl.h> #include <pthread.h> #include <sys/sysinfo.h> #include <signal.h> #include "bench.h" #include "bpf_util.h" #include "te...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/trace_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __TRACE_HELPER_H #define __TRACE_HELPER_H #include <bpf/libbpf.h> #ifdef __x86_64__ #define SYS_PREFIX "__x64_" #elif defined(__s390x__) #define SYS_PREFIX "__s390x_" #elif defined(__aarch64__) #define SYS_PREFIX "__arm64_" #elif defined(__riscv) #define SYS_PREFIX ...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/uptr_test_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */ #ifndef _UPTR_TEST_COMMON_H #define _UPTR_TEST_COMMON_H #define MAGIC_VALUE 0xabcd1234 #define PAGE_SIZE 4096 #ifdef __BPF__ /* Avoid fwd btf type being generated for the following struct */ struct large_data *d...
Linux kernel'inin 'tools/testing/selftests/bpf/xsk' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) /* * AF_XDP user-space access library. * * Copyright(c) 2018 - 2019 Intel Corporation. * * Author(s): Magnus Karlsson <magnus.karlsson@intel.com> */ #include <errno.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <arpa/inet.h> #...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/network_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __NETWORK_HELPERS_H #define __NETWORK_HELPERS_H #include <arpa/inet.h> #include <sys/socket.h> #include <sys/types.h> #include <linux/types.h> typedef __u16 __sum16; #include <linux/if_ether.h> #include <linux/if_packet.h> #include <linux/if_tun.h> #include <linux/ip....
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_arena_strsearch' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ /* Copyright (c) 2025 Meta Platforms, Inc. and affiliates. */ #pragma once #include "bpf_arena_common.h" __noinline int bpf_arena_strlen(const char __arena *s __arg_arena) { const char __arena *sc; for (sc = s; *sc != '\0'; ++sc) cond_break; retu...
Linux kernel'inin 'tools/testing/selftests/bpf/test_progs' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright (c) 2017 Facebook */ #define _GNU_SOURCE #include "test_progs.h" #include "testing_helpers.h" #include "cgroup_helpers.h" #include <argp.h> #include <pthread.h> #include <sched.h> #include <signal.h> #include <string.h> #include <sys/sysinfo.h> /* get_nprocs *...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/unpriv_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0-only #include <stdbool.h> #define UNPRIV_SYSCTL "kernel/unprivileged_bpf_disabled" bool get_unpriv_disabled(void); ```
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_tcp_hdr_options' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2020 Facebook */ #ifndef _TEST_TCP_HDR_OPTIONS_H #define _TEST_TCP_HDR_OPTIONS_H struct bpf_test_option { __u8 flags; __u8 max_delack_ms; __u8 rand; } __attribute__((packed)); enum { OPTION_RESEND, OPTION_MAX_DELACK_MS, OPTION_RAND, __NR_OPTION_FLAG...
Linux kernel'inin 'tools/testing/selftests/bpf/xdp_synproxy' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 OR BSD-2-Clause /* Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved. */ #include <stdnoreturn.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <errno.h> #include <unistd.h> #include <getopt.h> #include <signal.h> #include <sys/type...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/disasm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com * Copyright (c) 2016 Facebook */ #ifndef __BPF_DISASM_H__ #define __BPF_DISASM_H__ #include <linux/bpf.h> #include <linux/kernel.h> #include <linux/stringify.h> #ifndef __KERNEL__ #include <st...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_maps' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _TEST_MAPS_H #define _TEST_MAPS_H #include <stdio.h> #include <stdlib.h> #include <stdbool.h> #define CHECK(condition, tag, format...) ({ \ int __ret = !!(condition); \ if (__ret) { \ printf("%s(%d):FAIL:%s ", __func__, __LINE__, tag); \ printf(fo...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/json_writer' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ /* * Simple streaming JSON writer * * This takes care of the annoying bits of JSON syntax like the commas * after elements * * Authors: Stephen Hemminger <stephen@networkplumber.org> */ #ifndef _JSON_WRITER_H_ #define _JSON_WRITER_H_ #include <...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/xdp_metadata' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #pragma once #ifndef ETH_P_IP #define ETH_P_IP 0x0800 #endif #ifndef ETH_P_IPV6 #define ETH_P_IPV6 0x86DD #endif #ifndef ETH_P_8021Q #define ETH_P_8021Q 0x8100 #endif #ifndef ETH_P_8021AD #define ETH_P_8021AD 0x88A8 #endif #ifndef BIT #define BIT(nr) (1 << (nr)) #endif...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/ip_check_defrag_frags' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* DO NOT EDIT -- this file is generated */ #ifndef _IP_CHECK_DEFRAG_FRAGS_H #define _IP_CHECK_DEFRAG_FRAGS_H #include <stdint.h> static uint8_t frag_0[] = { 0x45, 0x0, 0x0, 0x2c, 0x0, 0x1, 0x20, 0x0, 0x40, 0x11, 0xac, 0xe8, 0x0, 0x0, 0x0, 0x0, 0xac, 0x10, 0x1, 0xc8, 0xbe,...
Linux kernel'inin 'tools/testing/selftests/bpf/bpftool_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only #include <unistd.h> #include <string.h> #include <stdbool.h> #include <limits.h> #include "bpf_util.h" #include "bpftool_helpers.h" #define BPFTOOL_FULL_CMD_MAX_LEN (PATH_MAX * 2) #define BPFTOOL_DEFAULT_PATH "tools/sbin/bpftool" static int detect_bpftool_path(char *bu...
Linux kernel'inin 'tools/testing/selftests/bpf/sysctl_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <stdio.h> #include <errno.h> #include <string.h> #include "sysctl_helpers.h" #include "test_progs.h" int sysctl_set(const char *sysctl_path, char *old_val, const char *new_val) { int ret = 0; FILE *fp; fp = fopen(sysctl_path, "r+"); if (!fp) return -errno; if ...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_experimental' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef __BPF_EXPERIMENTAL__ #define __BPF_EXPERIMENTAL__ #include <vmlinux.h> #include <bpf/bpf_tracing.h> #include <bpf/bpf_helpers.h> #include <bpf/bpf_core_read.h> #define __contains(name, node) __attribute__((btf_decl_tag("contains:" #name ":" #node))) /* Convenience macro to wrap over bpf_obj_new */ #defi...
Linux kernel'inin 'tools/testing/selftests/bpf/cap_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "cap_helpers.h" /* Avoid including <sys/capability.h> from the libcap-devel package, * so directly declare them here and use them from glibc. */ int capget(cap_user_header_t header, cap_user_data_t data); int capset(cap_user_header_t header, const cap_user_data_t dat...
Linux kernel'inin 'tools/testing/selftests/bpf/veristat' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) /* Copyright (c) 2022 Meta Platforms, Inc. and affiliates. */ #define _GNU_SOURCE #include <argp.h> #include <libgen.h> #include <ctype.h> #include <string.h> #include <stdlib.h> #include <sched.h> #include <pthread.h> #include <dirent.h> #include <signal....
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/xdping' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. */ #define XDPING_MAX_COUNT 10 #define XDPING_DEFAULT_COUNT 4 struct pinginfo { __u64 start; __be16 seq; __u16 count; __u32 pad; __u64 times[XDPING_MAX_COUNT]; }; ```
Linux kernel'inin 'tools/testing/selftests/bpf/xskxceiver' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright(c) 2020 Intel Corporation. */ /* * Some functions in this program are taken from * Linux kernel samples/bpf/xdpsock* and modified * for use. * * See test_xsk.sh for detailed information on test topology * and prerequisite network setup. * * This test progra...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_select_reuseport_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2018 Facebook */ #ifndef __TEST_SELECT_REUSEPORT_COMMON_H #define __TEST_SELECT_REUSEPORT_COMMON_H #include <linux/types.h> enum result { DROP_ERR_INNER_MAP, DROP_ERR_SKB_DATA, DROP_ERR_SK_SELECT_REUSEPORT, DROP_MISC, PASS, PASS_ERR_SK_SELECT_REUSEPO...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/disasm_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ #ifndef __DISASM_HELPERS_H #define __DISASM_HELPERS_H #include <stdlib.h> struct bpf_insn; struct bpf_insn *disasm_insn(struct bpf_insn *insn, char *buf, size_t buf_sz); #endif /* __DISASM_HELPERS_H */ ```
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_tcpnotify' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #ifndef _TEST_TCPBPF_H #define _TEST_TCPBPF_H struct tcpnotify_globals { __u32 total_retrans; __u32 ncalls; }; struct tcp_notifier { __u8 type; __u8 subtype; __u8 source; __u8 hash; }; #define TESTPORT 12877 #endif ```
Linux kernel'inin 'tools/testing/selftests/bpf/uprobe_multi' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <stdio.h> #include <string.h> #include <stdbool.h> #include <stdint.h> #include <sys/mman.h> #include <unistd.h> #include <sdt.h> #ifndef MADV_POPULATE_READ #define MADV_POPULATE_READ 22 #endif #ifndef MADV_PAGEOUT #define MADV_PAGEOUT 21 #endif int __attribute__((w...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/autoconf_helper' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0-only #ifdef HAVE_GENHDR # include "autoconf.h" #else # if defined(__i386) || defined(__x86_64) || defined(__s390x__) || defined(__aarch64__) # define CONFIG_HAVE_EFFICIENT_UNALIGNED_ACCESS 1 # endif #endif ```
Linux kernel'inin 'tools/testing/selftests/bpf/urandom_read' alt sistemi için gerekli C kaynak kodunu implemente et.
```c #include <stdbool.h> #include <stdio.h> #include <unistd.h> #include <errno.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <stdlib.h> #include <signal.h> #define _SDT_HAS_SEMAPHORES 1 #include "sdt.h" #define SHARED 1 #include "bpf/libbpf_internal.h" #define SEC(name) __attribute__(...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/cgroup_tcp_skb' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2023 Meta Platforms, Inc. and affiliates. */ /* Define states of a socket to tracking messages sending to and from the * socket. * * These states are based on rfc9293 with some modifications to support * tracking of messages sent out from a socket. For e...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_arena_list' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ /* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */ #pragma once #include "bpf_arena_common.h" struct arena_list_node; typedef struct arena_list_node __arena arena_list_node_t; struct arena_list_node { arena_list_node_t *next; arena_list_...
Linux kernel'inin 'tools/testing/selftests/bpf/test_loader' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Copyright (c) 2022 Meta Platforms, Inc. and affiliates. */ #include <linux/capability.h> #include <linux/err.h> #include <stdlib.h> #include <test_progs.h> #include <bpf/btf.h> #include "autoconf_helper.h" #include "disasm_helpers.h" #include "unpriv_helpers.h" #include...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/xsk_xdp_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef XSK_XDP_COMMON_H_ #define XSK_XDP_COMMON_H_ #define MAX_SOCKETS 2 #define PKT_HDR_ALIGN (sizeof(struct ethhdr) + 2) /* Just to align the data in the packet */ struct xdp_info { __u64 count; } __attribute__((aligned(32))); #endif /* XSK_XDP_COMMON_H_ */ ```
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_rand' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __BPF_RAND__ #define __BPF_RAND__ #include <stdint.h> #include <stdlib.h> #include <time.h> static inline uint64_t bpf_rand_mask(uint64_t mask) { return (((uint64_t)(uint32_t)rand()) | ((uint64_t)(uint32_t)rand() << 32)) & mask; } #define bpf_rand_ux(x, m...
Linux kernel'inin 'tools/testing/selftests/bpf/netlink_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* Taken & modified from iproute2's libnetlink.c * Authors: Alexey Kuznetsov, <kuznet@ms2.inr.ac.ru> */ #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <errno.h> #include <time.h> #include <sys/socket.h> #include "netlink_helpers.h" static int rc...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_util' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __BPF_UTIL__ #define __BPF_UTIL__ #include <stdio.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <syscall.h> #include <bpf/libbpf.h> /* libbpf_num_possible_cpus */ #include <linux/args.h> static inline unsigned int bpf_num_possible_cpus(void)...
Linux kernel'inin 'tools/testing/selftests/bpf/xdp_features' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <uapi/linux/bpf.h> #include <uapi/linux/netdev.h> #include <linux/if_link.h> #include <signal.h> #include <argp.h> #include <net/if.h> #include <sys/socket.h> #include <netinet/in.h> #include <netinet/tcp.h> #include <unistd.h> #include <arpa/inet.h> #include <bpf/bpf.h...
Linux kernel'inin 'tools/testing/selftests/bpf/disasm_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) #include <bpf/bpf.h> #include "disasm.h" struct print_insn_context { char scratch[16]; char *buf; size_t sz; }; static void print_insn_cb(void *private_data, const char *fmt, ...) { struct print_insn_context *ctx = private_data; va_list args; va_star...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_legacy' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ #ifndef __BPF_LEGACY__ #define __BPF_LEGACY__ #if __GNUC__ && !__clang__ /* Functions to emit BPF_LD_ABS and BPF_LD_IND instructions. We * provide the "standard" names as synonyms of the corresponding GCC * builtins. Note how the SKB argument is ignored...
Linux kernel'inin 'tools/testing/selftests/bpf/test_sockmap' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 // Copyright (c) 2017-2018 Covalent IO, Inc. http://covalent.io #include <stdio.h> #include <stdlib.h> #include <sys/socket.h> #include <sys/ioctl.h> #include <sys/select.h> #include <netinet/in.h> #include <arpa/inet.h> #include <unistd.h> #include <string.h> #include <errno.h>...
Linux kernel'inin 'tools/testing/selftests/bpf/test_tag' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <ctype.h> #include <time.h> #include <errno.h> #include <unistd.h> #include <string.h> #include <sched.h> #include <limits.h> #include <assert.h> #include <sys/socket.h> #include <linux/filter.h> #include <lin...
Linux kernel'inin 'tools/testing/selftests/bpf/flow_dissector_load' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <error.h> #include <errno.h> #include <getopt.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <bpf/bpf.h> #include <bpf/libbpf.h> #include "flow_dissector_load.h" const char *cfg_pin_p...
Linux kernel'inin 'tools/testing/selftests/bpf/unpriv_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only #include <errno.h> #include <limits.h> #include <stdbool.h> #include <stdlib.h> #include <stdio.h> #include <string.h> #include <sys/utsname.h> #include <unistd.h> #include <fcntl.h> #include <zlib.h> #include "unpriv_helpers.h" static gzFile open_config(void) { struct ...
Linux kernel'inin 'tools/testing/selftests/bpf/test_lirc_mode2_user' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 // test ir decoder // // Copyright (C) 2018 Sean Young <sean@mess.org> // A lirc chardev is a device representing a consumer IR (cir) device which // can receive infrared signals from remote control and/or transmit IR. // // IR is sent as a series of pulses and space somewhat l...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_iptunnel_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright (c) 2016 Facebook */ #ifndef _TEST_IPTNL_COMMON_H #define _TEST_IPTNL_COMMON_H #include <linux/types.h> #define MAX_IPTNL_ENTRIES 256U struct vip { union { __u32 v6[4]; __u32 v4; } daddr; __u16 dport; __u16 family; __u8 protocol; }; struct iptn...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/netcnt_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #ifndef __NETCNT_COMMON_H #define __NETCNT_COMMON_H #include <linux/types.h> #define MAX_PERCPU_PACKETS 32 /* sizeof(struct bpf_local_storage_elem): * * It is about 128 bytes on x86_64 and 512 bytes on s390x, but allocate more to * account for possible layout changes, diff...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/io_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #include <unistd.h> /* As a regular read(2), but allows to specify a timeout in micro-seconds. * Returns -EAGAIN on timeout. */ int read_with_timeout(int fd, char *buf, size_t count, long usec); ```
Linux kernel'inin 'tools/testing/selftests/bpf/trace_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <ctype.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <assert.h> #include <errno.h> #include <fcntl.h> #include <poll.h> #include <pthread.h> #include <unistd.h> #include <linux/perf_event.h> #include <linux/fs.h> #include <sys/ioctl.h> #include ...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/sdt-config' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* includes/sys/sdt-config.h. Generated from sdt-config.h.in by configure. This file just defines _SDT_ASM_SECTION_AUTOGROUP_SUPPORT to 0 or 1 to indicate whether the assembler supports "?" in .pushsection directives. */ #define _SDT_ASM_SECTION_AUTOGROUP_SUPPORT 1 ```
Linux kernel'inin 'tools/testing/selftests/bpf/testing_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) /* Copyright (C) 2019 Netronome Systems, Inc. */ /* Copyright (C) 2020 Facebook, Inc. */ #include <ctype.h> #include <stdlib.h> #include <string.h> #include <errno.h> #include <bpf/bpf.h> #include <bpf/libbpf.h> #include "disasm.h" #include "test_progs.h" #inc...
Linux kernel'inin 'tools/testing/selftests/bpf/test_lru_map' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (c) 2016 Facebook */ #define _GNU_SOURCE #include <stdio.h> #include <unistd.h> #include <errno.h> #include <string.h> #include <assert.h> #include <sched.h> #include <stdlib.h> #include <time.h> #include <sys/wait.h> #include <bpf/bpf.h> #include <bpf/li...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_progs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __TEST_PROGS_H #define __TEST_PROGS_H #include <stdio.h> #include <unistd.h> #include <errno.h> #include <string.h> #include <assert.h> #include <regex.h> #include <stdlib.h> #include <stdarg.h> #include <time.h> #include <signal.h> #include <linux/types.h> typedef ...
Linux kernel'inin 'tools/testing/selftests/bpf/test_maps' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Testsuite for eBPF maps * * Copyright (c) 2014 PLUMgrid, http://plumgrid.com * Copyright (c) 2016 Facebook */ #include <stdio.h> #include <unistd.h> #include <errno.h> #include <string.h> #include <assert.h> #include <stdlib.h> #include <time.h> #include <sys/wa...
Linux kernel'inin 'tools/testing/selftests/bpf/urandom_read_lib1' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2022 Meta Platforms, Inc. and affiliates. */ #define _SDT_HAS_SEMAPHORES 1 #include "sdt.h" #define SHARED 1 #include "bpf/libbpf_internal.h" #define SEC(name) __attribute__((section(name), used)) unsigned short urandlib_read_with_sema_semaphore SEC(".probes"...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/flow_dissector_load' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ #ifndef FLOW_DISSECTOR_LOAD #define FLOW_DISSECTOR_LOAD #include <bpf/bpf.h> #include <bpf/libbpf.h> #include "testing_helpers.h" static inline int bpf_flow_load(struct bpf_object **obj, const char *path, const char *prog_name, const char ...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/testing_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ /* Copyright (C) 2020 Facebook, Inc. */ #ifndef __TESTING_HELPERS_H #define __TESTING_HELPERS_H #include <stdbool.h> #include <bpf/bpf.h> #include <bpf/libbpf.h> #include <time.h> #define __TO_STR(x) #x #define TO_STR(x) __TO_STR(x) int parse_num_list(c...
Linux kernel'inin 'tools/testing/selftests/bpf/usdt_2' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #if defined(__x86_64__) /* * Include usdt.h with default nop,nop5 instructions combo. */ #include "usdt.h" __attribute__((aligned(16))) void usdt_2(void) { USDT(optimized_attach, usdt_2); } #endif ```
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/xdp_features' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* test commands */ enum test_commands { CMD_STOP, /* CMD */ CMD_START, /* CMD */ CMD_ECHO, /* CMD */ CMD_ACK, /* CMD + data */ CMD_GET_XDP_CAP, /* CMD */ CMD_GET_STATS, /* CMD */ }; #define DUT_CTRL_PORT 12345 #define DUT_ECHO_PORT 12346 struct tlv_hdr { __be1...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_btf' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2019 Facebook */ #ifndef _TEST_BTF_H #define _TEST_BTF_H #define BTF_END_RAW 0xdeadbeef #define BTF_INFO_ENC(kind, kind_flag, vlen) \ ((!!(kind_flag) << 31) | ((kind) << 24) | ((vlen) & BTF_MAX_VLEN)) #define BTF_TYPE_ENC(name, info, size_or_type) \ (...
Linux kernel'inin 'tools/testing/selftests/bpf/btf_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2020 Facebook */ #include <stdio.h> #include <errno.h> #include <bpf/btf.h> #include <bpf/libbpf.h> #include "test_progs.h" static const char * const btf_kind_str_mapping[] = { [BTF_KIND_UNKN] = "UNKNOWN", [BTF_KIND_INT] = "INT", [BTF_KIND_PTR] = "PTR", ...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/cap_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CAP_HELPERS_H #define __CAP_HELPERS_H #include <linux/types.h> #include <linux/capability.h> #include <errno.h> #ifndef CAP_PERFMON #define CAP_PERFMON 38 #endif #ifndef CAP_BPF #define CAP_BPF 39 #endif int cap_enable_effective(__u64 caps, __u64 *old_caps); ...
Linux kernel'inin 'tools/testing/selftests/bpf/io_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <sys/select.h> #include <unistd.h> #include <errno.h> int read_with_timeout(int fd, char *buf, size_t count, long usec) { const long M = 1000 * 1000; struct timeval tv = { usec / M, usec % M }; fd_set fds; int err; FD_ZERO(&fds); FD_SET(fd, &fds); err = select(...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/jit_disasm_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ #ifndef __JIT_DISASM_HELPERS_H #define __JIT_DISASM_HELPERS_H #include <stddef.h> int get_jited_program_text(int fd, char *text, size_t text_sz); #endif /* __JIT_DISASM_HELPERS_H */ ```
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/sdt' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* <sys/sdt.h> - Systemtap static probe definition macros. This file is dedicated to the public domain, pursuant to CC0 (https://creativecommons.org/publicdomain/zero/1.0/) */ #ifndef _SYS_SDT_H #define _SYS_SDT_H 1 /* This file defines a family of macros STAP_PROBEn(op1, ..., opn) that em...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/netlink_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-or-later */ #ifndef NETLINK_HELPERS_H #define NETLINK_HELPERS_H #include <string.h> #include <linux/netlink.h> #include <linux/rtnetlink.h> struct rtnl_handle { int fd; struct sockaddr_nl local; struct sockaddr_nl peer; __u32 seq; __u32 dump; int proto; FILE *...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_sockopt_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #include <sys/socket.h> #include <bpf/bpf_helpers.h> int get_set_sk_priority(void *ctx) { int prio; /* Verify that context allows calling bpf_getsockopt and * bpf_setsockopt by reading and writing back socket * priority. */ if (bpf_getsockopt(ctx, SOL_SOCKET, SO_...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_arena_htab' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ /* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */ #pragma once #include <errno.h> #include "bpf_arena_alloc.h" #include "bpf_arena_list.h" struct htab_bucket { struct arena_list_head head; }; typedef struct htab_bucket __arena htab_bucket_...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/task_local_storage_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __TASK_LOCAL_STORAGE_HELPER_H #define __TASK_LOCAL_STORAGE_HELPER_H #include <unistd.h> #include <sys/syscall.h> #include <sys/types.h> #ifndef __NR_pidfd_open #ifdef __alpha__ #define __NR_pidfd_open 544 #else #define __NR_pidfd_open 434 #endif #endif static inlin...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/xskxceiver' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 * Copyright(c) 2020 Intel Corporation. */ #ifndef XSKXCEIVER_H_ #define XSKXCEIVER_H_ #include <limits.h> #include "xsk_xdp_progs.skel.h" #include "xsk_xdp_common.h" #ifndef SOL_XDP #define SOL_XDP 283 #endif #ifndef AF_XDP #define AF_XDP 44 #endif #ifndef PF_XDP #define...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_arena_alloc' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ /* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */ #pragma once #include "bpf_arena_common.h" #ifndef __round_mask #define __round_mask(x, y) ((__typeof__(x))((y)-1)) #endif #ifndef round_up #define round_up(x, y) ((((x)-1) | __round_mask(x,...
Linux kernel'inin 'tools/testing/selftests/bpf/disasm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) /* Copyright (c) 2011-2014 PLUMgrid, http://plumgrid.com * Copyright (c) 2016 Facebook */ #include <linux/bpf.h> #include "disasm.h" #define __BPF_FUNC_STR_FN(x) [BPF_FUNC_ ## x] = __stringify(bpf_ ## x) static const char * const func_id_str[] = { __...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/test_tcpbpf' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #ifndef _TEST_TCPBPF_H #define _TEST_TCPBPF_H struct tcpbpf_globals { __u32 event_map; __u32 total_retrans; __u32 data_segs_in; __u32 data_segs_out; __u32 bad_cb_test_rv; __u32 good_cb_test_rv; __u64 bytes_received; __u64 bytes_acked; __u32 num_listen; __u32 num_clos...
Linux kernel'inin 'tools/testing/selftests/bpf/xdp_hw_metadata' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Reference program for verifying XDP metadata on real HW. Functional test * only, doesn't test the performance. * * RX: * - UDP 9091 packets are diverted into AF_XDP * - Metadata verified: * - rx_timestamp * - rx_hash * * TX: * - UDP 9091 packets trigger TX repl...
Linux kernel'inin 'tools/testing/selftests/bpf/urandom_read_aux' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2022 Meta Platforms, Inc. and affiliates. */ #include "sdt.h" void urand_read_without_sema(int iter_num, int iter_cnt, int read_sz) { /* semaphore-less USDT */ STAP_PROBE3(urand, read_without_sema, iter_num, iter_cnt, read_sz); } ```
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/btf_helpers' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2020 Facebook */ #ifndef __BTF_HELPERS_H #define __BTF_HELPERS_H #include <stdio.h> #include <bpf/btf.h> int fprintf_btf_type_raw(FILE *out, const struct btf *btf, __u32 id); const char *btf_type_raw_dump(const struct btf *btf, int type_id); int btf_validat...
Linux kernel'inin 'tools/testing/selftests/bpf/usdt_1' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #if defined(__x86_64__) /* * Include usdt.h with defined USDT_NOP macro to use single * nop instruction. */ #define USDT_NOP .byte 0x90 #include "usdt.h" __attribute__((aligned(16))) void usdt_1(void) { USDT(optimized_attach, usdt_1); } #endif ```
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/cgroup_getset_retval_hooks' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ BPF_RETVAL_HOOK(ingress, "cgroup_skb/ingress", __sk_buff, -EINVAL) BPF_RETVAL_HOOK(egress, "cgroup_skb/egress", __sk_buff, -EINVAL) BPF_RETVAL_HOOK(sock_create, "cgroup/sock_create", bpf_sock, 0) BPF_RETVAL_HOOK(sock_ops, "sockops", bpf_sock_ops, -EINVAL) BPF_RETVAL_HOOK(dev...
Linux kernel'inin 'tools/testing/selftests/bpf/json_writer' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause) /* * Simple streaming JSON writer * * This takes care of the annoying bits of JSON syntax like the commas * after elements * * Authors: Stephen Hemminger <stephen@networkplumber.org> */ #include <stdio.h> #include <stdbool.h> #include <stdarg.h...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/cgroup_iter_memcg' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* Copyright (c) 2025 Meta Platforms, Inc. and affiliates. */ #ifndef __CGROUP_ITER_MEMCG_H #define __CGROUP_ITER_MEMCG_H struct memcg_query { /* some node_stat_item's */ unsigned long nr_anon_mapped; unsigned long nr_shmem; unsigned long nr_file_pages; unsigned long nr...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/usdt' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: BSD-2-Clause /* * This single-header library defines a collection of variadic macros for * defining and triggering USDTs (User Statically-Defined Tracepoints): * * - For USDTs without associated semaphore: * USDT(group, name, args...) * * - For USDTs with imp...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_atomic' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2025 Meta Platforms, Inc. and affiliates. */ #ifndef BPF_ATOMIC_H #define BPF_ATOMIC_H #include <vmlinux.h> #include <bpf/bpf_helpers.h> #include "bpf_experimental.h" extern bool CONFIG_X86_64 __kconfig __weak; /* * __unqual_typeof(x) - Declare an unqualifie...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bpf_arena_common' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) */ /* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */ #pragma once #ifndef WRITE_ONCE #define WRITE_ONCE(x, val) ((*(volatile typeof(x) *) &(x)) = (val)) #endif #ifndef NUMA_NO_NODE #define NUMA_NO_NODE (-1) #endif #ifndef arena_container_of ...
Linux kernel'inin 'tools/testing/selftests/bpf/test_verifier' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Testsuite for eBPF verifier * * Copyright (c) 2014 PLUMgrid, http://plumgrid.com * Copyright (c) 2017 Facebook * Copyright (c) 2018 Covalent IO, Inc. http://covalent.io */ #include <endian.h> #include <asm/types.h> #include <linux/types.h> #include <stdint.h> #i...
Linux kernel'inin 'tools/testing/selftests/bpf/network_helpers' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only #define _GNU_SOURCE #include <errno.h> #include <stdbool.h> #include <stdio.h> #include <string.h> #include <unistd.h> #include <sched.h> #include <arpa/inet.h> #include <sys/mount.h> #include <sys/stat.h> #include <sys/types.h> #include <sys/un.h> #include <sys/eventfd.h...
Linux işletim sistemi çekirdeği için 'tools/testing/selftests/bpf/bench' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #pragma once #include <stdlib.h> #include <stdbool.h> #include <linux/err.h> #include <errno.h> #include <unistd.h> #include <bpf/bpf.h> #include <bpf/libbpf.h> #include <math.h> #include <time.h> #include <sys/syscall.h> #include <limits.h> struct cpu_set { bool *cpus; in...
Linux kernel'inin 'tools/testing/selftests/bpf/xdping' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* Copyright (c) 2019, Oracle and/or its affiliates. All rights reserved. */ #include <linux/bpf.h> #include <linux/if_link.h> #include <arpa/inet.h> #include <assert.h> #include <errno.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <...
Linux kernel'inin 'tools/testing/selftests/bpf/test_tcpnotify_user' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #define _GNU_SOURCE #include <pthread.h> #include <inttypes.h> #include <stdio.h> #include <stdlib.h> #include <unistd.h> #include <asm/types.h> #include <sys/syscall.h> #include <errno.h> #include <string.h> #include <linux/bpf.h> #include <sys/socket.h> #include <bpf/bpf.h> #i...