Re: [PATCH] Kmod optimization

From: tyler
Date: Fri Apr 14 2006 - 06:59:37 EST


On Thu, Apr 13, 2006 at 04:13:30PM -0700, Greg KH wrote:
> The kernel will not call out to try to resolve the symbols, that's up to
> userspace to handle. Hint, try running 'modprobe moduleA.ko' instead,
> it will handle the dependancies correctly.
>
> I still don't see where this is really needed...
>
> thanks,
>
> greg k-h

I meant, the purpose of request_module is to handle dependencies from the
kernel : if we need a functionnality, we request it. It's the definition
of dependency.

But I understood the mechanism by reading some request_module examples.
In fact, we test the avalaibility of the functionnality before calling
the request_module function.

So the case described in my previous message would normally never
happen.

if (!functionnality_not_avalaible) {
module_request(functionnality)

if (!functionnality_not_avalaible)
goto error;
}

Sorry, so the discussion is closed : forget it :)

--
tyler
tyler@xxxxxxxx






___________________________________________________________________________
Faites de Yahoo! votre page d'accueil sur le web pour retrouver directement vos services préférés : vérifiez vos nouveaux mails, lancez vos recherches et suivez l'actualité en temps réel.
Rendez-vous sur http://fr.yahoo.com/set
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/