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

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

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

struct net_device {
 /* Structure does not need to contain all entries,
 * as "preserve_access_index" will use BTF to fix this...
 */

 int ifindex;
} __attribute__((preserve_access_index));

struct xdp_rxq_info {
 /* Structure does not need to contain all entries,
 * as "preserve_access_index" will use BTF to fix this...
 */

 struct net_device *dev;
 __u32 queue_index;
} __attribute__((preserve_access_index));

struct xdp_buff {
 void *data;
 void *data_end;
 void *data_meta;
 void *data_hard_start;
 unsigned long handle;
 struct xdp_rxq_info *rxq;
} __attribute__((preserve_access_index));

struct meta {
 int ifindex;
 int pkt_len;
};

struct {
 __uint(type, BPF_MAP_TYPE_PERF_EVENT_ARRAY);
 __type(key, int);
 __type(value, int);
} perf_buf_map SEC(".maps");

__u64 test_result_fentry = 0;
SEC("fentry/FUNC")
int BPF_PROG(trace_on_entry, struct xdp_buff *xdp)
{
 struct meta meta;

 meta.ifindex = xdp->rxq->dev->ifindex;
 meta.pkt_len = bpf_xdp_get_buff_len((struct xdp_md *)xdp);
 bpf_xdp_output(xdp, &perf_buf_map,
         ((__u64) meta.pkt_len << 32) |
         BPF_F_CURRENT_CPU,
         &meta, sizeof(meta));

 test_result_fentry = xdp->rxq->dev->ifindex;
 return 0;
}

__u64 test_result_fexit = 0;
SEC("fexit/FUNC")
int BPF_PROG(trace_on_exit, struct xdp_buff *xdp, int ret)
{
 test_result_fexit = ret;
 return 0;
}

Messung V0.5
C=93 H=98 G=95

¤ Dauer der Verarbeitung: 0.2 Sekunden  ¤

*© 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.