Merge pull request #295 from ishitatsuyuki/ringbuf-codegen

Codegen changes for RingBuf
pull/296/head
Dave Tucker 2 years ago committed by GitHub
commit 934da6e851
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -147,6 +147,8 @@ fn codegen_bindings(opts: &Options) -> Result<(), anyhow::Error> {
"TC_H_MIN_PRIORITY", "TC_H_MIN_PRIORITY",
"TC_H_MIN_INGRESS", "TC_H_MIN_INGRESS",
"TC_H_MIN_EGRESS", "TC_H_MIN_EGRESS",
// Ringbuf
"BPF_RINGBUF_.*",
]; ];
let dir = PathBuf::from("aya"); let dir = PathBuf::from("aya");
@ -193,7 +195,10 @@ fn codegen_bindings(opts: &Options) -> Result<(), anyhow::Error> {
.allowlist_var(x) .allowlist_var(x)
.constified_enum("BPF_F_.*") .constified_enum("BPF_F_.*")
.constified_enum("BTF_KIND_.*") .constified_enum("BTF_KIND_.*")
.constified_enum("BTF_VAR_.*"); .constified_enum("BTF_VAR_.*")
.constified_enum("IFLA_.*")
.constified_enum("TCA_.*")
.constified_enum("BPF_RINGBUF_.*");
} }
for x in &types { for x in &types {

Loading…
Cancel
Save