All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tom Z <tomz30@yahoo.com>
To: xenomai@xenomai.org
Subject: [Xenomai] compiling kernel module with Xenomai support
Date: Thu, 14 Mar 2013 16:28:06 -0500	[thread overview]
Message-ID: <514240E6.1050806@yahoo.com> (raw)

Hi,

I am writing a kernel module that calls rt_task_add_hook() to add a hook 
when context switch occurs. I built a kernel module called 
*switch_hook.ko*, but when I /insmod switch_hook.ko/, it complains 
"*switch_hook: Unknown symbol rt_task_add_hook (err 0)*". I think I 
missed something during the build process (failed to include Xenomai 
source?) but I do not how to fix it. Below is my system settings, any 
help is greatly appreciated.
*Patched Linux kernel source* is at "/usr/src/linux-3.5.7"
*Xenomai source* is at "/usr/src/xenomai-2.6.2.1"
*Xenomai libraries and binaries* is at "/usr/xenomai"
*My kernel module source code* is at **"/home/tomz/switch_hook_mod/", 
and under this folder there are only two files: *Makefile* and 
*switch_hook.c*. Here is how I make this module, and Makefile and 
switch_hook.c's contents are attached as well:
/home/tomz/switch_hook_mod# *make EXTRA_CFLAGS="-I/usr/xenomai/include 
-D_GNU_SOURCE -D_REENTRANT -D__XENO" EXTRA_LDFLAGS="-lnative 
-L/usr/xenomai/lib -lxenomai -lpthread -lrt -lxenomai -lnative"*

*Makefile's content*
obj-m += switch_hook.o

all:
     make -C /lib/modules/$(shell uname -r)/build M=$(PWD) modules

clean:
     make -C /lib/modules/$(shell uname -r)/build M=$(PWD) clean

*switch_hook.c's content*
#include <linux/module.h>    /* Needed by all modules */
#include <linux/kernel.h>    /* Needed for KERN_INFO */
#include <linux/init.h>        /* Needed for the macros */

#include <native/task.h>
#include <native/timer.h>
#include  <rtdk.h>

void hook_func(void *cookie){
     printk(KERN_INFO "Context switch occured\n");
}

static int __init switch_hook_init(void)
{
     rt_print_auto_init(1);
     rt_printf("Add hook\n");
     rt_task_add_hook(T_HOOK_SWITCH, &hook_func);
     return 0;
}

static void __exit switch_hook_exit(void)
{
     printk(KERN_INFO "Goodbye\n");
}

module_init(switch_hook_init);
module_exit(switch_hook_exit);
//end of switch_hook.c

             reply	other threads:[~2013-03-14 21:28 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-03-14 21:28 Tom Z [this message]
2013-03-14 21:55 ` [Xenomai] compiling kernel module with Xenomai support Paul

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=514240E6.1050806@yahoo.com \
    --to=tomz30@yahoo.com \
    --cc=xenomai@xenomai.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.