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

Quelle  ringbuf_bench.c

  Sprache: C
 

// SPDX-License-Identifier: GPL-2.0
// Copyright (c) 2020 Facebook

#include <linux/bpf.h>
#include <stdint.h>
#include <bpf/bpf_helpers.h>
#include "bpf_misc.h"

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

struct {
 __uint(type, BPF_MAP_TYPE_RINGBUF);
} ringbuf SEC(".maps");

const volatile int batch_cnt = 0;
const volatile long use_output = 0;

long sample_val = 42;
long dropped __attribute__((aligned(128))) = 0;

const volatile long wakeup_data_size = 0;

static __always_inline long get_flags()
{
 long sz;

 if (!wakeup_data_size)
  return 0;

 sz = bpf_ringbuf_query(&ringbuf, BPF_RB_AVAIL_DATA);
 return sz >= wakeup_data_size ? BPF_RB_FORCE_WAKEUP : BPF_RB_NO_WAKEUP;
}

SEC("fentry/" SYS_PREFIX "sys_getpgid")
int bench_ringbuf(void *ctx)
{
 long *sample, flags;
 int i;

 if (!use_output) {
  for (i = 0; i < batch_cnt; i++) {
   sample = bpf_ringbuf_reserve(&ringbuf,
                  sizeof(sample_val), 0);
   if (!sample) {
    __sync_add_and_fetch(&dropped, 1);
   } else {
    *sample = sample_val;
    flags = get_flags();
    bpf_ringbuf_submit(sample, flags);
   }
  }
 } else {
  for (i = 0; i < batch_cnt; i++) {
   flags = get_flags();
   if (bpf_ringbuf_output(&ringbuf, &sample_val,
            sizeof(sample_val), flags))
    __sync_add_and_fetch(&dropped, 1);
  }
 }
 return 0;
}

Messung V0.5 in Prozent
C=95 H=89 G=91

¤ Dauer der Verarbeitung: 0.14 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

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.