리눅스 커널모듈 심볼참조 질문

declspec의 이미지

안녕하세요
우분투 10.04에서 2개의 커널모듈을 컴파일하고
한놈이 EXPORT 한 함수를 다른놈이 호출하려합니다.

위의 코드가 EXPORT 하는놈이고
아래코드가 참조하는건데
두번째 모듈컴파일시 계속 undefined 심볼이라고 오류나네요;
MODULE_LICENSE 를 GPL 로도 해보고 아닌거로도 해보고 다해봤는데
마찬가지이구요 ㅠㅠ

그리고 인터넷에 /proc/ksyms, /proc/kallsyms 로
심볼이 등록됬나 확인가능하다는데
우분투 10.04의경우 ksyms 는 아예없고
kallsyms 는 루트로도 접근이안되네요;

조언부탁합니다 ㅠㅠ

#include<linux/module.h>
#include<linux/init.h>
void my_func(void);
EXPORT_SYMBOL(my_func);
int test_val=300;
void my_func()
{
	printk("This is my_func()\n ");
	printk("test_val = %d",test_val);
	printk("End of my_func()\n ");
}
 
int my_init(void)
{
	printk("module loaded\n ");
	return 0;
}
 
void my_exit(void)
{
	printk("module unloaded\n ");
}
module_init(my_init);
module_exit(my_exit);
MODULE_AUTHOR("LEARNING LINUX KERNEL");
MODULE_DESCRIPTION("EXPORTING SYMBOLS");
MODULE_LICENSE();
 
 
 
 
#include<linux/module.h>
#include<linux/init.h>
 
void my_func();
 
int my_init(void)
{
	printk("call global symbol my_func...\n");
	my_func();	
	return 0;
}
 
void my_exit(void)
{
	printk("module unloaded2\n ");
}
module_init(my_init);
module_exit(my_exit);
MODULE_AUTHOR("LEARNING LINUX KERNEL");
MODULE_DESCRIPTION("EXPORTING SYMBOLS");
MODULE_LICENSE();
yesing의 이미지

1. 윗쪽 파일이 insmode가 되었는지 확인.
2. 2번째 파일에서 첫번째 파일에 대한 include 및 extern 확인(안해도 되는 경우도 있으나 확실하게 하기 위해서)
3. 2번째 파일을 make시 첫 번째 파일에 대한 symbol을 참조하도록 하기(특정버전은 꼭해야 되는 경우 있음)

declspec의 이미지

1, 2번은 확인했는데
3번이 무슨말인지 잘 모르겠네요 ㅠㅠ
symbol 참조하게하는걸 make 할때 한다는게...?

자기실력이 좋다고 느껴지는건 공부를 안하고 있다는 신호.

댓글 달기

Filtered HTML

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

BBCode

  • 텍스트에 BBCode 태그를 사용할 수 있습니다. URL은 자동으로 링크 됩니다.
  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param>
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.

Textile

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • You can use Textile markup to format text.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Markdown

  • 다음 태그를 이용하여 소스 코드 구문 강조를 할 수 있습니다: <code>, <blockcode>, <apache>, <applescript>, <autoconf>, <awk>, <bash>, <c>, <cpp>, <css>, <diff>, <drupal5>, <drupal6>, <gdb>, <html>, <html5>, <java>, <javascript>, <ldif>, <lua>, <make>, <mysql>, <perl>, <perl6>, <php>, <pgsql>, <proftpd>, <python>, <reg>, <spec>, <ruby>. 지원하는 태그 형식: <foo>, [foo].
  • Quick Tips:
    • Two or more spaces at a line's end = Line break
    • Double returns = Paragraph
    • *Single asterisks* or _single underscores_ = Emphasis
    • **Double** or __double__ = Strong
    • This is [a link](http://the.link.example.com "The optional title text")
    For complete details on the Markdown syntax, see the Markdown documentation and Markdown Extra documentation for tables, footnotes, and more.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 사용할 수 있는 HTML 태그: <p><div><span><br><a><em><strong><del><ins><b><i><u><s><pre><code><cite><blockquote><ul><ol><li><dl><dt><dd><table><tr><td><th><thead><tbody><h1><h2><h3><h4><h5><h6><img><embed><object><param><hr>

Plain text

  • HTML 태그를 사용할 수 없습니다.
  • web 주소와/이메일 주소를 클릭할 수 있는 링크로 자동으로 바꿉니다.
  • 줄과 단락은 자동으로 분리됩니다.
댓글 첨부 파일
이 댓글에 이미지나 파일을 업로드 합니다.
파일 크기는 8 MB보다 작아야 합니다.
허용할 파일 형식: txt pdf doc xls gif jpg jpeg mp3 png rar zip.
CAPTCHA
이것은 자동으로 스팸을 올리는 것을 막기 위해서 제공됩니다.