当前位置:  技术问答>linux和unix

菜鸟问题:内核模块编程,大家给看看出了什么问题

    来源: 互联网  发布时间:2015-08-10

    本文导语:  [root@localhost testmodule]# cat TestModule.c #include  #include  #include  #include  #include    #include    #include  #include     #if CONFIG_MODVERSIONS==1 #define MODVERSIONS #include  #endif MODULE_LICENSE("GPL");     int init_module(void)  {      printk("Hello!...




[root@localhost testmodule]# cat TestModule.c
#include 
#include 
#include 
#include 
#include 
 
#include 
 
#include 
#include 
  
#if CONFIG_MODVERSIONS==1
#define MODVERSIONS
#include 
#endif
MODULE_LICENSE("GPL");
 
 
int init_module(void)
 {
     printk("Hello! this is a testing module!n");
     return 0;
}
 
int open(struct inode *inode,struct file *filp)
{
   MOD_INC_USE_COUNT;
   printk("This module is in open!n");
   return 0;
}
 
void release(struct inode *inode,struct file *filp)
{
    MOD_DEC_USE_COUNT;
    printk("this module is in release!n");
     
  
    #ifdef DEBUG
           printk("release(%p,%p)n",inode,filp);
    #endif
 
}
 
int read(struct inode *inode, struct file *filp,char *buf,int count)
{
   int leave;
   if (verify_area(VERIFY_WRITE,buf,count)== -EFAULT)
   return -EFAULT;
 
   for(leave=count;leave>0;leave--)
 {
     __put_user(1,buf,1);
     buf++;
  }
 
  return count;
}
 
 
int write(struct inode *inode, struct file *filp,const char *buf,int count)
{
    return count;
}
 
 
 
void cleanup_module(void)
{
    printk("bye,byen");
}



用gcc编译: gcc -O2 -g -Wall -DMODULE -D__KERNEL__ -I /usr/src/linux-2.4.20-8/include -c TestModule.c
可是老是出问题,大家给看看
[root@localhost testmodule]# gcc -O2 -g -Wall -DMODULE -D__KERNEL__ -I /usr/src/linux-2.4.20-8/include -c TestModule.c
TestModule.c: In function `init_module':
TestModule.c:21: warning: implicit declaration of function `printk_R1b7d4074'
TestModule.c: In function `read':
TestModule.c:47: warning: implicit declaration of function `verify_area'
TestModule.c:47: `VERIFY_WRITE' undeclared (first use in this function)
TestModule.c:47: (Each undeclared identifier is reported only once
TestModule.c:47: for each function it appears in.)
TestModule.c:52: warning: implicit declaration of function `__put_user'



谢谢大家.



|
我把#include 这个头文件删除,还把VERIFY_WRITE定义为1编译就能通过了!

    
 
 

您可能感兴趣的文章:

  • 菜鸟问一个关于j2ee的菜鸟问题
  • 菜鸟求问菜鸟问题 ,域名绑定
  • gcc问题---菜鸟发问之一,老大们帮忙啊!!菜鸟分不多,只好给这点了,对不起!!
  • 菜鸟又来问菜鸟问题了
  • 一个关于日期的问题!(菜鸟问题,请高手不吝赐教)
  • linux下游戏问题。(菜鸟问题)
  • 菜鸟问题:现在要做unix下的c/c+编程的几个问题?
  • 菜鸟提问:ubuntu上怎么建立内核树? iis7站长之家
  • 超级菜鸟的~~不好意思问题~~REDHAT9的视频播放问题~!
  • 菜鸟问题 : 关于使用Flex的问题
  • [菜鸟问题]关于live555的问题
  • 小菜鸟问题请 遇到过相同问题的朋友们请介绍下经验,谢过先
  • (菜鸟飞飞)问个关于软中断和系统调用的问题
  • 菜鸟提问了,关于编译问题?
  • 菜鸟,java的运行问题
  • 菜鸟问题:如何在red hat 9下加入一个新的分区
  • 菜鸟问题:在Java中如何接收从键盘输入的字符串?
  • 菜鸟问题~~快点进来拿分
  • 菜鸟菜问题1
  • 菜鸟问题:如何在Solaris下配置显卡和显示器
  • 新手的菜鸟问题:不同内核版本下编译的程序能否互相调用,是否需要在同一内核下重新编译.
  • (菜鸟基础问题)关于内核线程
  • 有关内核编译的菜鸟问题~~
  • Linux内核编译的一个菜鸟问题
  • 关于编译优化内核的菜鸟问题
  • 菜鸟问问题 linux内核编译
  • 菜鸟问题:请问unix的内核部分的内容是不是能够调出到外存(对换区)?
  • (菜鸟飞飞,在线等)问个关于内核调试的问题
  • 菜鸟问内核
  • 菜鸟提问:ubuntu上怎么建立内核树?
  • linux菜菜鸟问题:怎么装内核?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • ----菜菜鸟第三问:-菜鸟菜问:JAVA如何求 根号、开次方? -----
  • 怎样从一个菜鸟级的java programer升级到一个菜鸟级的java developer
  • 一个连菜鸟都算不上的菜鸟
  • ===菜鸟系列===:写过毕业论文的前辈请进!!!菜鸟散分啦!!!!
  • 菜鸟的Linux练习疑问……
  • 菜鸟刚学jsp,还不知道怎么和sql server2000的数据库相连,我已经把odbc配好了,谁能给我一段和数据库相连的并显示所有数据的代码!菜鸟
  • 菜鸟提问,我怎么装redhat7。1
  • 菜鸟写的俄罗斯方块,请多多批评!
  • 小问题,你一定能够帮忙!——菜鸟请求帮忙!!
  • 一个菜鸟的请求: 哪位前辈能给晚辈讲讲“匿名类”
  • ※菜鸟送分之一※ Red Hat Linux 的最高版本是多少?
  • ★菜鸟问:怎么在RED HAT LINUX7.2中用169上网??
  • 菜鸟提问:包是什么概念?
  • 如何解压光盘上的gz文件到某个目录?(Linux 超级菜鸟问题之一)
  • 菜鸟的问题:求助,关于red hat linux 引导程序
  • 菜鸟问题,如何在Windows 设置CLASSPATH,我还没吃午饭
  • 菜鸟到此报到,各位前辈多多指教^_^
  • 初级菜鸟的简单问题,关于DeviceIoControl,各位高手指点一下吧!
  • 菜鸟问题!!!
  • 菜鸟提问:请问Unix下面有没有类似Win32下_T这样的宏?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3