Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sbcd90/kernel-module-rcu-test
A simple project to show how read-copy-update synchronization mechanism in the linux kernel
https://github.com/sbcd90/kernel-module-rcu-test
Last synced: 9 days ago
JSON representation
A simple project to show how read-copy-update synchronization mechanism in the linux kernel
- Host: GitHub
- URL: https://github.com/sbcd90/kernel-module-rcu-test
- Owner: sbcd90
- Created: 2022-04-02T01:32:26.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-04-17T21:21:30.000Z (over 2 years ago)
- Last Synced: 2024-04-14T18:21:10.490Z (7 months ago)
- Language: C
- Size: 3.28 MB
- Stars: 1
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
kernel-module-rcu-test
======================A simple project to show how read-copy-update synchronization mechanism in the linux kernel.
How spinlock works?
===================[Here](./kernel-module-spinlock-test/) is the module.
```
make
sudo insmod test_spinlock.ko
sudo dmesg | less > log.txt
sudo rmmod test_spinlock.ko
```How RCU works?
==============[Here](./kernel-module-rcu-starter/) is the module.
```
make
sudo insmod test_rcu.ko
sudo dmesg | less > log.txt
sudo rmmod test_rcu.ko
```