Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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
```