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  arena_htab.c   Sprache: C

 
// SPDX-License-Identifier: GPL-2.0
/* Copyright (c) 2024 Meta Platforms, Inc. and affiliates. */
#define BPF_NO_KFUNC_PROTOTYPES
#include <vmlinux.h>
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>
#include <bpf/bpf_core_read.h>
#include "bpf_experimental.h"

struct {
 __uint(type, BPF_MAP_TYPE_ARENA);
 __uint(map_flags, BPF_F_MMAPABLE);
 __uint(max_entries, 100); /* number of pages */
} arena SEC(".maps");

#include "bpf_arena_htab.h"

void __arena *htab_for_user;
bool skip = false;

int zero = 0;
char __arena arr1[100000];
char arr2[1000];

SEC("syscall")
int arena_htab_llvm(void *ctx)
{
#if defined(__BPF_FEATURE_ADDR_SPACE_CAST) || defined(BPF_ARENA_FORCE_ASM)
 struct htab __arena *htab;
 char __arena *arr = arr1;
 __u64 i;

 htab = bpf_alloc(sizeof(*htab));
 cast_kern(htab);
 htab_init(htab);

 cast_kern(arr);

 /* first run. No old elems in the table */
 for (i = zero; i < 100000 && can_loop; i++) {
  htab_update_elem(htab, i, i);
  arr[i] = i;
 }

 /* should replace some elems with new ones */
 for (i = zero; i < 1000 && can_loop; i++) {
  htab_update_elem(htab, i, i);
  /* Access mem to make the verifier use bounded loop logic */
  arr2[i] = i;
 }
 cast_user(htab);
 htab_for_user = htab;
#else
 skip = true;
#endif
 return 0;
}

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

Messung V0.5
C=90 H=79 G=84

¤ Dauer der Verarbeitung: 0.11 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.