2006-02-18 14:51:55

by omkar lagu

[permalink] [raw]
Subject: kernel hook...

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

plz cc to [email protected]


__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com


2006-02-18 16:55:34

by Marc Burkhardt

[permalink] [raw]
Subject: Re: kernel hook...

* omkar lagu <[email protected]> [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