Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932243Ab2KMRYF (ORCPT ); Tue, 13 Nov 2012 12:24:05 -0500 Received: from terminus.zytor.com ([198.137.202.10]:34111 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932151Ab2KMRYC (ORCPT ); Tue, 13 Nov 2012 12:24:02 -0500 Date: Tue, 13 Nov 2012 09:23:10 -0800 From: tip-bot for Rik van Riel Message-ID: Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@kernel.org, torvalds@linux-foundation.org, a.p.zijlstra@chello.nl, riel@redhat.com, akpm@linux-foundation.org, aarcange@redhat.com, mgorman@suse.de, tglx@linutronix.de Reply-To: riel@redhat.com, mingo@kernel.org, hpa@zytor.com, linux-kernel@vger.kernel.org, akpm@linux-foundation.org, a.p.zijlstra@chello.nl, torvalds@linux-foundation.org, aarcange@redhat.com, mgorman@suse.de, tglx@linutronix.de In-Reply-To: <20121018171928.24d06af4@cuia.bos.redhat.com> References: <20121018171928.24d06af4@cuia.bos.redhat.com> To: linux-tip-commits@vger.kernel.org Subject: [tip:numa/core] sched, numa, mm: Add credits for NUMA placement Git-Commit-ID: b644797f6b72b9b9b0cf35bdf7981f5602725bea X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.2.6 (terminus.zytor.com [127.0.0.1]); Tue, 13 Nov 2012 09:23:16 -0800 (PST) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2843 Lines: 79 Commit-ID: b644797f6b72b9b9b0cf35bdf7981f5602725bea Gitweb: http://git.kernel.org/tip/b644797f6b72b9b9b0cf35bdf7981f5602725bea Author: Rik van Riel AuthorDate: Thu, 18 Oct 2012 17:19:28 -0400 Committer: Ingo Molnar CommitDate: Tue, 13 Nov 2012 18:09:25 +0100 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: Peter Zijlstra Cc: Andrea Arcangeli Cc: Rik van Riel Cc: Mel Gorman Cc: Linus Torvalds Cc: Andrew Morton Link: http://lkml.kernel.org/r/20121018171928.24d06af4@cuia.bos.redhat.com Signed-off-by: Ingo Molnar ---- This is against tip.git numa/core --- CREDITS | 1 + kernel/sched/fair.c | 3 +++ mm/memory.c | 2 ++ 3 files changed, 6 insertions(+), 0 deletions(-) diff --git a/CREDITS b/CREDITS index d8fe12a..b4cdc8f 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 93f4de4..309a254 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 1b9108c..ebd18fd 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 -- 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/