From: wt@penguintechs.org (Warren Turkal)
To: kernelnewbies@lists.kernelnewbies.org
Subject: non-static init in a basic kernel module
Date: Mon, 09 Jun 2014 09:44:10 -0700 [thread overview]
Message-ID: <5395E45A.8020304@penguintechs.org> (raw)
Hey,
I was writing a basic hello world module. I am using Ubuntu, so I
installed linux-headers package that corresponded to my kernel. It's
strange because all of the examples that I saw (including from modules
in the kernel itself) show things like the following for the init function:
static int netcat_init(void)
{
...
return 0;
}
module_init(netcat_init);
However, I was not able to get it to work with "static". My
hello_world_init function looks like the following:
int __init hello_world_init(void)
{
...
return 0;
}
module_init(hello_world_init);
The command that is used to make the kernel module is the one suggested
in Documentation/kbuild/modules.txt. It looks like this:
make -C /lib/modules/`uname -r`/build M=$PWD
Does anyone know why the "static" version would not work?
Thanks,
wt
next reply other threads:[~2014-06-09 16:44 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-09 16:44 Warren Turkal [this message]
2014-06-09 16:49 ` non-static init in a basic kernel module Pranay Srivastava
-- strict thread matches above, loose matches on Subject: below --
2014-06-09 7:28 Warren Turkal
2014-06-11 13:29 ` Greg KH
2014-06-16 10:29 ` sanjeev sharma
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5395E45A.8020304@penguintechs.org \
--to=wt@penguintechs.org \
--cc=kernelnewbies@lists.kernelnewbies.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).