Skip to content

Commit 4658791

Browse files
author
Elena Crenguta Lindqvist
committed
blä
1 parent 16ed1eb commit 4658791

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

itnot/index.html

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -456,11 +456,9 @@
456456
So XDP is a hook in the Linux kernel, not a kernel bypass but a bypass of the network stack in the linux kernel. It is a programmable layer in the kernel network stack.
457457
<br>
458458
XDP operates at the same level as DPDK, directly on the packet buffers, operating on the packet before it is moved to the socket buffer.
459-
The network stack in the kernel was conceived to be slow. There was a decision taken 20 or 25 years go, that packets should be delivered into sockets.
460-
This is not the fastest way, maybe you don't need to deliver all packets to sockets, think if you need to drop some of these packets for instance.
461459
<br>
462460
<br>
463-
While DPDK steals the whole NIC from linux kernel, XDP does not still the NIC from the kernel. In XDP we put in a filter per receive queue, make decisions on the packets with zero copy to userspace. This way all the fun features in kernel are available.
461+
While DPDK steals the whole NIC from linux kernel, XDP does not steal the NIC from the kernel. In XDP we put in a filter per receive queue, make decisions on the packets with zero copy to userspace. This way all the fun features in kernel are available.
464462
<br>
465463
<br>
466464
XDP can be used in two modes: native mode, generic (SKB) mode
@@ -514,14 +512,16 @@
514512
<aside class="notes">
515513
What the heck is eBPF ?
516514
<br><br>BPF stands for "Berkeley Packet Filter" it's a linux kernel technology that is used by e.g. tcpdump and other analysis tools.
517-
<br><br>eBPF is used to extract millions of metrics from the kernel and applications for troubleshooting purposes, deep monitoring or troubleshooting/exploring running software.
515+
<br><br>BPF is used to extract millions of metrics from the kernel and applications for troubleshooting purposes, deep monitoring or troubleshooting/exploring running software.
518516
<br><br>BPF is basically a superpower.
519517
<br><br>BPF was initially used for tools like tcpdump but Alexei Starovoitov introduced eBPF (extended BPF) to be used for things like NATing, routing, doing what iptables does for example.
520518
</aside>
521519
</section>
522520

523521
<!–– SlideX ––>
524522
<section>
523+
<p>This is BPF!</p>
524+
525525
<tr>
526526
<th><img src="pics/bpf2.png" width=99% height=99%></th>
527527
</tr>
@@ -579,9 +579,9 @@
579579

580580
</div>
581581
<aside class="notes">
582-
Telstra - em linux and python story
583-
Panasonic - fuel legacy/uefi
584-
Telefonica - Orange France - HA story
582+
Telstra - linux and python story<br>
583+
Panasonic - legacy/uefi<br>
584+
Telefonica - Orange France - HA story<br>
585585

586586
</aside>
587587
</section>
@@ -605,7 +605,8 @@
605605
<br>Stacked up "desktop" computers filled with ... air?
606606
<aside class="notes">
607607
<br>Secondly, it's my desire to leave you with a thought.
608-
<br>I came to the realization that most of the things we learn are provisional and in consequence they are open to recantation and refutation. I enjoy this path of questioning everything, why do we do things a certain way.
608+
<br>I came to the realization that most of the things we learn are provisional and in consequence they are open to recantation and refutation. (I have been raised in an eastern europe communist country and been lied to a significant part of my life).
609+
<br> I enjoy this path of questioning everything, why do we do things a certain way.
609610
<br><br>In 2001 my first job was sysadmin working for a big Eastern European Internet Service Provider
610611
<br>Many customers asked to move their web servers and mail servers on our premises.
611612
<br>It was because their services would access directly the big pipe and we had a generator. 2001 Eastern Europe meant lots of power outages ... daily.

0 commit comments

Comments
 (0)