eupolicy.social is one of the many independent Mastodon servers you can use to participate in the fediverse.
This Mastodon server is a friendly and respectful discussion space for people working in areas related to EU policy. When you request to create an account, please tell us something about you.

Server stats:

218
active users

#bpf

1 post1 participant0 posts today

🧱 Faster firewalls with bpfilter | LWN

「 proposed bpfilter as a way to transparently increase iptables performance by translating the filtering rules into BPF programs directly in the kernel ... sort of. Bpfilter was implemented as a user-mode helper, a user-space process started from the kernel, which allows for user-space tools to be used for development and prevents the translation logic from crashing the kernel 」

lwn.net/Articles/1017705/

LWN.netFaster firewalls with bpfilter From servers in a data center to desktop computers, many devices communicating on a network wi [...]
Improving network filtering performance with Bpfilter
(free link) https://lwn.net/SubscriberLink/1017705/ca0af831379ca794/

From servers in a data center to desktop computers, many devices communicating on a network will eventually have to filter traffic, whether for security or performance reasons. Bpfilter is a project that allows packet filtering to be done with BPF, which can be faster than other mechanisms. Even small performance improvements in this area can lead to significant gains.

#linux #kernel #bpfilter #bpf
LWN.netFaster firewalls with bpfilter From servers in a data center to desktop computers, many devices communicating on a network wi [...]

RFC 9669: BPF Instruction Set Architecture (ISA)

On a souvent envie de faire tourner des programmes à soi dans le noyau du système d'exploitation, par exemple à des fins de déboguage ou d'observation du système. Cela soulève plein de problèmes et la technique #eBPF permet, depuis de nombreuses années, de le faire avec moins de risques. Ce #RFC spécifie le jeu d'instructions eBPF.

bortzmeyer.org/9669.html

www.bortzmeyer.org Blog Stéphane Bortzmeyer: RFC 9669: BPF Instruction Set Architecture (ISA)

"'We show that eBPF is Turing complete, which means it can be used for any computable problem'

[…]

Implementing Game of Life entirely in #eBPF means that it is Turing complete, so any computable problem that can be solved in any programming language, can also be solved in eBPF. Those complex problems that people thought were beyond the capabilities of eBPF, like parsing application-level protocols, or terminating TLS connections, are now shown to be possible. […]"

isovalent.com/blog/post/ebpf-f #BPF

isovalent.comeBPF for Anything! - IsovalentWe show that eBPF is Turing complete, which means it can be used for any computable problem, via the game of life demo