how to test a linux driver for SMP concurrency issues

Mulyadi Santosa mulyadi.santosa at gmail.com
Tue Jun 28 11:34:25 EDT 2011


Hi AMit...

On Tue, Jun 28, 2011 at 19:36, Amit Nagal <helloin.amit at gmail.com> wrote:
> Hi ,
>
> i want to test a linux driver to identify concurrecy issue that may
> arise on a SMP system .
> can i be advised with  usage of some tools / mechanisms , so that the
> driver can be made SMP safe ?

IMHO there is no easy answer here. What you need is careful code audit
and check the way you access shared resources
(variables/structures/etc).

Whenever you encounter such operations, decide whether you wanna make
it as fast path (must be done real quick) or slow path (longer delay
is acceptable).

In fast path, put spin locks locking/unlocking. In slow path, you
might use mutex or any kind of blocking locking.

-- 
regards,

Mulyadi Santosa
Freelance Linux trainer and consultant

blog: the-hydra.blogspot.com
training: mulyaditraining.blogspot.com



More information about the Kernelnewbies mailing list