Messages in this thread |  | | | From | Erich Focht <> | | Subject | Re: [Lse-tech] Node affine NUMA scheduler extension | | Date | Wed, 28 May 2003 19:02:35 +0200 |
| |
On Tuesday 27 May 2003 23:51, Martin J. Bligh wrote: > > Do you think of something like: > > > ># define CAN_MIGRATE_TASK(p,rq,this_cpu) \ > > (HOMENODE_UNSET(p) && \ //<-- > > (jiffies - (p)->last_run > cache_decay_ticks) && \ > > !task_running(rq, p) && \ > > ((p)->cpus_allowed & (1UL << (this_cpu)))) > > ... > > My instinct would tell me the first expression should be ||, not && > but I'm not 100% sure.
You're right.
> And is this restricted to just clones? Doesn't > seem to be, unless that's implicit in homenode_unset?
Hmmm... That's actually the difficult issue with fork vs. clone and migrating or not. When you clone a small task, you'd usually like to keep it on the same node. If it's a big task and fault-in a lot of memory, it could make sense to let it migrate to another node. For forked tasks it's the same, you mighthave some more COW memory movement but after that you'll usually be happy if the child went away from the parent's node if it is a long-running child. Not so for a short running child. The current compromise: - start children (no matter whether forked or cloned) on the same CPU - allow other CPUs to steal freshly forked children by reducing the cache affinity until the first steal/migration - ok with chidren who exec soon, they might exec before anyone can steal them, drop all the pages and find anew life on the optimal node
This way exec'd tasks get properly baklanced, forked/cloned ones get a better start than in the current scheduler. I'll post a patch on top of the node affine scheduler doing this in 1-2 days.
Regards, Erich
- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/
|  |