[CRYPTO] tcrypt: Return -EAGAIN from module_init()

Intentionaly return -EAGAIN from module_init() to ensure
it doesn't stay loaded in the kernel.  The module does all
its work from init() and doesn't offer any runtime
functionality => we don't need it in the memory, do we?

Signed-off-by: Michal Ludvig <michal@logix.cz>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
This commit is contained in:
Michal Ludvig 2006-05-30 14:49:38 +10:00 коммит произвёл Herbert Xu
Родитель 996e2523cc
Коммит 14fdf477a7
1 изменённых файлов: 8 добавлений и 1 удалений

Просмотреть файл

@ -1113,7 +1113,14 @@ static int __init init(void)
kfree(xbuf);
kfree(tvmem);
return 0;
/* We intentionaly return -EAGAIN to prevent keeping
* the module. It does all its work from init()
* and doesn't offer any runtime functionality
* => we don't need it in the memory, do we?
* -- mludvig
*/
return -EAGAIN;
}
/*