Comment on 3.7X speedup from removing a call to sleepparentComments−raverbashing14yExactlySpinlocks in linux are the "last resource locks", usually in kernel code only in situations where you can't have the scheduler kicking in but can have a race condition (in SMP systems usually)So it's basically interrupt handlers.
Comments
Exactly
Spinlocks in linux are the "last resource locks", usually in kernel code only in situations where you can't have the scheduler kicking in but can have a race condition (in SMP systems usually)
So it's basically interrupt handlers.