Quellcodebibliothek Statistik Leitseite products/sources/formale Sprachen/C/Linux/tools/testing/selftests/bpf/progs/   (Open Source Betriebssystem Version 6.17.9©)  Datei vom 24.10.2025 mit Größe 1 kB image not shown  

Quelle  stacktrace_map_skip.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
#include <vmlinux.h>
#include <bpf/bpf_helpers.h>

#define TEST_STACK_DEPTH 2
#define TEST_MAX_ENTRIES 16384

typedef __u64 stack_trace_t[TEST_STACK_DEPTH];

struct {
 __uint(type, BPF_MAP_TYPE_STACK_TRACE);
 __uint(max_entries, TEST_MAX_ENTRIES);
 __type(key, __u32);
 __type(value, stack_trace_t);
} stackmap SEC(".maps");

struct {
 __uint(type, BPF_MAP_TYPE_HASH);
 __uint(max_entries, TEST_MAX_ENTRIES);
 __type(key, __u32);
 __type(value, __u32);
} stackid_hmap SEC(".maps");

struct {
 __uint(type, BPF_MAP_TYPE_ARRAY);
 __uint(max_entries, TEST_MAX_ENTRIES);
 __type(key, __u32);
 __type(value, stack_trace_t);
} stack_amap SEC(".maps");

int pid = 0;
int control = 0;
int failed = 0;

SEC("tracepoint/sched/sched_switch")
int oncpu(struct trace_event_raw_sched_switch *ctx)
{
 __u32 max_len = TEST_STACK_DEPTH * sizeof(__u64);
 __u32 key = 0, val = 0;
 __u64 *stack_p;

 if (pid != (bpf_get_current_pid_tgid() >> 32))
  return 0;

 if (control)
  return 0;

 /* it should allow skipping whole buffer size entries */
 key = bpf_get_stackid(ctx, &stackmap, TEST_STACK_DEPTH);
 if ((int)key >= 0) {
  /* The size of stackmap and stack_amap should be the same */
  bpf_map_update_elem(&stackid_hmap, &key, &val, 0);
  stack_p = bpf_map_lookup_elem(&stack_amap, &key);
  if (stack_p) {
   bpf_get_stack(ctx, stack_p, max_len, TEST_STACK_DEPTH);
   /* it wrongly skipped all the entries and filled zero */
   if (stack_p[0] == 0)
    failed = 1;
  }
 } else {
  /* old kernel doesn't support skipping that many entries */
  failed = 2;
 }

 return 0;
}

char _license[] SEC("license") = "GPL";

Messung V0.5
C=93 H=100 G=96

¤ Dauer der Verarbeitung: 0.10 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.