From: Rik van Riel Date: Thu, 18 Oct 2012 21:19:28 +0000 (-0400) Subject: sched, numa, mm: Add credits for NUMA placement X-Git-Tag: next-20121205~43^2~2^2~12 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=cb27d6087bc812d0624ef774a9ddee81f7cc0895;p=karo-tx-linux.git sched, numa, mm: Add credits for NUMA placement The NUMA placement code has been rewritten several times, but the basic ideas took a lot of work to develop. The people who put in the work deserve credit for it. Thanks Andrea & Peter :) [ The Documentation/scheduler/numa-problem.txt file should probably be rewritten once we figure out the final details of what the NUMA code needs to do, and why. ] Signed-off-by: Rik van Riel Acked-by: Peter Zijlstra Cc: Andrea Arcangeli Cc: Rik van Riel Cc: Mel Gorman Cc: Linus Torvalds Cc: Andrew Morton Cc: Thomas Gleixner Cc: Hugh Dickins Link: http://lkml.kernel.org/r/20121018171928.24d06af4@cuia.bos.redhat.com Signed-off-by: Ingo Molnar ---- This is against tip.git numa/core --- diff --git a/CREDITS b/CREDITS index d8fe12a9421f..b4cdc8f2971a 100644 --- a/CREDITS +++ b/CREDITS @@ -125,6 +125,7 @@ D: Author of pscan that helps to fix lp/parport bugs D: Author of lil (Linux Interrupt Latency benchmark) D: Fixed the shm swap deallocation at swapoff time (try_to_unuse message) D: VM hacker +D: NUMA task placement D: Various other kernel hacks S: Imola 40026 S: Italy diff --git a/kernel/sched/fair.c b/kernel/sched/fair.c index 511fbb8e65ea..8af020803edd 100644 --- a/kernel/sched/fair.c +++ b/kernel/sched/fair.c @@ -18,6 +18,9 @@ * * Adaptive scheduling granularity, math enhancements by Peter Zijlstra * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra + * + * NUMA placement, statistics and algorithm by Andrea Arcangeli, + * CFS balancing changes by Peter Zijlstra. Copyright (C) 2012 Red Hat, Inc. */ #include diff --git a/mm/memory.c b/mm/memory.c index 52ad29d9db2d..1f733dc661e2 100644 --- a/mm/memory.c +++ b/mm/memory.c @@ -36,6 +36,8 @@ * (Gerhard.Wichert@pdb.siemens.de) * * Aug/Sep 2004 Changed to four level page tables (Andi Kleen) + * + * 2012 - NUMA placement page faults (Andrea Arcangeli, Peter Zijlstra) */ #include