Network_data_flow_through_kernel API Map
Network_data_flow_through_kernel - here is a detailed IPv4 Network API and data-structure API Map originally published in Linux Foundation Wiki
a Linux and Tech Youtube Channel for advance Linux users, systems and network software programmers and tech enthusiasts
Network_data_flow_through_kernel - here is a detailed IPv4 Network API and data-structure API Map originally published in Linux Foundation Wiki
dst_entry() is one of the important Linux Kernel Networking subsystem data-structure which is used while navigating the packet flow within the IPv4 stack. It contains function pointers one for input…
As I discussed in various episodes and articles in the past there are various ways via which you can communicate from Kernel space to User space and vice-versa. Some of…
The Linux kernel is the backbone of the Linux operating system. A device tree is a hierarchical tree structure that describes the various devices that are present in a system,…
Detailed scheme of the forwarding operations in 2.6 kernel NAPI – www.researchgate.net/profile/Roberto_Bruschi/publication:Figure 4. Detailed scheme of the forwarding operations in 2.6 kernel NAPI. Image courtesy/source HERE The linux networking architecture…
Although the current Linux Kernel source-code contain certain parts of the code written in assembly code (actually native CPU assembly instructions) and recently certain parts of code written in Rust…
A crash in User-space process (say something like segmentation fault) happens just in process virtual memory address space vs a crash in Kernel space (such as Linux Kernel which is…
Linux Kernel Tasklets and Work queues are somewhat similar to user-space process threads in terms of the functionality and of course not in terms of its operation or its internal…
Here is a detailed YouTube video on Linux Kernel custom compilation and customization via make menuconfig interface
NIC Cards (Network Interface Cards) traditionally contain controller chip which takes care of the core aspects, such as packet reception, buffering (till they are read by OS device drivers), etc.…
Learning Linux Kernel Programming is always fascinating and yet challenging. So generally you may tend to learn Kernel Module programming, since such a module can be dynamically plugged into running…
When you learn networking and network software programming, you learn various aspects of networking. Along with datacom concepts such as network switches, routers and so on. As you learn Ethernet…
Here is an interesting YouTube video in which I explain how you can interface a simple RGB LED module to Arduino UNO and you can cycle them slow fade from…
How to find a niche in your career, a short YouTube where in which I explain the connection between this quest and various Hindu gods iconography
Whenever you do Linux Kernel programming, you must've noticed file operations are defined with respect to certain data-structures. Its quite common you may find these in Linux Device Drivers and…