Ray Bryant <[EMAIL PROTECTED]> writes: > set of pages associated with a particular process need to be moved. > The kernel interface that we are proposing is the following: > > page_migrate(pid, va_start, va_end, count, old_nodes, new_nodes);
[Only commenting on the interface, haven't read your patches at all] This is basically mbind() with MPOL_F_STRICT, except that it has a pid argument. I assume that's for the benefit of your batch scheduler. But it's not clear to me how and why the batch scheduler should know about virtual addresses of different processes anyways. Walking /proc/pid/maps? That's all inherently racy when the process is doing mmap in parallel. The only way I can think of to do this would be to check for changes in maps after a full move and loop, but then you risk livelock. And you cannot also just specify va_start=0, va_end=~0UL because that would make the node arrays grow infinitely. Also is there a good use case why the batch scheduler should only move individual areas in a process around, not the full process? I think the only sane way for an external process to move another around is to do it for the whole process. For that you wouldn't need most of the arguments, but just a simple move_process_vm call, or perhaps just a file in /proc where the new node can be written to. There may be an argument to do this for individual tmpfs/hugetlbfs/sysv shm segments too, but mbind() already supports that (just map them from a different process and change the policy there) For process use you could just do it in mbind() or perhaps part of the process policy (move page around when touched by process). -Andi - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/