instruction
stringlengths
82
202
input
stringclasses
1 value
output
stringlengths
73
23.9M
Linux işletim sistemi çekirdeği için 'tools/perf/util/threads' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_THREADS_H #define __PERF_THREADS_H #include "hashmap.h" #include "rwsem.h" struct thread; #define THREADS__TABLE_BITS 3 #define THREADS__TABLE_SIZE (1 << THREADS__TABLE_BITS) struct threads_table_entry { /* Key is tid, value is struct thread. */ struct ha...
Linux kernel'inin 'tools/perf/util/syscalltbl' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * System call table mapper * * (C) 2016 Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "syscalltbl.h" #include <stdlib.h> #include <asm/bitsperlong.h> #include <linux/compiler.h> #include <linux/kernel.h> #include <linux/zalloc.h> #include <string.h> #inclu...
Linux işletim sistemi çekirdeği için 'tools/perf/util/cloexec' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_CLOEXEC_H #define __PERF_CLOEXEC_H unsigned long perf_event_open_cloexec_flag(void); #endif /* __PERF_CLOEXEC_H */ ```
Linux kernel'inin 'tools/perf/util/srccode' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Manage printing of source lines * Copyright (c) 2017, Intel Corporation. * Author: Andi Kleen */ #include <linux/list.h> #include <linux/zalloc.h> #include <stdlib.h> #include <sys/mman.h> #include <sys/stat.h> #include <fcntl.h> #include <unistd.h> #include <asser...
Linux kernel'inin 'tools/perf/util/intlist' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Based on intlist.c by: * (c) 2009 Arnaldo Carvalho de Melo <acme@redhat.com> */ #include <errno.h> #include <stdlib.h> #include <linux/compiler.h> #include "intlist.h" static struct rb_node *intlist__node_new(struct rblist *rblist __maybe_unused, const void...
Linux işletim sistemi çekirdeği için 'tools/perf/util/iostat' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * perf iostat * * Copyright (C) 2020, Intel Corporation * * Authors: Alexander Antonov <alexander.antonov@linux.intel.com> */ #ifndef _IOSTAT_H #define _IOSTAT_H #include <subcmd/parse-options.h> #include "util/stat.h" #include "util/parse-events.h" #include "util/...
Linux işletim sistemi çekirdeği için 'tools/perf/util/cgroup' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __CGROUP_H__ #define __CGROUP_H__ #include <linux/compiler.h> #include <linux/refcount.h> #include <linux/rbtree.h> #include "util/env.h" struct option; struct cgroup { struct rb_node node; u64 id; char *name; int fd; refcount_t refcnt; }; extern int ...
Linux kernel'inin 'tools/perf/util/jitdump' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <sys/sysmacros.h> #include <sys/types.h> #include <errno.h> #include <libgen.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <fcntl.h> #include <unistd.h> #include <inttypes.h> #include <byteswap.h> #include <sys/stat.h> #include <sys/mman.h> #inc...
Linux işletim sistemi çekirdeği için 'tools/perf/util/powerpc-vpadtl' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * VPA DTL PMU Support */ #ifndef INCLUDE__PERF_POWERPC_VPADTL_H__ #define INCLUDE__PERF_POWERPC_VPADTL_H__ enum { POWERPC_VPADTL_TYPE, VPADTL_AUXTRACE_PRIV_MAX, }; #define VPADTL_AUXTRACE_PRIV_SIZE (VPADTL_AUXTRACE_PRIV_MAX * sizeof(u64)) union perf_event; struct p...
Linux işletim sistemi çekirdeği için 'tools/perf/util/intel-pt' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * intel_pt.h: Intel Processor Trace support * Copyright (c) 2013-2015, Intel Corporation. */ #ifndef INCLUDE__PERF_INTEL_PT_H__ #define INCLUDE__PERF_INTEL_PT_H__ #define INTEL_PT_PMU_NAME "intel_pt" enum { INTEL_PT_PMU_TYPE, INTEL_PT_TIME_SHIFT, INTEL_PT_TIM...
Linux kernel'inin 'tools/perf/util/rblist' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Based on strlist.c by: * (c) 2009 Arnaldo Carvalho de Melo <acme@redhat.com> */ #include <errno.h> #include <stdio.h> #include <stdlib.h> #include "rblist.h" int rblist__add_node(struct rblist *rblist, const void *new_entry) { struct rb_node **p = &rblist->entri...
Linux kernel'inin 'tools/perf/util/memswap' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <byteswap.h> #include "memswap.h" #include <linux/types.h> void mem_bswap_32(void *src, int byte_size) { u32 *m = src; while (byte_size > 0) { *m = bswap_32(*m); byte_size -= sizeof(u32); ++m; } } void mem_bswap_64(void *src, int byte_size) { u64 *m = src; ...
Linux işletim sistemi çekirdeği için 'tools/perf/util/machine' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_MACHINE_H #define __PERF_MACHINE_H #include <sys/types.h> #include <linux/rbtree.h> #include "maps.h" #include "dsos.h" #include "rwsem.h" #include "threads.h" struct addr_location; struct branch_stack; struct dso; struct dso_id; struct evsel; struct perf_sam...
Linux kernel'inin 'tools/perf/util/db-export' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * db-export.c: Support for exporting data suitable for import to a database * Copyright (c) 2014, Intel Corporation. */ #include <errno.h> #include <stdlib.h> #include "dso.h" #include "evsel.h" #include "machine.h" #include "thread.h" #include "comm.h" #include "sy...
Linux işletim sistemi çekirdeği için 'tools/perf/util/parse-regs-options' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_PARSE_REGS_OPTIONS_H #define _PERF_PARSE_REGS_OPTIONS_H 1 struct option; int parse_user_regs(const struct option *opt, const char *str, int unset); int parse_intr_regs(const struct option *opt, const char *str, int unset); #endif /* _PERF_PARSE_REGS_OPTIONS_H */...
Linux kernel'inin 'tools/perf/util/tsc' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <inttypes.h> #include <string.h> #include <linux/compiler.h> #include <linux/perf_event.h> #include <linux/stddef.h> #include <linux/types.h> #include <asm/barrier.h> #include "event.h" #include "synthetic-events.h" #include "debug.h" #include "tsc...
Linux işletim sistemi çekirdeği için 'tools/perf/util/expr' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PARSE_CTX_H #define PARSE_CTX_H 1 struct hashmap; struct metric_ref; struct expr_scanner_ctx { char *user_requested_cpu_list; int runtime; bool system_wide; bool is_test; }; struct expr_parse_ctx { struct hashmap *ids; struct expr_scanner_ctx sctx; }; struct...
Linux işletim sistemi çekirdeği için 'tools/perf/util/svghelper' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_SVGHELPER_H #define __PERF_SVGHELPER_H #include <linux/types.h> struct perf_env; void open_svg(const char *filename, int cpus, int rows, u64 start, u64 end); void svg_ubox(int Yslot, u64 start, u64 end, double height, const char *type, int fd, int err, int m...
Linux kernel'inin 'tools/perf/util/mmap' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2011-2017, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> * * Parts came from evlist.c builtin-{top,stat,record}.c, see those files for further * copyright notes. */ #include <sys/mman.h> #include <errno.h> #include <inttypes.h> #include <a...
Linux kernel'inin 'tools/perf/util/lock-contention' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "debug.h" #include "env.h" #include "lock-contention.h" #include "machine.h" #include "symbol.h" #include <limits.h> #include <string.h> #include <linux/hash.h> #include <linux/zalloc.h> #define __lockhashfn(key) hash_long((unsigned long)key, LOCKHASH_BITS) #define l...
Linux işletim sistemi çekirdeği için 'tools/perf/util/debug' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* For debugging general purposes */ #ifndef __PERF_DEBUG_H #define __PERF_DEBUG_H #include <stdarg.h> #include <stdbool.h> #include <stdio.h> #include <linux/compiler.h> extern int verbose; extern int debug_kmaps; extern int debug_peo_args; extern bool quiet, dump_trace; e...
Linux işletim sistemi çekirdeği için 'tools/perf/util/hashmap' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */ /* * Generic non-thread safe hash map implementation. * * Copyright (c) 2019 Facebook */ #ifndef __LIBBPF_HASHMAP_H #define __LIBBPF_HASHMAP_H #include <stdbool.h> #include <stddef.h> #include <limits.h> static inline size_t hash_bits(size_t h, int b...
Linux kernel'inin 'tools/perf/util/probe-event' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * probe-event.c : perf-probe definition to probe_events format converter * * Written by Masami Hiramatsu <mhiramat@redhat.com> */ #include <inttypes.h> #include <sys/utsname.h> #include <sys/types.h> #include <sys/stat.h> #include <fcntl.h> #include <errno.h> #i...
Linux işletim sistemi çekirdeği için 'tools/perf/util/evsel_fprintf' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c // SPDX-License-Identifier: GPL-2.0 #ifndef __PERF_EVSEL_FPRINTF_H #define __PERF_EVSEL_FPRINTF_H 1 #include <stdio.h> #include <stdbool.h> struct evsel; struct perf_attr_details { bool freq; bool verbose; bool event_group; bool force; bool trace_fields; }; int evsel__fprintf(struct evsel *evsel, struct p...
Linux kernel'inin 'tools/perf/util/rwsem' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "util.h" #include "rwsem.h" #if RWS_ERRORCHECK #include "mutex.h" #endif int init_rwsem(struct rw_semaphore *sem) { #if RWS_ERRORCHECK mutex_init(&sem->mtx); return 0; #else return pthread_rwlock_init(&sem->lock, NULL); #endif } int exit_rwsem(struct rw_semaphore ...
Linux kernel'inin 'tools/perf/util/btf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Arnaldo Carvalho de Melo <acme@redhat.com> * * Copyright (C) 2024, Red Hat, Inc */ #include <bpf/btf.h> #include <util/btf.h> #include <string.h> const struct btf_member *__btf_type__find_member_by_name(struct btf *btf, int type_id, const char *member_name) { ...
Linux kernel'inin 'tools/perf/util/symbol-minimal' alt sistemi için gerekli C kaynak kodunu implemente et.
```c #include "dso.h" #include "symbol.h" #include "symsrc.h" #include <errno.h> #include <unistd.h> #include <fcntl.h> #include <string.h> #include <stdlib.h> #include <byteswap.h> #include <sys/stat.h> #include <linux/zalloc.h> #include <internal/lib.h> static bool check_need_swap(int file_endian) { const int data...
Linux kernel'inin 'tools/perf/util/s390-cpumsf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright IBM Corp. 2018 * Auxtrace support for s390 CPU-Measurement Sampling Facility * * Author(s): Thomas Richter <tmricht@linux.ibm.com> * * Auxiliary traces are collected during 'perf record' using rbd000 event. * Several PERF_RECORD_XXX are generated during re...
Linux kernel'inin 'tools/perf/util/callchain' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Copyright (C) 2009-2011, Frederic Weisbecker <fweisbec@gmail.com> * * Handle the callchains from the stream in an ad-hoc radix tree and then * sort them in an rbtree. * * Using a radix for code path provides a fast retrieval and factorizes * memory use. Also that let...
Linux kernel'inin 'tools/perf/util/addr_location' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "addr_location.h" #include "map.h" #include "maps.h" #include "thread.h" void addr_location__init(struct addr_location *al) { al->thread = NULL; al->map = NULL; al->sym = NULL; al->srcline = NULL; al->addr = 0; al->level = 0; al->filtered = 0; al->cpumode = 0; ...
Linux işletim sistemi çekirdeği için 'tools/perf/util/intel-tpebs' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * intel_tpebs.h: Intel TEPBS support */ #ifndef __INTEL_TPEBS_H #define __INTEL_TPEBS_H struct evlist; struct evsel; enum tpebs_mode { TPEBS_MODE__MEAN, TPEBS_MODE__MIN, TPEBS_MODE__MAX, TPEBS_MODE__LAST, }; extern bool tpebs_recording; extern enum tpebs_mode...
Linux kernel'inin 'tools/perf/util/maps' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <stdlib.h> #include <linux/zalloc.h> #include "debug.h" #include "dso.h" #include "map.h" #include "maps.h" #include "rwsem.h" #include "thread.h" #include "ui/ui.h" #include "unwind.h" #include "unwind-libdw.h" #include <internal/rc_check.h> /* * L...
Linux işletim sistemi çekirdeği için 'tools/perf/util/session' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_SESSION_H #define __PERF_SESSION_H #include "trace-event.h" #include "event.h" #include "header.h" #include "machine.h" #include "data.h" #include "ordered-events.h" #include "util/compress.h" #include <linux/kernel.h> #include <linux/rbtree.h> #include <linux...
Linux kernel'inin 'tools/perf/util/session' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <signal.h> #include <inttypes.h> #include <linux/err.h> #include <linux/kernel.h> #include <linux/zalloc.h> #include <api/fs/fs.h> #include <byteswap.h> #include <unistd.h> #include <sys/types.h> #include <sys/mman.h> #include <perf/cpumap.h> #includ...
Linux kernel'inin 'tools/perf/util/expr' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <stdbool.h> #include <assert.h> #include <errno.h> #include <stdlib.h> #include <string.h> #include "metricgroup.h" #include "debug.h" #include "evlist.h" #include "expr.h" #include "smt.h" #include "tool_pmu.h" #include <util/expr-bison.h> #include <util/expr-flex.h> #...
Linux kernel'inin 'tools/perf/util/cs-etm-base' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * File for any parts of the Coresight decoding that don't require * OpenCSD. */ #include <errno.h> #include <inttypes.h> #include "cs-etm.h" static const char * const cs_etm_global_header_fmts[] = { [CS_HEADER_VERSION] = " Header version %llx\n", [CS_PMU_TYPE_...
Linux kernel'inin 'tools/perf/util/levenshtein' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "levenshtein.h" #include <errno.h> #include <stdlib.h> #include <string.h> /* * This function implements the Damerau-Levenshtein algorithm to * calculate a distance between strings. * * Basically, it says how many letters need to be swapped, substituted, * deleted...
Linux kernel'inin 'tools/perf/util/sharded_mutex' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "sharded_mutex.h" #include <stdlib.h> struct sharded_mutex *sharded_mutex__new(size_t num_shards) { struct sharded_mutex *result; size_t size; unsigned int bits; for (bits = 0; ((size_t)1 << bits) < num_shards; bits++) ; size = sizeof(*result) + sizeof(struct...
Linux işletim sistemi çekirdeği için 'tools/perf/util/unwind' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __UNWIND_H #define __UNWIND_H #include <linux/compiler.h> #include <linux/types.h> #include "util/map_symbol.h" struct maps; struct perf_sample; struct thread; struct unwind_entry { struct map_symbol ms; u64 ip; }; typedef int (*unwind_entry_cb_t)(struct unwi...
Linux kernel'inin 'tools/perf/util/bpf_kwork' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * bpf_kwork.c * * Copyright (c) 2022 Huawei Inc, Yang Jihong <yangjihong1@huawei.com> */ #include <time.h> #include <fcntl.h> #include <signal.h> #include <stdio.h> #include <unistd.h> #include <linux/time64.h> #include "util/debug.h" #include "util/evsel.h" #include...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf-filter' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PERF_UTIL_BPF_FILTER_H #define PERF_UTIL_BPF_FILTER_H #include <linux/list.h> #include "bpf_skel/sample-filter.h" #include "util/debug.h" struct perf_bpf_filter_expr { struct list_head list; struct list_head groups; enum perf_bpf_filter_op op; int part; enum p...
Linux kernel'inin 'tools/perf/util/addr2line' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "addr2line.h" #include "debug.h" #include "dso.h" #include "string2.h" #include "srcline.h" #include "symbol.h" #include "symbol_conf.h" #include <api/io.h> #include <linux/zalloc.h> #include <subcmd/run-command.h> #include <inttypes.h> #include <signal.h> #include <s...
Linux işletim sistemi çekirdeği için 'tools/perf/util/capstone' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_CAPSTONE_H #define __PERF_CAPSTONE_H #include <stdbool.h> #include <stdint.h> #include <stdio.h> #include <stdlib.h> #include <linux/compiler.h> #include <linux/types.h> struct annotate_args; struct machine; struct symbol; struct thread; #ifdef HAVE_LIBCAPST...
Linux işletim sistemi çekirdeği için 'tools/perf/util/mmap' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef __PERF_MMAP_H #define __PERF_MMAP_H 1 #include <internal/mmap.h> #include <linux/types.h> #include <linux/bitops.h> #include <perf/cpumap.h> #ifdef HAVE_AIO_SUPPORT #include <aio.h> #endif #include "auxtrace.h" #include "util/compress.h" struct aiocb; struct mmap_cpu_mask { unsigned long *bits; size_t...
Linux kernel'inin 'tools/perf/util/stat-display' alt sistemi için gerekli C kaynak kodunu implemente et.
```c #include <stdlib.h> #include <stdio.h> #include <inttypes.h> #include <linux/string.h> #include <linux/time64.h> #include <math.h> #include <perf/cpumap.h> #include "color.h" #include "counts.h" #include "debug.h" #include "evlist.h" #include "evsel.h" #include "stat.h" #include "top.h" #include "thread_map.h" #in...
Linux kernel'inin 'tools/perf/util/evsel_fprintf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <inttypes.h> #include <stdio.h> #include <stdbool.h> #include "util/evlist.h" #include "evsel.h" #include "util/evsel_fprintf.h" #include "util/event.h" #include "callchain.h" #include "map.h" #include "strlist.h" #include "symbol.h" #include "srcline.h" #include "dso.h...
Linux işletim sistemi çekirdeği için 'tools/perf/util/sample' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_SAMPLE_H #define __PERF_SAMPLE_H #include <linux/perf_event.h> #include <linux/types.h> struct evsel; struct machine; struct thread; /* number of register is bound by the number of bits in regs_dump::mask (64) */ #define PERF_SAMPLE_REGS_CACHE_SIZE (8 * size...
Linux kernel'inin 'tools/perf/util/comm' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "comm.h" #include <errno.h> #include <string.h> #include <internal/rc_check.h> #include <linux/refcount.h> #include <linux/zalloc.h> #include <tools/libc_compat.h> // reallocarray #include "rwsem.h" DECLARE_RC_STRUCT(comm_str) { refcount_t refcnt; char str[]; }; st...
Linux işletim sistemi çekirdeği için 'tools/perf/util/syscalltbl' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_SYSCALLTBL_H #define __PERF_SYSCALLTBL_H const char *syscalltbl__name(int e_machine, int id); int syscalltbl__id(int e_machine, const char *name); int syscalltbl__num_idx(int e_machine); int syscalltbl__id_at_idx(int e_machine, int idx); int syscalltbl__strgl...
Linux işletim sistemi çekirdeği için 'tools/perf/util/llvm' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_LLVM_H #define __PERF_LLVM_H #include <stdbool.h> #include <linux/types.h> struct annotate_args; struct dso; struct inline_node; struct symbol; int llvm__addr2line(const char *dso_name, u64 addr, char **file, unsigned int *line, struct dso *dso, bool unw...
Linux kernel'inin 'tools/perf/util/build-id' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * build-id.c * * build-id support * * Copyright (C) 2009, 2010 Red Hat Inc. * Copyright (C) 2009, 2010 Arnaldo Carvalho de Melo <acme@redhat.com> */ #include "util.h" // lsdir(), mkdir_p(), rm_rf() #include <dirent.h> #include <errno.h> #include <stdio.h> #include <sys...
Linux kernel'inin 'tools/perf/util/libbfd' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "libbfd.h" #include "annotate.h" #include "bpf-event.h" #include "bpf-utils.h" #include "debug.h" #include "dso.h" #include "env.h" #include "map.h" #include "srcline.h" #include "symbol.h" #include "symbol_conf.h" #include "util.h" #include <tools/dis-asm-compat.h> #if...
Linux kernel'inin 'tools/perf/util/fncache' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* Manage a cache of file names' existence */ #include <pthread.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <linux/compiler.h> #include "fncache.h" #include "hashmap.h" static struct hashmap *fncache; static size_t fncache__hash(long key, void ...
Linux kernel'inin 'tools/perf/util/tracepoint' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "tracepoint.h" #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <sys/param.h> #include <unistd.h> #include <api/fs/tracing_path.h> #include "fncache.h" int tp_event_has_id(const char *dir_path, struct dirent *evt_dir) { char evt_...
Linux işletim sistemi çekirdeği için 'tools/perf/util/hist' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_HIST_H #define __PERF_HIST_H #include <linux/rbtree.h> #include <linux/types.h> #include "callchain.h" #include "color.h" #include "events_stats.h" #include "evsel.h" #include "map_symbol.h" #include "mem-events.h" #include "mutex.h" #include "sample.h" #inclu...
Linux işletim sistemi çekirdeği için 'tools/perf/util/record' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_RECORD_H #define _PERF_RECORD_H #include <time.h> #include <stdbool.h> #include <linux/types.h> #include <linux/stddef.h> #include <linux/perf_event.h> #include "util/target.h" struct option; struct record_opts { struct target target; bool inherit_sta...
Linux işletim sistemi çekirdeği için 'tools/perf/util/print-events' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_PRINT_EVENTS_H #define __PERF_PRINT_EVENTS_H #include <linux/perf_event.h> #include <linux/types.h> #include <stdbool.h> struct event_symbol; struct print_callbacks { void (*print_start)(void *print_state); void (*print_end)(void *print_state); void (*pri...
Linux işletim sistemi çekirdeği için 'tools/perf/util/target' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_TARGET_H #define _PERF_TARGET_H #include <stdbool.h> #include <sys/types.h> struct target { const char *pid; const char *tid; const char *cpu_list; const char *bpf_str; bool system_wide; bool uses_mmap; bool default_per_cpu; bool...
Linux işletim sistemi çekirdeği için 'tools/perf/util/string2' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PERF_STRING_H #define PERF_STRING_H #include <linux/string.h> #include <linux/types.h> #include <sys/types.h> // pid_t #include <stddef.h> #include <string.h> extern const char *graph_dotted_line; extern const char *dots; s64 perf_atoll(const char *str); bool strgl...
Linux işletim sistemi çekirdeği için 'tools/perf/util/thread' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_THREAD_H #define __PERF_THREAD_H #include <linux/refcount.h> #include <linux/list.h> #include <stdio.h> #include <unistd.h> #include <sys/types.h> #include "srccode.h" #include "symbol_conf.h" #include <strlist.h> #include <intlist.h> #include "rwsem.h" #inclu...
Linux işletim sistemi çekirdeği için 'tools/perf/util/ftrace' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef __PERF_FTRACE_H__ #define __PERF_FTRACE_H__ #include <linux/list.h> #include "target.h" struct evlist; struct hashamp; struct stats; struct perf_ftrace { struct evlist *evlist; struct target target; const char *tracer; struct list_head filters; struct list_head notrace; struct list_head graph_...
Linux kernel'inin 'tools/perf/util/top' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-only /* * Copyright (C) 2011, Red Hat Inc, Arnaldo Carvalho de Melo <acme@redhat.com> * * Refactored from builtin-top.c, see that files for further copyright notes. */ #include "event.h" #include "evlist.h" #include "evsel.h" #include "parse-events.h" #include "symbol.h" #i...
Linux kernel'inin 'tools/perf/util/find-map' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 static int find_map(void **start, void **end, const char *name) { FILE *maps; char line[128]; int found = 0; maps = fopen("/proc/self/maps", "r"); if (!maps) { fprintf(stderr, "cannot open maps\n"); return -1; } while (!found && fgets(line, sizeof(line), maps)) { ...
Linux işletim sistemi çekirdeği için 'tools/perf/util/kwork' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef PERF_UTIL_KWORK_H #define PERF_UTIL_KWORK_H #include "perf.h" #include "util/tool.h" #include "util/time-utils.h" #include <linux/bitmap.h> #include <linux/list.h> #include <linux/rbtree.h> #include <linux/types.h> struct perf_sample; struct perf_session; enum kwork_class_type { KWORK_CLASS_IRQ, KWOR...
Linux işletim sistemi çekirdeği için 'tools/perf/util/vdso' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_VDSO__ #define __PERF_VDSO__ #include <linux/types.h> #include <string.h> #include <stdbool.h> #define VDSO__MAP_NAME "[vdso]" #define DSO__NAME_VDSO "[vdso]" #define DSO__NAME_VDSO32 "[vdso32]" #define DSO__NAME_VDSOX32 "[vdsox32]" static inline bool i...
Linux kernel'inin 'tools/perf/util/rlimit' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* SPDX-License-Identifier: LGPL-2.1 */ #include <errno.h> #include "util/debug.h" #include "util/rlimit.h" #include <sys/time.h> #include <sys/resource.h> /* * Bump the memlock so that we can get bpf maps of a reasonable size, * like the ones used with 'perf trace' and with 'perf test bpf', * improve this to...
Linux işletim sistemi çekirdeği için 'tools/perf/util/path' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_PATH_H #define _PERF_PATH_H #include <stddef.h> #include <stdbool.h> struct dirent; int path__join(char *bf, size_t size, const char *path1, const char *path2); int path__join3(char *bf, size_t size, const char *path1, const char *path2, const char *path3); ...
Linux işletim sistemi çekirdeği için 'tools/perf/util/print_binary' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PERF_PRINT_BINARY_H #define PERF_PRINT_BINARY_H #include <stddef.h> #include <stdio.h> enum binary_printer_ops { BINARY_PRINT_DATA_BEGIN, BINARY_PRINT_LINE_BEGIN, BINARY_PRINT_ADDR, BINARY_PRINT_NUM_DATA, BINARY_PRINT_NUM_PAD, BINARY_PRINT_SEP, BINARY_PRINT_C...
Linux kernel'inin 'tools/perf/util/stat' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include <errno.h> #include <linux/err.h> #include <inttypes.h> #include <math.h> #include <string.h> #include "counts.h" #include "cpumap.h" #include "debug.h" #include "header.h" #include "stat.h" #include "session.h" #include "target.h" #include "evlist.h" #include "evsel.h" ...
Linux işletim sistemi çekirdeği için 'tools/perf/util/evsel' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_EVSEL_H #define __PERF_EVSEL_H 1 #include <linux/list.h> #include <stdbool.h> #include <sys/types.h> #include <linux/perf_event.h> #include <linux/types.h> #include <internal/evsel.h> #include <perf/evsel.h> #include "symbol_conf.h" #include "pmus.h" #include ...
Linux kernel'inin 'tools/perf/util/map_symbol' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "map_symbol.h" #include "maps.h" #include "map.h" #include "thread.h" void map_symbol__exit(struct map_symbol *ms) { thread__zput(ms->thread); map__zput(ms->map); } void addr_map_symbol__exit(struct addr_map_symbol *ams) { map_symbol__exit(&ams->ms); } void map_sy...
Linux işletim sistemi çekirdeği için 'tools/perf/util/units' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef PERF_UNIT_H #define PERF_UNIT_H #include <stddef.h> #include <linux/types.h> struct parse_tag { char tag; int mult; }; unsigned long parse_tag_value(const char *str, struct parse_tag *tags); double convert_unit_double(double value, char *unit); unsigned long co...
Linux işletim sistemi çekirdeği için 'tools/perf/util/annotate-data' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PERF_ANNOTATE_DATA_H #define _PERF_ANNOTATE_DATA_H #include <errno.h> #include <linux/compiler.h> #include <linux/rbtree.h> #include <linux/types.h> #include "dwarf-regs.h" #include "annotate.h" #ifdef HAVE_LIBDW_SUPPORT #include "debuginfo.h" #endif struct annota...
Linux işletim sistemi çekirdeği için 'tools/perf/util/values' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_VALUES_H #define __PERF_VALUES_H #include <stdio.h> #include <linux/types.h> struct evsel; struct perf_read_values { int threads; int threads_max; u32 *pid, *tid; int num_counters; int counters_max; struct evsel **counters; u64 **value; }; int perf_r...
Linux kernel'inin 'tools/perf/util/config' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * config.c * * Helper functions for parsing config items. * Originally copied from GIT source. * * Copyright (C) Linus Torvalds, 2005 * Copyright (C) Johannes Schindelin, 2005 * */ #include <errno.h> #include <sys/param.h> #include "cache.h" #include "callchain.h" #i...
Linux işletim sistemi çekirdeği için 'tools/perf/util/probe-finder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef _PROBE_FINDER_H #define _PROBE_FINDER_H #include <stdbool.h> #include "intlist.h" #include "build-id.h" #include "probe-event.h" #include <linux/ctype.h> #define MAX_PROBE_BUFFER 1024 #define MAX_PROBES 128 #define MAX_PROBE_ARGS 128 #define PROBE_ARG_VARS "$v...
Linux kernel'inin 'tools/perf/util/annotate-data' alt sistemi için gerekli C kaynak kodunu implemente et.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Convert sample address to data type using DWARF debug info. * * Written by Namhyung Kim <namhyung@kernel.org> */ #include <errno.h> #include <stdio.h> #include <stdlib.h> #include <inttypes.h> #include <linux/zalloc.h> #include "annotate.h" #include "annotate-data.h...
Linux kernel'inin 'tools/perf/util/util' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "perf.h" #include "util.h" #include "debug.h" #include "event.h" #include <api/fs/fs.h> #include <sys/stat.h> #include <sys/utsname.h> #include <dirent.h> #include <fcntl.h> #include <inttypes.h> #include <signal.h> #include <stdio.h> #include <stdlib.h> #include <strin...
Linux kernel'inin 'tools/perf/util/debuginfo' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0-or-later /* * DWARF debug information handling code. Copied from probe-finder.c. * * Written by Masami Hiramatsu <mhiramat@redhat.com> */ #include <errno.h> #include <fcntl.h> #include <stdio.h> #include <stdlib.h> #include <string.h> #include <unistd.h> #include <linux/za...
Linux işletim sistemi çekirdeği için 'tools/perf/util/clockid' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_CLOCKID_H #define __PERF_CLOCKID_H #include <time.h> struct option; int parse_clockid(const struct option *opt, const char *str, int unset); const char *clockid_name(clockid_t clk_id); #endif ```
Linux işletim sistemi çekirdeği için 'tools/perf/util/auxtrace' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0-only */ /* * auxtrace.h: AUX area trace support * Copyright (c) 2013-2015, Intel Corporation. */ #ifndef __PERF_AUXTRACE_H #define __PERF_AUXTRACE_H #include <sys/types.h> #include <stdio.h> // FILE #include <linux/perf_event.h> #include <linux/types.h> #include <asm/barrie...
Linux işletim sistemi çekirdeği için 'tools/perf/util/parse-events' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_PARSE_EVENTS_H #define __PERF_PARSE_EVENTS_H /* * Parse symbolic events/counts passed in as options: */ #include <linux/list.h> #include <stdbool.h> #include <linux/types.h> #include <linux/perf_event.h> #include <string.h> #include <sys/types.h> struct evs...
Linux işletim sistemi çekirdeği için 'tools/perf/util/strfilter' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_STRFILTER_H #define __PERF_STRFILTER_H /* General purpose glob matching filter */ #include <linux/list.h> #include <stdbool.h> /* A node of string filter */ struct strfilter_node { struct strfilter_node *l; /* Tree left branch (for &,|) */ struct strfilter_...
Linux işletim sistemi çekirdeği için 'tools/perf/util/evlist' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_EVLIST_H #define __PERF_EVLIST_H 1 #include <linux/compiler.h> #include <linux/kernel.h> #include <linux/refcount.h> #include <linux/list.h> #include <api/fd/array.h> #include <internal/evlist.h> #include <internal/evsel.h> #include <perf/evlist.h> #include "a...
Linux kernel'inin 'tools/perf/util/libdw' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 #include "dso.h" #include "libdw.h" #include "srcline.h" #include "symbol.h" #include "dwarf-aux.h" #include <fcntl.h> #include <unistd.h> #include <elfutils/libdwfl.h> static const Dwfl_Callbacks offline_callbacks = { .find_debuginfo = dwfl_standard_find_debuginfo, .section_...
Linux işletim sistemi çekirdeği için 'tools/perf/util/arm64-frame-pointer-unwind-support' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_ARM_FRAME_POINTER_UNWIND_SUPPORT_H #define __PERF_ARM_FRAME_POINTER_UNWIND_SUPPORT_H #include <linux/types.h> struct perf_sample; struct thread; u64 get_leaf_frame_caller_aarch64(struct perf_sample *sample, struct thread *thread, int user_idx); #endif /* __...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_counter' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ #ifndef __PERF_BPF_COUNTER_H #define __PERF_BPF_COUNTER_H 1 struct evsel; struct target; #ifdef HAVE_BPF_SKEL typedef int (*bpf_counter_evsel_op)(struct evsel *evsel); typedef int (*bpf_counter_evsel_target_op)(struct evsel *evsel, struct target *target); typedef i...
Linux işletim sistemi çekirdeği için 'tools/perf/util/arm-spe-decoder/arm-spe-decoder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * arm_spe_decoder.h: Arm Statistical Profiling Extensions support * Copyright (c) 2019-2020, Arm Ltd. */ #ifndef INCLUDE__ARM_SPE_DECODER_H__ #define INCLUDE__ARM_SPE_DECODER_H__ #include <stdbool.h> #include <stddef.h> #include <stdint.h> #include "arm-spe-pkt-decod...
Linux kernel'inin 'tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Arm Statistical Profiling Extensions (SPE) support * Copyright (c) 2017-2018, Arm Ltd. */ #include <stdio.h> #include <string.h> #include <endian.h> #include <byteswap.h> #include <linux/bitops.h> #include <stdarg.h> #include <linux/kernel.h> #include <linux/unaligned.h...
Linux kernel'inin 'tools/perf/util/arm-spe-decoder/arm-spe-decoder' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * arm_spe_decoder.c: ARM SPE support */ #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include <errno.h> #include <inttypes.h> #include <stdbool.h> #include <string.h> #include <stdint.h> #include <stdlib.h> #include <linux/bitops.h> #include <linux/compiler.h> #include <...
Linux işletim sistemi çekirdeği için 'tools/perf/util/arm-spe-decoder/arm-spe-pkt-decoder' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c /* SPDX-License-Identifier: GPL-2.0 */ /* * Arm Statistical Profiling Extensions (SPE) support * Copyright (c) 2017-2018, Arm Ltd. */ #ifndef INCLUDE__ARM_SPE_PKT_DECODER_H__ #define INCLUDE__ARM_SPE_PKT_DECODER_H__ #include <linux/bitfield.h> #include <stddef.h> #include <stdint.h> #define ARM_SPE_PKT_DESC_...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_skel/lock_data' 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) /* Data structures shared between BPF and tools. */ #ifndef UTIL_BPF_SKEL_LOCK_DATA_H #define UTIL_BPF_SKEL_LOCK_DATA_H struct owner_tracing_data { u32 pid; // Who has the lock. u32 count; // How many waiters for this lock. u64 timestamp; // The time w...
Linux kernel'inin 'tools/perf/util/bpf_skel/off_cpu.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> /* task->flags for off-cpu analysis */ #define PF_KTHREAD 0x00200000 /* I am a kernel thread */ /* task->state f...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_skel/bperf_cgroup' 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) */ /* Data structures shared between BPF and tools. */ #ifndef __BPERF_CGROUP_H #define __BPERF_CGROUP_H // These constants impact code size of bperf_cgroup.bpf.c that may result in BPF // verifier issues. They are exposed to control the size and also to ...
Linux kernel'inin 'tools/perf/util/bpf_skel/bpf_prog_profiler.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) 2020 Facebook #include "vmlinux.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> /* map of perf event fds, num_cpu * num_metric entries */ struct { __uint(type, BPF_MAP_TYPE_PERF_EVENT_ARRAY); __uint(key_size, sizeof(__u32))...
Linux kernel'inin 'tools/perf/util/bpf_skel/bperf_leader.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> struct { __uint(type, BPF_MAP_TYPE_PERF_EVENT_ARRAY); __uint(key_size, sizeof(__u32)); __uint(value_size, sizeof(int)); __uint(map_flags, BPF...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_skel/sample-filter' yapılarının ve prototiplerinin bulunduğu C Header dosyasını yaz.
```c #ifndef PERF_UTIL_BPF_SKEL_SAMPLE_FILTER_H #define PERF_UTIL_BPF_SKEL_SAMPLE_FILTER_H #define MAX_FILTERS 64 #define MAX_IDX_HASH (16 * 1024) #define MAX_EVT_HASH (1024 * 1024) /* supported filter operations */ enum perf_bpf_filter_op { PBF_OP_EQ, PBF_OP_NEQ, PBF_OP_GT, PBF_OP_GE, PBF_OP_LT, PBF_OP_LE,...
Linux kernel'inin 'tools/perf/util/bpf_skel/syscall_summary.bpf' alt sistemi için gerekli C kaynak kodunu implemente et.
```c // SPDX-License-Identifier: GPL-2.0 /* * Trace raw_syscalls tracepoints to collect system call statistics. */ #include "vmlinux.h" #include "syscall_summary.h" #include <bpf/bpf_helpers.h> #include <bpf/bpf_tracing.h> #include <bpf/bpf_core_read.h> /* This is to calculate a delta between sys-enter and sys-exi...
Linux kernel'inin 'tools/perf/util/bpf_skel/kwork_top.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> #include <bpf/bpf_core_read.h> /* * This should be in sync with "util/kwork.h" */ enum kwork_class_type { KWORK_CLASS_IRQ, KWORK_CLASS_SOFTIR...
Linux işletim sistemi çekirdeği için 'tools/perf/util/bpf_skel/syscall_summary' 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) /* Data structures shared between BPF and tools. */ #ifndef UTIL_BPF_SKEL_SYSCALL_SUMMARY_H #define UTIL_BPF_SKEL_SYSCALL_SUMMARY_H enum syscall_aggr_mode { SYSCALL_AGGR_THREAD, SYSCALL_AGGR_CPU, SYSCALL_AGGR_CGROUP, }; struct syscall_key { u64 cgrou...