免费注册 查看新帖 |

Chinaunix

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

[内核入门] 关于 kernel_thread 的一点疑惑 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2012-11-08 21:27 |只看该作者 |倒序浏览
刚刚看情景分析到内核线程这里,有点疑惑:
439int kernel_thread(int (*fn)(void *), void * arg, unsigned long flags)

02. 440{

03. 441        long retval, d0;

04. 442

05. 443        __asm__ __volatile__(

06. 444                "movl %%esp,%%esi\n\t"

07. 445                "int $0x80\n\t"         /* Linux/i386 system call */

08. 446                "cmpl %%esp,%%esi\n\t"  /* child or parent? */

09. 447                "je 1f\n\t"             /* parent - jump */

10. 448                /* Load the argument into eax, and push it.  That way, it does

11. 449                 * not matter whether the called function is compiled with

12. 450                 * -mregparm or not.  */

13. 451                "movl %4,%%eax\n\t"

14. 452                "pushl %%eax\n\t"               

15. 453                "call *%5\n\t"          /* call fn */

16. 454                "movl %3,%0\n\t"        /* exit */

17. 455                "int $0x80\n"

18. 456                "1:\t"

19. 457                :"=&a" (retval), "=&S" (d0)

20. 458                :"0" (__NR_clone), "i" (__NR_exit),

21. 459                 "r" (arg), "r" (fn),

22. 460                 "b" (flags | CLONE_VM)

23. 461                : "memory");

24. 462        return retval;

25. 463}
不明白 ECX为什么不赋值,因为int $80后,会调用sys_clone

asmlinkage int sys_clone(struct pt_regs regs)
696 {
697 unsigned long clone_flags;
698 unsigned long newsp;
699
700 clone_flags = regs.ebx;
701 newsp = regs.ecx;
702 if (!newsp)
703 newsp = regs.esp;
704 return do_fork(clone_flags, newsp, &regs, 0);
705 }
第701行,会取ecx做为newsp,如果为0,则为当前的堆栈,
希望大侠答复,感谢啊

论坛徽章:
0
2 [报告]
发表于 2012-11-08 21:29 |只看该作者
本帖最后由 hhb0331 于 2012-11-09 00:46 编辑

不明白 ECX为什么不赋值为0?
内核线程是在系统空间,没有堆栈切换
在进入do_fork后经过alloc_task_struct() 后分配了自己的系统堆栈,
原本ecx这个参数是用户空间的堆栈,在这里没用

do_fork函数还没看完,不知道这样理解对不对

老问题未了,新问题又来了:
do_fork函数中
p->state = TASK_UNINTERRUPTIBLE;
p为新分配的task_struct,但这时还未真正起作用,为什么要设置状态?
书中讲的是 getpid只能独占使用,那就应该是current->state = TASK_UNINTERRUPTIBLE;
才对呀,
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP