What does this mean?
se = set_next_entity(cfs_rq, se);//重新选择进程
prinkt("No process is selected!\n");作者: donghaitad 时间: 2013-11-02 11:59 回复 2# firkraag
不好意思,我重新编辑了一下。
tp = task_of(se);
+ if (first_fair(cfs_rq)) {//如果就绪队列不为空
+ se = __pick_next_entity(cfs_rq);;//重新选择进程
+ }
+ else{//否则选择为空
+ prinkt("No process is selected!\n");
+ se = NULL;
+ }
作者: firkraag 时间: 2013-11-02 12:35
Should there be:
"set_next_entity(cfs_rq, se);"
after:
se = __pick_next_entity(cfs_rq);;//重新选择进程 ?作者: donghaitad 时间: 2013-11-02 20:34 回复 4# firkraag
Thank you very much for your comments, I have added "set_next_entity(cfs_rq, se);"
after:
"se = __pick_next_entity(cfs_rq);"
Have the 'No process is selected!' ever been printed since the last modify?
Although '__dequeue_entity(cfs_rq, se)' just affects the rbtree and not modifys the data related with the rq and cfs_rq(like nr_running), it seems not a big problem.
Is there any process which can receive the input from user except the process you want to prevent from running?
'No process is selected!' should not been printed if you replaced '__dequeue_entity(cfs_rq, se)' with '__pick_next_entity(cfs_rq)'.
'__pick_next_entity(cfs_rq)' just returns the se of cfs_rq->rb_leftmost node of cfs_rq and does not modify the rbtree.
Has the problem 'deadlock of printk' been really sloved?
How can you get the 'target_pid'?作者: firkraag 时间: 2013-11-04 12:30
Maybe you can remove the printk and retry.作者: donghaitad 时间: 2013-11-04 21:00 本帖最后由 donghaitad 于 2013-11-04 21:06 编辑
我去掉了printk, 但在单CPU模式下还是有问题。
系统卡住不动了,好像死锁了。
试了很多次,多CPU环境下好像没问题。作者: firkraag 时间: 2013-11-08 11:08
Maybe you can try this:
Before "pick_next_entity" declare the dequeue_task_fair:
static void dequeue_task_fair(struct rq *rq, struct task_struct *p, int sleep);