Philipp Rumpf wrote:
> 
> On Sat, Oct 28, 2000 at 09:55:21AM -0400, Brian Gerst wrote:
> > Yes, but they can be called (and sleep) with module refcount == 0.  This
> > is because the file descripter used to perform the ioctl isn't directly
> > associated with the network device, thereby not incrementing the
> > refcount on open.
> 
> According to my proposal, it is perfectly safe to call a function in a module
> while the module's use count is 0.  This function would typically look like this:
> 
> foo()
> {
>         MOD_INC_USE_COUNT;
> 
>         copy_*_user() (or anything else that sleeps);
> 
>         MOD_DEC_USE_COUNT;
> 
>         return bar;
> }
> 
> The only difference to the "old" module scheme is that the above currently isn't
> safe on SMP systems.

This will only work while the kernel is not preemptable.  Once the
kernel thread can be rescheduled, all bets are off.

With or without your patch, the network ioctls are unsafe, since they
don't currently do refcounting at all.  Adding it in the layer above the
driver is the easier and cleaner solution.

-- 

                                                Brian Gerst
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to [EMAIL PROTECTED]
Please read the FAQ at http://www.tux.org/lkml/

Reply via email to