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

 
// SPDX-License-Identifier: GPL-2.0

#include "bpf_tracing_net.h"
#include <bpf/bpf_helpers.h>
#include <bpf/bpf_tracing.h>

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

int ca1_cnt = 0;
int ca2_cnt = 0;

SEC("struct_ops")
void BPF_PROG(ca_update_1_init, struct sock *sk)
{
 ca1_cnt++;
}

SEC("struct_ops")
void BPF_PROG(ca_update_2_init, struct sock *sk)
{
 ca2_cnt++;
}

SEC("struct_ops")
void BPF_PROG(ca_update_cong_control, struct sock *sk,
       const struct rate_sample *rs)
{
}

SEC("struct_ops")
__u32 BPF_PROG(ca_update_ssthresh, struct sock *sk)
{
 return tcp_sk(sk)->snd_ssthresh;
}

SEC("struct_ops")
__u32 BPF_PROG(ca_update_undo_cwnd, struct sock *sk)
{
 return tcp_sk(sk)->snd_cwnd;
}

SEC(".struct_ops.link")
struct tcp_congestion_ops ca_update_1 = {
 .init = (void *)ca_update_1_init,
 .cong_control = (void *)ca_update_cong_control,
 .ssthresh = (void *)ca_update_ssthresh,
 .undo_cwnd = (void *)ca_update_undo_cwnd,
 .name = "tcp_ca_update",
};

SEC(".struct_ops.link")
struct tcp_congestion_ops ca_update_2 = {
 .init = (void *)ca_update_2_init,
 .cong_control = (void *)ca_update_cong_control,
 .ssthresh = (void *)ca_update_ssthresh,
 .undo_cwnd = (void *)ca_update_undo_cwnd,
 .name = "tcp_ca_update",
};

SEC(".struct_ops.link")
struct tcp_congestion_ops ca_wrong = {
 .cong_control = (void *)ca_update_cong_control,
 .ssthresh = (void *)ca_update_ssthresh,
 .undo_cwnd = (void *)ca_update_undo_cwnd,
 .name = "tcp_ca_wrong",
};

SEC(".struct_ops")
struct tcp_congestion_ops ca_no_link = {
 .cong_control = (void *)ca_update_cong_control,
 .ssthresh = (void *)ca_update_ssthresh,
 .undo_cwnd = (void *)ca_update_undo_cwnd,
 .name = "tcp_ca_no_link",
};

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

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