Re: kernel hook...

From: Marc Koschewski
Date: Sat Feb 18 2006 - 11:53:22 EST


* omkar lagu <omkarlagu@xxxxxxxxx> [2006-02-18 06:51:52 -0800]:

> hi all,
>
> help needed..
> we want to call a function from the kernel code which
> is defined in our module and the function should be
> only called when we insert our module in the kernel.
> we are really struggling with this..can anyone suggest
> a solution for this with a example.
>
> thanks in advance

static int __init init_my_module (void) {
call_function();

return 0;
}
EXPORT_SYMBOL(init_my_module);

Marc
-
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/