免费注册 查看新帖 |

Chinaunix

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

执行tasklet任务的进程ID是多少? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2009-10-21 21:47 |只看该作者 |倒序浏览

  1. #include <linux/module.h>
  2. #include <linux/moduleparam.h>
  3. #include <linux/init.h>

  4. #include <linux/time.h>
  5. #include <linux/timer.h>
  6. #include <linux/kernel.h>
  7. #include <linux/proc_fs.h>
  8. #include <linux/types.h>
  9. #include <linux/spinlock.h>
  10. #include <linux/interrupt.h>

  11. #include <asm/hardirq.h>
  12. /*
  13. * This module is a silly one: it only embeds short code fragments
  14. * that show how time delays can be handled in the kernel.
  15. */

  16. int delay = HZ; /* the default delay, expressed in jiffies */

  17. module_param(delay, int, 0);

  18. MODULE_AUTHOR("Alessandro Rubini");
  19. MODULE_LICENSE("Dual BSD/GPL");

  20. /* This data structure used as "data" for the timer and tasklet functions */
  21. struct jit_data {
  22.         struct timer_list timer;
  23.         struct tasklet_struct tlet;
  24.         int hi; /* tasklet or tasklet_hi */
  25.         wait_queue_head_t wait;
  26.         unsigned long prevjiffies;
  27.         unsigned char *buf;
  28.         int loops;
  29. };
  30. #define JIT_ASYNC_LOOPS 5


  31. void jit_tasklet_fn(unsigned long arg)
  32. {
  33.         struct jit_data *data = (struct jit_data *)arg;
  34.         unsigned long j = jiffies;
  35.         data->buf += sprintf(data->buf, "%9li  %3li     %i    %6i   %i   %s\n",
  36.                              j, j - data->prevjiffies, in_interrupt() ? 1 : 0,
  37.                              current->pid, smp_processor_id(), current->comm);

  38.         if (--data->loops) {
  39.                 data->prevjiffies = j;
  40.                 if (data->hi)
  41.                         tasklet_hi_schedule(&data->tlet);
  42.                 else
  43.                         tasklet_schedule(&data->tlet);
  44.         } else {
  45.                 wake_up_interruptible(&data->wait);
  46.         }
  47. }

  48. /* the /proc function: allocate everything to allow concurrency */
  49. int jit_tasklet(char *buf, char **start, off_t offset,
  50.               int len, int *eof, void *arg)
  51. {
  52.         struct jit_data *data;
  53.         char *buf2 = buf;
  54.         unsigned long j = jiffies;
  55.         long hi = (long)arg;

  56.         data = kmalloc(sizeof(*data), GFP_KERNEL);
  57.         if (!data)
  58.                 return -ENOMEM;

  59.         init_waitqueue_head (&data->wait);

  60.         /* write the first lines in the buffer */
  61.         buf2 += sprintf(buf2, "   time   delta  inirq    pid   cpu command\n");
  62.         buf2 += sprintf(buf2, "%9li  %3li     %i    %6i   %i   %s\n",
  63.                         j, 0L, in_interrupt() ? 1 : 0,
  64.                         current->pid, smp_processor_id(), current->comm);

  65.         /* fill the data for our tasklet function */
  66.         data->prevjiffies = j;
  67.         data->buf = buf2;
  68.         data->loops = JIT_ASYNC_LOOPS;
  69.        
  70.         /* register the tasklet */
  71.         tasklet_init(&data->tlet, jit_tasklet_fn, (unsigned long)data);
  72.         data->hi = hi;
  73.         if (hi)
  74.                 tasklet_hi_schedule(&data->tlet);
  75.         else
  76.                 tasklet_schedule(&data->tlet);

  77.         /* wait for the buffer to fill */
  78.         wait_event_interruptible(data->wait, !data->loops);

  79.         if (signal_pending(current))
  80.                 return -ERESTARTSYS;
  81.         buf2 = data->buf;
  82.         kfree(data);
  83.         *eof = 1;
  84.         return buf2 - buf;
  85. }



  86. int __init jit_init(void)
  87. {
  88.         create_proc_read_entry("jitasklet", 0, NULL, jit_tasklet, NULL);
  89.         create_proc_read_entry("jitasklethi", 0, NULL, jit_tasklet, (void *)1);

  90.         return 0; /* success */
  91. }

  92. void __exit jit_cleanup(void)
  93. {
  94.         remove_proc_entry("jitasklet", NULL);
  95.         remove_proc_entry("jitasklethi", NULL);
  96. }

  97. module_init(jit_init);
  98. module_exit(jit_cleanup);
复制代码

论坛徽章:
0
2 [报告]
发表于 2009-10-21 21:49 |只看该作者
#cat /proc/jitasklet
   time   delta  inirq    pid   cpu command
   724884    0     0      3006   0   cat
   724884    0     1         3   0   ksoftirqd/0
   724884    0     1         3   0   ksoftirqd/0
   724884    0     1         3   0   ksoftirqd/0
   724884    0     1         3   0   ksoftirqd/0
   724884    0     1         3   0   ksoftirqd/0

论坛徽章:
0
3 [报告]
发表于 2009-10-21 21:50 |只看该作者
其中最后5行 pid为什么是3呢?

从我的经验来看,pid应该是0才对啊?

哪位大侠能帮我看看?(代码是摘自LDD)

[ 本帖最后由 印随 于 2009-10-21 22:24 编辑 ]

论坛徽章:
0
4 [报告]
发表于 2009-10-21 22:40 |只看该作者
0——swapper
1——init

写个tasklet打下pid不就知道了?

论坛徽章:
0
5 [报告]
发表于 2009-10-22 07:17 |只看该作者
上面的代码就是tasklet打印pid,结果是3, 很是不解

论坛徽章:
0
6 [报告]
发表于 2009-10-22 14:15 |只看该作者
tasklet有PID么?
他根本不是一个进程,taskstruct都没有,应该是在中断上下文执行的把
打印3应该是因为中断打断的是三号进程?
还有一个原因,可能是在ksoftirqd中执行的,看看3是不是ksoftirqd的进程号?

纯属个人猜测。

论坛徽章:
0
7 [报告]
发表于 2009-10-22 14:17 |只看该作者
我晕,我怎么变成新手了,积分和帖子怎么都没了?

论坛徽章:
0
8 [报告]
发表于 2009-10-22 14:20 |只看该作者
换个ID登下把_cu去掉,试试看
总算恢复了,两个id显示的名字居然一样。。。
这个id的编号怎么是负的。。。

[ 本帖最后由 peimichael 于 2009-10-22 14:21 编辑 ]

论坛徽章:
0
9 [报告]
发表于 2009-10-22 14:23 |只看该作者

回复 #1 印随 的帖子

tasklet应该有专门的kernel thread来运行,pid=3应该是合理的的

论坛徽章:
0
10 [报告]
发表于 2009-10-22 14:26 |只看该作者

回复 #8 peimichael 的帖子

啊,发现我的编号也成负的了
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP