instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_skel/perf_version' 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 __PERF_VERSION_H__ #define __PERF_VERSION_H__ #include "vmlinux.h" #include <bpf/bpf_helpers.h> /* * This is used by tests/shell/record_bpf_metadata.sh * to verify that BPF metadata generation works. * * PERF_VERSION is defined by a build...
Linux kernel'inin 'tools/perf/util/bpf_skel/bperf_cgroup.bpf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) // Copyright (c) 2021 Facebook // Copyright (c) 2021 Google #include "bperf_cgroup.h" #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> #include <bpf/bpf_core_read.h> // NOTE: many of map and global data will be modified befor...
Linux kernel'inin 'tools/perf/util/bpf_skel/lock_contention.bpf' 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 Google #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> #include <bpf/bpf_core_read.h> #include <asm-generic/errno-base.h> #include "lock_data.h" /* for collect_lock_syms(). 4096 was rejected by the ve...
Linux kernel'inin 'tools/perf/util/bpf_skel/func_latency.bpf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) // Copyright (c) 2021 Google #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> // This should be in sync with "util/ftrace.h" #define NUM_BUCKET 22 struct { __uint(type, BPF_MAP_TYPE_HASH); __uint(key_size, sizeof(__u64));...
Linux kernel'inin 'tools/perf/util/bpf_skel/sample_filter.bpf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) // Copyright (c) 2023 Google #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> #include <bpf/bpf_core_read.h> #include "sample-filter.h" /* BPF map that will be filled by user space */ struct filters { __uint(type, BPF_MAP_T...
Linux kernel'inin 'tools/perf/util/bpf_skel/bperf_follower.bpf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) // Copyright (c) 2021 Facebook #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> #include "bperf_u.h" #define MAX_ENTRIES 102400 struct { __uint(type, BPF_MAP_TYPE_PERCPU_ARRAY); __uint(key_size, sizeof(__u32)); __uint(val...
Linux kernel'inin 'tools/perf/util/bpf_skel/augmented_raw_syscalls.bpf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Augment the raw_syscalls tracepoints with the contents of the pointer arguments. * * This exactly matches what is marshalled into the raw_syscall:sys_enter * payload expected by the 'perf trace' beautifiers. */ #include "vmlinux.h" #include <bpf/bpf_helpers.h> #inclu...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_skel/bperf_u' 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) 2021 Facebook #ifndef __BPERF_STAT_U_H #define __BPERF_STAT_U_H enum bperf_filter_type { BPERF_FILTER_GLOBAL = 1, BPERF_FILTER_CPU, BPERF_FILTER_PID, BPERF_FILTER_TGID, }; struct bperf_filter_value { __u32 accum_key; __u8 exited; ...
Linux kernel'inin 'tools/perf/util/bpf_skel/kwork_trace.bpf' 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, Huawei #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> #define KWORK_COUNT 100 #define MAX_KWORKNAME 128 /* * This should be in sync with "util/kwork.h" */ enum kwork_class_type { KWORK_CLASS_IRQ,...
Linux kernel'inin 'tools/perf/util/bpf_skel/bench_uprobe.bpf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) // Copyright (c) 2023 Red Hat #include "vmlinux.h" #include <bpf/bpf_tracing.h> unsigned int nr_uprobes; unsigned int nr_uretprobes; SEC("uprobe") int BPF_UPROBE(empty) { return 0; } SEC("uprobe") int BPF_UPROBE(trace_printk) { char fmt[] = "per...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_skel/vmlinux/vmlinux' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef __VMLINUX_H #define __VMLINUX_H #include <linux/stddef.h> // for define __always_inline #include <linux/bpf.h> #include <linux/types.h> #include <linux/perf_event.h> #include <stdbool.h> // non-UAPI kernel data structures, used in the .bpf.c BPF tool component. // Just the fields used in these tools pre...
Linux işletim sistemi çekirdeği için 'tools/perf/util/include/dwarf-regs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_DWARF_REGS_H_ #define _PERF_DWARF_REGS_H_ #include "annotate.h" #include <elf.h> #ifndef EM_AARCH64 #define EM_AARCH64 183 /* ARM 64 bit */ #endif #ifndef EM_CSKY #define EM_CSKY 252 /* C-SKY */ #endif #ifndef EF_CSKY_ABIV1 #define EF_CSKY_ABIV1 0X10000000 ...
Linux işletim sistemi çekirdeği için 'tools/perf/util/include/linux/linkage' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PERF_LINUX_LINKAGE_H_ #define PERF_LINUX_LINKAGE_H_ /* linkage.h ... for including arch/x86/lib/memcpy_64.S */ /* Some toolchains use other characters (e.g. '`') to mark new line in macro */ #ifndef ASM_NL #define ASM_NL ; #endif #ifndef __ALIGN #define __ALIGN ...
Linux işletim sistemi çekirdeği için 'tools/perf/util/include/asm/dwarf2' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PERF_DWARF2_H #define PERF_DWARF2_H /* dwarf2.h ... dummy header file for including arch/x86/lib/mem{cpy,set}_64.S */ #define CFI_STARTPROC #define CFI_ENDPROC #define CFI_REMEMBER_STATE #define CFI_RESTORE_STATE #endif /* PERF_DWARF2_H */ ```
Linux işletim sistemi çekirdeği için 'tools/perf/util/include/asm/cpufeature' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PERF_CPUFEATURE_H #define PERF_CPUFEATURE_H /* cpufeature.h ... dummy header file for including arch/x86/lib/memcpy_64.S */ #define X86_FEATURE_REP_GOOD 0 #endif /* PERF_CPUFEATURE_H */ ```
Linux işletim sistemi çekirdeği için 'tools/perf/util/include/asm/uaccess' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_ASM_UACCESS_H_ #define _PERF_ASM_UACCESS_H_ #define __get_user(src, dest) \ ({ \ (src) = *dest; \ 0; \ }) #define get_user __get_user #define access_ok(addr, size) 1 #endif ```
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-riscv' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <dwarf-regs.h> #include "../../../arch/riscv/include/uapi/asm/perf_regs.h" int __get_dwarf_regnum_for_perf_regnum_riscv(int perf_regnum) { if (perf_regnum < 0 || perf_regnum >= PERF_REG_RISCV_MAX) return -ENOENT; return perf_regnum; } ```
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-arm64' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <dwarf-regs.h> #include "../../../arch/arm64/include/uapi/asm/perf_regs.h" int __get_dwarf_regnum_for_perf_regnum_arm64(int perf_regnum) { if (perf_regnum < 0 || perf_regnum >= PERF_REG_ARM64_MAX) return -ENOENT; return perf_regnum; } ```
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-s390' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <dwarf-regs.h> #include "../../../arch/s390/include/uapi/asm/perf_regs.h" int __get_dwarf_regnum_for_perf_regnum_s390(int perf_regnum) { static const int dwarf_s390_regnums[] = { [PERF_REG_S390_R0] = 0, [PERF_REG_S390_R1] = 1, [PERF_REG_S390_R...
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-csky' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 // Copyright (C) 2019 Hangzhou C-SKY Microsystems co.,ltd. // Mapping of DWARF debug register numbers into register names. #include <errno.h> #include <stddef.h> #include <dwarf-regs.h> // Ensure the V2 perf reg definitions are included. #undef __CSKYABIV2__ #define __CSKYABIV2...
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-mips' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <dwarf-regs.h> #include "../../../arch/mips/include/uapi/asm/perf_regs.h" int __get_dwarf_regnum_for_perf_regnum_mips(int perf_regnum) { if (perf_regnum == PERF_REG_MIPS_PC) return 37; if (perf_regnum < 0 || perf_regnum >= PERF_REG_MIPS_MAX) re...
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-powerpc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * Mapping of DWARF debug register numbers into register names. * * Copyright (C) 2010 Ian Munsie, IBM Corporation. */ #include <errno.h> #include <dwarf-regs.h> #include "../../../arch/powerpc/include/uapi/asm/perf_regs.h" #define PPC_OP(op) (((op) >> 26) & 0x3F...
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-x86' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * dwarf-regs.c : Mapping of DWARF debug register numbers into register names. * Extracted from probe-finder.c * * Written by Masami Hiramatsu <mhiramat@redhat.com> */ #include <errno.h> /* for EINVAL */ #include <string.h> /* for strcmp */ #include <linux/kerne...
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-loongarch' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <dwarf-regs.h> #include "../../../arch/loongarch/include/uapi/asm/perf_regs.h" int __get_dwarf_regnum_for_perf_regnum_loongarch(int perf_regnum) { if (perf_regnum < 0 || perf_regnum >= PERF_REG_LOONGARCH_MAX) return -ENOENT; return perf_regnum; ...
Linux kernel'inin 'tools/perf/util/dwarf-regs-arch/dwarf-regs-arm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <dwarf-regs.h> #include "../../../arch/arm/include/uapi/asm/perf_regs.h" int __get_dwarf_regnum_for_perf_regnum_arm(int perf_regnum) { if (perf_regnum < 0 || perf_regnum >= PERF_REG_ARM_MAX) return -ENOENT; return perf_regnum; } ```
Linux kernel'inin 'tools/perf/util/hisi-ptt-decoder/hisi-ptt-pkt-decoder' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * HiSilicon PCIe Trace and Tuning (PTT) support * Copyright (c) 2022 HiSilicon Technologies Co., Ltd. */ #include <stdlib.h> #include <stdio.h> #include <string.h> #include <endian.h> #include <byteswap.h> #include <linux/bitops.h> #include <stdarg.h> #include "../color....
Linux işletim sistemi çekirdeği için 'tools/perf/util/hisi-ptt-decoder/hisi-ptt-pkt-decoder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * HiSilicon PCIe Trace and Tuning (PTT) support * Copyright (c) 2022 HiSilicon Technologies Co., Ltd. */ #ifndef INCLUDE__HISI_PTT_PKT_DECODER_H__ #define INCLUDE__HISI_PTT_PKT_DECODER_H__ #include <stddef.h> #include <stdint.h> #define HISI_PTT_8DW_CHECK_MASK GENMA...
Linux işletim sistemi çekirdeği için 'tools/perf/util/kvm-stat-arch/book3s_hv_exits' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef ARCH_PERF_BOOK3S_HV_EXITS_H #define ARCH_PERF_BOOK3S_HV_EXITS_H /* * PowerPC Interrupt vectors : exit code to name mapping */ #define kvm_trace_symbol_exit \ {0x0, "RETURN_TO_HOST"}, \ {0x100, "SYSTEM_RESET"}, \ {0x200, "MACHINE_CHECK"}, \ {0x300, "DATA_STORAG...
Linux işletim sistemi çekirdeği için 'tools/perf/util/kvm-stat-arch/riscv_trap_types' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #ifndef ARCH_PERF_RISCV_TRAP_TYPES_H #define ARCH_PERF_RISCV_TRAP_TYPES_H /* Exception cause high bit - is an interrupt if set */ #define CAUSE_IRQ_FLAG(xlen) (_AC(1, UL) << (xlen - 1)) /* Interrupt causes (minus the high bit) */ #define IRQ_S_SOFT 1 #define IRQ_VS_SOFT 2 #de...
Linux kernel'inin 'tools/perf/util/kvm-stat-arch/kvm-stat-loongarch' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <memory.h> #include <dwarf-regs.h> #include "../kvm-stat.h" #include "../parse-events.h" #include "../debug.h" #include "../evsel.h" #include "../evlist.h" #include "../pmus.h" #define LOONGARCH_EXCEPTION_INT 0 #define LOONGARCH_EXCEPTION_PIL 1 #de...
Linux kernel'inin 'tools/perf/util/kvm-stat-arch/kvm-stat-powerpc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include "../kvm-stat.h" #include "../parse-events.h" #include "../debug.h" #include "../evsel.h" #include "../evlist.h" #include "../pmus.h" #include "book3s_hv_exits.h" #include "book3s_hcalls.h" #include <subcmd/parse-options.h> #define NR_TPS 4 define_e...
Linux işletim sistemi çekirdeği için 'tools/perf/util/kvm-stat-arch/arm64_exception_types' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #ifndef ARCH_PERF_ARM64_EXCEPTION_TYPES_H #define ARCH_PERF_ARM64_EXCEPTION_TYPES_H /* Per asm/virt.h */ #define HVC_STUB_ERR 0xbadca11 /* Per asm/kvm_asm.h */ #define ARM_EXCEPTION_IRQ 0 #define ARM_EXCEPTION_EL1_SERROR 1 #define ARM_EXCEPTION_TRAP 2 #define ARM_EXCEPTIO...
Linux işletim sistemi çekirdeği için 'tools/perf/util/kvm-stat-arch/book3s_hcalls' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef ARCH_PERF_BOOK3S_HV_HCALLS_H #define ARCH_PERF_BOOK3S_HV_HCALLS_H /* * PowerPC HCALL codes : hcall code to name mapping */ #define kvm_trace_symbol_hcall \ {0x4, "H_REMOVE"}, \ {0x8, "H_ENTER"}, \ {0xc, "H_READ"}, \ {0x10, "H_CLEAR_MOD"}, \ {0x...
Linux kernel'inin 'tools/perf/util/kvm-stat-arch/kvm-stat-riscv' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Arch specific functions for perf kvm stat. * * Copyright 2024 Beijing ESWIN Computing Technology Co., Ltd. * */ #include <errno.h> #include <memory.h> #include "../evsel.h" #include "../kvm-stat.h" #include "riscv_trap_types.h" #include "debug.h" define_exit_reasons_t...
Linux kernel'inin 'tools/perf/util/kvm-stat-arch/kvm-stat-x86' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <string.h> #include "../kvm-stat.h" #include "../evsel.h" #include "../env.h" #include "../../../arch/x86/include/uapi/asm/svm.h" #include "../../../arch/x86/include/uapi/asm/vmx.h" #include "../../../arch/x86/include/uapi/asm/kvm.h" #include <subcmd/...
Linux kernel'inin 'tools/perf/util/kvm-stat-arch/kvm-stat-s390' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Arch specific functions for perf kvm stat. * * Copyright 2014 IBM Corp. * Author(s): Alexander Yarygin <yarygin@linux.vnet.ibm.com> */ #include <errno.h> #include <string.h> #include "../kvm-stat.h" #include "../evsel.h" #include "../../../arch/s390/include/uapi/...
Linux kernel'inin 'tools/perf/util/kvm-stat-arch/kvm-stat-arm64' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <memory.h> #include "../debug.h" #include "../evsel.h" #include "../kvm-stat.h" #include "arm64_exception_types.h" define_exit_reasons_table(arm64_exit_reasons, kvm_arm_exception_type); define_exit_reasons_table(arm64_trap_exit_reasons, kvm_arm_excep...
Linux kernel'inin 'tools/perf/util/intel-pt-decoder/intel-pt-insn-decoder' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * intel_pt_insn_decoder.c: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #include <linux/kernel.h> #include <stdio.h> #include <string.h> #include <endian.h> #include <byteswap.h> #include "../../../arch/x86/include/asm/insn.h" #incl...
Linux kernel'inin 'tools/perf/util/intel-pt-decoder/intel-pt-pkt-decoder' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * intel_pt_pkt_decoder.c: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #include <stdio.h> #include <string.h> #include <endian.h> #include <byteswap.h> #include <linux/kernel.h> #include <linux/compiler.h> #include <linux/unaligned.h...
Linux işletim sistemi çekirdeği için 'tools/perf/util/intel-pt-decoder/intel-pt-pkt-decoder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * intel_pt_pkt_decoder.h: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #ifndef INCLUDE__INTEL_PT_PKT_DECODER_H__ #define INCLUDE__INTEL_PT_PKT_DECODER_H__ #include <stddef.h> #include <stdint.h> #define INTEL_PT_PKT_DESC_MAX 256...
Linux işletim sistemi çekirdeği için 'tools/perf/util/intel-pt-decoder/intel-pt-log' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * intel_pt_log.h: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #ifndef INCLUDE__INTEL_PT_LOG_H__ #define INCLUDE__INTEL_PT_LOG_H__ #include <linux/compiler.h> #include <stdint.h> #include <inttypes.h> struct intel_pt_pkt; void ...
Linux kernel'inin 'tools/perf/util/intel-pt-decoder/intel-pt-log' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * intel_pt_log.c: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #include <stdio.h> #include <stdlib.h> #include <stdint.h> #include <inttypes.h> #include <stdarg.h> #include <stdbool.h> #include <string.h> #include <linux/zalloc.h> #...
Linux işletim sistemi çekirdeği için 'tools/perf/util/intel-pt-decoder/intel-pt-decoder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * intel_pt_decoder.h: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #ifndef INCLUDE__INTEL_PT_DECODER_H__ #define INCLUDE__INTEL_PT_DECODER_H__ #include <stdint.h> #include <stddef.h> #include <stdbool.h> #include <linux/rbtree.h...
Linux kernel'inin 'tools/perf/util/intel-pt-decoder/intel-pt-decoder' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * intel_pt_decoder.c: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include <stdlib.h> #include <stdbool.h> #include <string.h> #include <errno.h> #include <stdint.h> #include <inttypes....
Linux işletim sistemi çekirdeği için 'tools/perf/util/intel-pt-decoder/intel-pt-insn-decoder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * intel_pt_insn_decoder.h: Intel Processor Trace support * Copyright (c) 2013-2014, Intel Corporation. */ #ifndef INCLUDE__INTEL_PT_INSN_DECODER_H__ #define INCLUDE__INTEL_PT_INSN_DECODER_H__ #include <stddef.h> #include <stdint.h> #define INTEL_PT_INSN_DESC_MAX...
Linux işletim sistemi çekirdeği için 'tools/perf/util/cs-etm-decoder/cs-etm-decoder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* * SPDX-License-Identifier: GPL-2.0 * * Copyright(C) 2015-2018 Linaro Limited. * * Author: Tor Jeremiassen <tor@ti.com> * Author: Mathieu Poirier <mathieu.poirier@linaro.org> */ #ifndef INCLUDE__CS_ETM_DECODER_H__ #define INCLUDE__CS_ETM_DECODER_H__ #include <linux/types.h> #include <opencsd/ocsd_if_typ...
Linux kernel'inin 'tools/perf/util/cs-etm-decoder/cs-etm-decoder' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright(C) 2015-2018 Linaro Limited. * * Author: Tor Jeremiassen <tor@ti.com> * Author: Mathieu Poirier <mathieu.poirier@linaro.org> */ #include <asm/bug.h> #include <linux/coresight-pmu.h> #include <linux/err.h> #include <linux/list.h> #include <linux/zalloc.h> #in...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-arm64' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/compiler.h> #include <errno.h> #include <stdlib.h> #include <string.h> #include <linux/zalloc.h> #include <regex.h> #include "../annotate.h" #include "../disasm.h" struct arch_arm64 { struct arch arch; regex_t call_insn; regex_t jump_insn; }; static int arm6...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-powerpc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <string.h> #include <linux/compiler.h> #include <linux/kernel.h> #include "../annotate-data.h" #include "../debug.h" #include "../disasm.h" #define PPC_OP(op) (((op) >> 26) & 0x3F) #define PPC_21_30(R) (((R) >> 1) & 0x3ff) #define PPC_22_30(R) (((R) >> 1) & 0x1ff) #de...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-arc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <linux/compiler.h> #include <linux/zalloc.h> #include "../disasm.h" const struct arch *arch__new_arc(const struct e_machine_and_e_flags *id, const char *cpuid __maybe_unused) { struct arch *arch = zalloc(sizeof(*arch)); if (!arch) return NULL; arch->name = ...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-csky' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 // Copyright (C) 2019 Hangzhou C-SKY Microsystems co.,ltd. #include <string.h> #include <linux/compiler.h> #include <linux/zalloc.h> #include "../disasm.h" static const struct ins_ops *csky__associate_ins_ops(struct arch *arch, const char *name) { const struct ins_o...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-arm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <stdlib.h> #include <linux/compiler.h> #include <linux/zalloc.h> #include <errno.h> #include <regex.h> #include "../annotate.h" #include "../disasm.h" struct arch_arm { struct arch arch; regex_t call_insn; regex_t jump_insn; }; static const struct ins_ops *arm__ass...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-loongarch' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Perf annotate functions. * * Copyright (C) 2020-2023 Loongson Technology Corporation Limited */ #include <stdlib.h> #include <string.h> #include <linux/compiler.h> #include <linux/zalloc.h> #include "../disasm.h" #include "../map.h" #include "../maps.h" #include "../sym...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-riscv64' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <string.h> #include <linux/compiler.h> #include <linux/zalloc.h> #include "../disasm.h" static const struct ins_ops *riscv64__associate_ins_ops(struct arch *arch, const char *name) { const struct ins_ops *ops = NULL; if (!strncmp(name, "jal", 3) || !strncmp(nam...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-sparc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <string.h> #include <linux/compiler.h> #include <linux/zalloc.h> #include "../../util/disasm.h" static int is_branch_cond(const char *cond) { if (cond[0] == '\0') return 1; if (cond[0] == 'a' && cond[1] == '\0') return 1; if (cond[0] == 'c' && (cond[1] ==...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-x86' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <string.h> #include <linux/compiler.h> #include <linux/zalloc.h> #include <assert.h> #include <inttypes.h> #include "../annotate-data.h" #include "../debug.h" #include "../disasm.h" #include "../dso.h" #include "../map.h" #include "../string2.h" // strstarts #include "....
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-s390' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <string.h> #include <linux/compiler.h> #include "../debug.h" #include "../disasm.h" #include "../map.h" #include "../maps.h" #include "../symbol.h" #include "../thread.h" #include "../annotate.h" #include "../annotate-data.h" static int s390_call__parse(const struct ar...
Linux kernel'inin 'tools/perf/util/annotate-arch/annotate-mips' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <string.h> #include <linux/compiler.h> #include <linux/zalloc.h> #include "../disasm.h" static const struct ins_ops *mips__associate_ins_ops(struct arch *arch, const char *name) { const struct ins_ops *ops = NULL; if (!strncmp(name, "bal", 3) || !strncmp(name, ...
Linux kernel'inin 'tools/perf/util/libunwind/arm64' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * This file setups defines to compile arch specific binary from the * generic one. * * The function 'LIBUNWIND__ARCH_REG_ID' name is set according to arch * name and the definition of this function is included directly from * 'arch/arm64/util/unwind-libunwind.c', to mak...
Linux kernel'inin 'tools/perf/util/libunwind/x86_32' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * This file setups defines to compile arch specific binary from the * generic one. * * The function 'LIBUNWIND__ARCH_REG_ID' name is set according to arch * name and the definition of this function is included directly from * 'arch/x86/util/unwind-libunwind.c', to make ...
Linux kernel'inin 'tools/perf/util/scripting-engines/trace-event-python' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * trace-event-python. Feed trace events to an embedded Python interpreter. * * Copyright (C) 2010 Tom Zanussi <tzanussi@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Founda...
Linux kernel'inin 'tools/perf/util/scripting-engines/trace-event-perl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* * trace-event-perl. Feed perf script events to an embedded Perl interpreter. * * Copyright (C) 2009 Tom Zanussi <tzanussi@gmail.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foun...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_loongarch' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "../perf_regs.h" #include "../../arch/loongarch/include/perf_regs.h" uint64_t __perf_reg_mask_loongarch(bool intr __maybe_unused) { return PERF_REGS_MASK; } const char *__perf_reg_name_loongarch(int id) { switch (id) { case PERF_REG_LOONGARCH_PC: return "PC"; c...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_mips' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "../perf_regs.h" #include "../../arch/mips/include/perf_regs.h" uint64_t __perf_reg_mask_mips(bool intr __maybe_unused) { return PERF_REGS_MASK; } const char *__perf_reg_name_mips(int id) { switch (id) { case PERF_REG_MIPS_PC: return "PC"; case PERF_REG_MIPS_R1...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_aarch64' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <regex.h> #include <string.h> #include <sys/auxv.h> #include <linux/kernel.h> #include <linux/zalloc.h> #include "../debug.h" #include "../event.h" #include "../perf_regs.h" #include "../../perf-sys.h" #include "../../arch/arm64/include/perf_regs.h" ...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_x86' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <string.h> #include <regex.h> #include <linux/kernel.h> #include <linux/zalloc.h> #include "../debug.h" #include "../event.h" #include "../pmu.h" #include "../pmus.h" #include "../perf_regs.h" #include "../../perf-sys.h" #include "../../arch/x86/inc...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_csky' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <elf.h> #ifndef EF_CSKY_ABIMASK #define EF_CSKY_ABIMASK 0XF0000000 #endif #ifndef EF_CSKY_ABIV2 #define EF_CSKY_ABIV2 0X20000000 #endif #include "../perf_regs.h" #undef __CSKYABIV2__ #define __CSKYABIV2__ 1 // Always want the V2 register definitions. #include "../../ar...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_powerpc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <string.h> #include <regex.h> #include <linux/zalloc.h> #include "../debug.h" #include "../event.h" #include "../header.h" #include "../perf_regs.h" #include "../../perf-sys.h" #include "../../arch/powerpc/util/utils_header.h" #include "../../arch/p...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_s390' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <regex.h> #include "../perf_regs.h" #include "../../arch/s390/include/perf_regs.h" #include "debug.h" #include <linux/zalloc.h> #include <linux/kernel.h> uint64_t __perf_reg_mask_s390(bool intr __maybe_unused) { return PERF_REGS_MASK; } const cha...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_riscv' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "../perf_regs.h" #include "../../arch/riscv/include/perf_regs.h" uint64_t __perf_reg_mask_riscv(bool intr __maybe_unused) { return PERF_REGS_MASK; } const char *__perf_reg_name_riscv(int id) { switch (id) { case PERF_REG_RISCV_PC: return "pc"; case PERF_REG_RIS...
Linux kernel'inin 'tools/perf/util/perf-regs-arch/perf_regs_arm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "../perf_regs.h" #include "../../arch/arm/include/perf_regs.h" uint64_t __perf_reg_mask_arm(bool intr __maybe_unused) { return PERF_REGS_MASK; } const char *__perf_reg_name_arm(int id) { switch (id) { case PERF_REG_ARM_R0: return "r0"; case PERF_REG_ARM_R1: r...
Linux kernel'inin 'tools/perf/trace/beauty/fs_at_flags' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/fs_at_flags.c * * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <sys/types.h> #include <linux/fcntl.h> #include <linux/log2.h> /* * uapi/linux/fcntl.h does not keep a copy in to...
Linux kernel'inin 'tools/perf/trace/beauty/pid' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 size_t syscall_arg__scnprintf_pid(char *bf, size_t size, struct syscall_arg *arg) { int pid = arg->val; struct trace *trace = arg->trace; size_t printed = scnprintf(bf, size, "%d", pid); struct thread *thread = machine__findnew_thread(trace->host, pid, pid); if (thread !...
Linux kernel'inin 'tools/perf/trace/beauty/move_mount' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/move_mount.c * * Copyright (C) 2019, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/log2.h> static size_t move_mount__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_pref...
Linux işletim sistemi çekirdeği için 'tools/perf/trace/beauty/beauty' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_TRACE_BEAUTY_H #define _PERF_TRACE_BEAUTY_H #include <linux/kernel.h> #include <linux/types.h> #include <sys/types.h> #include <stdbool.h> struct strarray { u64 offset; int nr_entries; const char *prefix; const char * const *entries; }; #define DE...
Linux kernel'inin 'tools/perf/trace/beauty/prctl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/prctl.c * * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/kernel.h> #include <linux/prctl.h> #include "trace/beauty/generated/prctl_option_array.c" DEFINE_STRARRAY(prctl_...
Linux kernel'inin 'tools/perf/trace/beauty/fcntl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/fcntl.c * * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/kernel.h> #include <linux/fcntl.h> static size_t fcntl__scnprintf_getfd(unsigned long val, char *bf, size_t size,...
Linux kernel'inin 'tools/perf/trace/beauty/fsmount' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/fsmount.c * * Copyright (C) 2019, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/log2.h> #include <sys/mount.h> #ifndef MOUNT_ATTR__ATIME #define MOUNT_ATTR__ATIME 0x00000070 /* Setting on how...
Linux kernel'inin 'tools/perf/trace/beauty/socket_type' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <sys/types.h> #include <sys/socket.h> #ifndef SOCK_DCCP # define SOCK_DCCP 6 #endif #ifndef SOCK_CLOEXEC # define SOCK_CLOEXEC 02000000 #endif #ifndef SOCK_NONBLOCK # define SOCK_NONBLOCK 00004000 #endif #ifndef SOCK_TYPE_MASK #define SOCK_TYPE_MASK 0xf #endif ...
Linux kernel'inin 'tools/perf/trace/beauty/socket' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/socket.c * * Copyright (C) 2018, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <sys/types.h> #include <sys/socket.h> #include "trace/beauty/generated/socket.c" static size_t socket__scnprintf_ippro...
Linux kernel'inin 'tools/perf/trace/beauty/fspick' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/fspick.c * * Copyright (C) 2019, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/log2.h> static size_t fspick__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix) { #i...
Linux kernel'inin 'tools/perf/trace/beauty/signum' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <signal.h> static size_t syscall_arg__scnprintf_signum(char *bf, size_t size, struct syscall_arg *arg) { bool show_prefix = arg->show_string_prefix; const char *prefix = "SIG"; int sig = arg->val; switch (sig) { #define P_SIGNUM(n) case SIG##n: return scnprintf(b...
Linux kernel'inin 'tools/perf/trace/beauty/statx' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/statx.c * * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <sys/types.h> #include <linux/log2.h> static size_t statx__scnprintf_mask(unsigned long mask, char *bf, size_t size, boo...
Linux kernel'inin 'tools/perf/trace/beauty/perf_event_open' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #ifndef PERF_FLAG_FD_NO_GROUP # define PERF_FLAG_FD_NO_GROUP (1UL << 0) #endif #ifndef PERF_FLAG_FD_OUTPUT # define PERF_FLAG_FD_OUTPUT (1UL << 1) #endif #ifndef PERF_FLAG_PID_CGROUP # define PERF_FLAG_PID_CGROUP (1UL << 2) /* pid=cgroup id, per-cpu mode only */ #endif #i...
Linux kernel'inin 'tools/perf/trace/beauty/ioctl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/ioctl.c * * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/kernel.h> /* * FIXME: to support all arches we have to improve this, for * now, to build on older systems witho...
Linux kernel'inin 'tools/perf/trace/beauty/seccomp' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #ifndef SECCOMP_SET_MODE_STRICT #define SECCOMP_SET_MODE_STRICT 0 #endif #ifndef SECCOMP_SET_MODE_FILTER #define SECCOMP_SET_MODE_FILTER 1 #endif static size_t syscall_arg__scnprintf_seccomp_op(char *bf, size_t size, struct syscall_arg *arg) { bool show_prefix = arg->show_str...
Linux kernel'inin 'tools/perf/trace/beauty/clone' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/cone.c * * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/kernel.h> #include <linux/log2.h> #include <sys/types.h> #include <sched.h> static size_t clone__scnprintf_flags(u...
Linux kernel'inin 'tools/perf/trace/beauty/futex_val3' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <linux/futex.h> #ifndef FUTEX_BITSET_MATCH_ANY #define FUTEX_BITSET_MATCH_ANY 0xffffffff #endif static size_t syscall_arg__scnprintf_futex_val3(char *bf, size_t size, struct syscall_arg *arg) { const char *prefix = "FUTEX_BITSET_"; unsigned int bitset = arg->val; ...
Linux kernel'inin 'tools/perf/trace/beauty/renameat' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 // Copyright (C) 2018, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> #include "trace/beauty/beauty.h" static size_t renameat2__scnprintf_flags(unsigned long flags, char *bf, size_t size, bool show_prefix) { #include "trace/beauty/generated/rename_flags_array.c" ...
Linux kernel'inin 'tools/perf/trace/beauty/sockaddr' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 // Copyright (C) 2018, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> #include "trace/beauty/beauty.h" #include <sys/socket.h> #include <sys/types.h> #include <sys/un.h> #include <arpa/inet.h> #include "trace/beauty/generated/sockaddr.c" DEFINE_STRARRAY(socket_famili...
Linux kernel'inin 'tools/perf/trace/beauty/waitid_options' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <sys/types.h> #include <sys/wait.h> static size_t syscall_arg__scnprintf_waitid_options(char *bf, size_t size, struct syscall_arg *arg) { bool show_prefix = arg->show_string_prefix; const char *prefix = "W"; int printed = 0, options = arg->val; #define P...
Linux kernel'inin 'tools/perf/trace/beauty/mount_flags' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/mount_flags.c * * Copyright (C) 2018, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/compiler.h> #include <linux/kernel.h> #include <linux/log2.h> #include <sys/mount.h> static size_t mount__s...
Linux kernel'inin 'tools/perf/trace/beauty/sched_policy' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <sched.h> /* * Not defined anywhere else, probably, just to make sure we * catch future flags */ #define SCHED_POLICY_MASK 0xff #ifndef SCHED_DEADLINE #define SCHED_DEADLINE 6 #endif #ifndef SCHED_RESET_ON_FORK #define SCHED_RESET_ON_FORK 0x40000000 #endif static...
Linux kernel'inin 'tools/perf/trace/beauty/msg_flags' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <sys/types.h> #include <sys/socket.h> #ifndef MSG_PROBE #define MSG_PROBE 0x10 #endif #ifndef MSG_WAITFORONE #define MSG_WAITFORONE 0x10000 #endif #ifndef MSG_BATCH #define MSG_BATCH 0x40000 #endif #ifndef MSG_SOCK_DEVMEM #define MSG_SOCK_DEVMEM 0x2000...
Linux kernel'inin 'tools/perf/trace/beauty/open_flags' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #ifndef O_DIRECT #define O_DIRECT 00040000 #endif #ifndef O_DIRECTORY #define O_DIRECTORY 00200000 #endif #ifndef O_NOATIME #define O_NOATIME 01000000 #endif #ifndef O_TMPFILE #define O_TMPFILE 020000000 #endif...
Linux kernel'inin 'tools/perf/trace/beauty/timespec' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 // Copyright (C) 2022, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> #include "trace/beauty/beauty.h" #include <inttypes.h> #include <time.h> static size_t syscall_arg__scnprintf_augmented_timespec(struct syscall_arg *arg, char *bf, size_t size) { struct timespec *...
Linux kernel'inin 'tools/perf/trace/beauty/futex_op' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <linux/futex.h> #ifndef FUTEX_WAIT_BITSET #define FUTEX_WAIT_BITSET 9 #endif #ifndef FUTEX_WAKE_BITSET #define FUTEX_WAKE_BITSET 10 #endif #ifndef FUTEX_WAIT_REQUEUE_PI #define FUTEX_WAIT_REQUEUE_PI 11 #endif #ifndef FUTEX_CMP_REQUEUE_PI #define FUTEX_CMP_REQUEUE_...
Linux kernel'inin 'tools/perf/trace/beauty/eventfd' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #ifndef EFD_SEMAPHORE #define EFD_SEMAPHORE 1 #endif #ifndef EFD_NONBLOCK #define EFD_NONBLOCK 00004000 #endif #ifndef EFD_CLOEXEC #define EFD_CLOEXEC 02000000 #endif static size_t syscall_arg__scnprintf_eventfd_flags(char *bf, size_t size, struct syscall_arg *arg) { boo...
Linux kernel'inin 'tools/perf/trace/beauty/mmap' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 #include <linux/log2.h> #include "trace/beauty/generated/mmap_prot_array.c" static DEFINE_STRARRAY(mmap_prot, "PROT_"); static size_t mmap__scnprintf_prot(unsigned long prot, char *bf, size_t size, bool show_prefix) { return strarray__scnprintf_flags(&strarray__mmap_pr...
Linux kernel'inin 'tools/perf/trace/beauty/pkey_alloc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: LGPL-2.1 /* * trace/beauty/pkey_alloc.c * * Copyright (C) 2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "trace/beauty/beauty.h" #include <linux/kernel.h> #include <linux/log2.h> size_t strarray__scnprintf_flags(struct strarray *sa, char *bf, size_t siz...