linux-3.0 |
Rule |
Verdict |
You should not acquire or release the same mutex twice in the same process. All locked mutexes should be unlocked at finalization. More information...
|
Safe
|
Once you blocked a driver using `try_module_get()` you should unblock it by `module_put()`. More information...
|
Safe
|
You should use `GFP_ATOMIC` flag when calling memory allocation functions when spinlock is held. More information...
|
Safe
|
|
Safe
|
It’s not allowed to acquire spin_lock twice. It’s not allowed to release not acquired spin_lock. At the end all spin_lock should be released. It’s not allowed to re-release a lock by spin_unlock/spin_unlock_irqrestore functions. More information...
|
Safe
|
linux-2.6.37 |
Rule |
Verdict |
You should not acquire or release the same mutex twice in the same process. All locked mutexes should be unlocked at finalization. More information...
|
Safe
|
Once you blocked a driver using `try_module_get()` you should unblock it by `module_put()`. More information...
|
Safe
|
You should use `GFP_ATOMIC` flag when calling memory allocation functions when spinlock is held. More information...
|
Safe
|
|
Safe
|
It’s not allowed to acquire spin_lock twice. It’s not allowed to release not acquired spin_lock. At the end all spin_lock should be released. It’s not allowed to re-release a lock by spin_unlock/spin_unlock_irqrestore functions. More information...
|
Safe
|
linux-2.6.32.12 |
Rule |
Verdict |
You should not acquire or release the same mutex twice in the same process. All locked mutexes should be unlocked at finalization. More information...
|
Safe
|
Once you blocked a driver using `try_module_get()` you should unblock it by `module_put()`. More information...
|
Safe
|
You should use `GFP_ATOMIC` flag when calling memory allocation functions when spinlock is held. More information...
|
Safe
|
|
Safe
|
It’s not allowed to acquire spin_lock twice. It’s not allowed to release not acquired spin_lock. At the end all spin_lock should be released. It’s not allowed to re-release a lock by spin_unlock/spin_unlock_irqrestore functions. More information...
|
Safe
|