| File | Purpose |
|---|---|
bootmem_trace.c |
Kernel module source with axiomatic comments |
worksheet.md |
Step-by-step hand calculations and error report |
Makefile |
Build configuration |
cd kernel_exercises/bootmem_trace
make
cat /proc/buddyinfo # Record before
sudo insmod bootmem_trace.ko
dmesg | tail -30 # Observe values
sudo rmmod bootmem_trace
cat /proc/buddyinfo # Compare after