Skip to content
master
Go to file
Code

Latest commit

- Cleanup
  - Compile module against running kernel.
  - Few module compilation throws error. Will fix them when I get time.

- Network stack drop packet example: `pkt_drop`
106cdda

Git stats

Files

Permalink
Failed to load latest commit information.

ReadMe.org

Linux kernel modules

Basic Linux kernel modules examples

Example usage:

# Visit module directory
cd hello

# Compile module
make

# Display module information
modinfo hello.ko

# Insert module
sudo insmod hello.ko

# Remove module
sudo rmmod hello.ko
You can’t perform that action at this time.