免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 2055 | 回复: 5
打印 上一主题 下一主题

请教几个关于内核的简单问题 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2007-12-18 13:46 |只看该作者 |倒序浏览
1、比如函数hello在hello.h中声明
     EXPORT_SYMBOL(hello)之后是否还需要引用头文件hello.h才能使用?

2、没有EXPORT_SYMBOL的内核符号是否引用了对应的头文件也不能使用?

3、读内核代码时如何知道一个函数是最底层内核API还是一个层叠模块导出的引用?

4、LDD3中第34行介绍modprobe时有这么一句话:“从当前目录装入自己的模块时仍需要使用insmod,因为modprobe只能从标准的已安装模块目录中搜索需要装入的模块。”
这里“已安装模块”是什么?如果已安装了为何还需要装载?我的理解可能有问题,这句话应该怎么理解?

5、系统导出系统调用接口用了宏SYSCALL(kernel-2.6.13/arch/xtensa/kernel/syscalls.h)
     SYSCALL(sys_close,1)
     SYSCALL(sys_write,3)
     这里的1,3分别是什么意思?

新手,没分,真心请教!多谢!

论坛徽章:
0
2 [报告]
发表于 2007-12-18 14:05 |只看该作者
1, 2基本对
3, 没法知道,因为编译时有可能编译成module,也有可能builtin,还有可能不编译
4, /lib/modules/<kernel version>/kernel。 「已安装模块目录」指的就是它,modprobe就到这里头找。
5, 没看过

论坛徽章:
0
3 [报告]
发表于 2007-12-18 14:23 |只看该作者
多谢版主。那天在北交大听了你的演讲:)

论坛徽章:
0
4 [报告]
发表于 2007-12-18 15:02 |只看该作者
5: 数字表示参数个数

Thankfully, Linux provides a set of macros for wrapping access to system calls. It sets up the register contents and issues the trap instructions. These macros are named _syscalln(), where n is between zero and six. The number corresponds to the number of parameters passed into the syscall because the macro needs to know how many parameters to expect and, consequently, push into registers. For example, consider the system call open(), defined as

long open(const char *filename, int flags, int mode)



The syscall macro to use this system call without explicit library support would be

#define __NR_open 5
_syscall3(long, open, const char *, filename, int, flags, int, mode)



Then, the application can simply call open().

论坛徽章:
0
5 [报告]
发表于 2007-12-18 21:37 |只看该作者
更好的使用一个函数叫syscall
定义于unistd.h中
可移植性貌似更好
/* Invoke `system call' number SYSNO, passing it the remaining arguments.
   This is completely system-dependent, and not often useful.

   In Unix, `syscall' sets `errno' for all errors and most calls return -1
   for errors; in many systems you cannot pass arguments or get return
   values for all system calls (`pipe', `fork', and `getppid' typically
   among them).

   In Mach, all system calls take normal arguments and always return an
   error code (zero for success).  */
extern long int syscall (long int __sysno, ...) __THROW;

比如调用ls的open()
syscall(__NR_open, const char *, filename, int, flags, int, mode)
wangneng 该用户已被删除
6 [报告]
发表于 2007-12-19 00:03 |只看该作者
提示: 作者被禁止或删除 内容自动屏蔽
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP