Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755840AbZDIEjy (ORCPT ); Thu, 9 Apr 2009 00:39:54 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1759775AbZDIEiy (ORCPT ); Thu, 9 Apr 2009 00:38:54 -0400 Received: from hera.kernel.org ([140.211.167.34]:57138 "EHLO hera.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1759979AbZDIEiv (ORCPT ); Thu, 9 Apr 2009 00:38:51 -0400 Date: Thu, 9 Apr 2009 04:37:25 GMT From: Nathan Lynch To: linux-tip-commits@vger.kernel.org Cc: linux-kernel@vger.kernel.org, hpa@zytor.com, mingo@redhat.com, matthltc@us.ibm.com, nigel@tuxonice.net, akpm@linux-foundation.org, tglx@linutronix.de, ntl@pobox.com, mingo@elte.hu Reply-To: mingo@redhat.com, hpa@zytor.com, linux-kernel@vger.kernel.org, matthltc@us.ibm.com, nigel@tuxonice.net, akpm@linux-foundation.org, tglx@linutronix.de, ntl@pobox.com, mingo@elte.hu In-Reply-To: <20090408194512.47a99b95@manatee.lan> References: <20090408194512.47a99b95@manatee.lan> Subject: [tip:sched/urgent] sched: do not count frozen tasks toward load Message-ID: Git-Commit-ID: 34f2beeec5591259c43d195122de3cd26262d63b X-Mailer: tip-git-log-daemon MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.0 (hera.kernel.org [127.0.0.1]); Thu, 09 Apr 2009 04:37:28 +0000 (UTC) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2477 Lines: 59 Commit-ID: 34f2beeec5591259c43d195122de3cd26262d63b Gitweb: http://git.kernel.org/tip/34f2beeec5591259c43d195122de3cd26262d63b Author: Nathan Lynch AuthorDate: Wed, 8 Apr 2009 19:45:12 -0500 Committer: Ingo Molnar CommitDate: Thu, 9 Apr 2009 06:09:49 +0200 sched: do not count frozen tasks toward load Freezing tasks via the cgroup freezer causes the load average to climb because the freezer's current implementation puts frozen tasks in uninterruptible sleep (D state). Some applications which perform job-scheduling functions consult the load average when making decisions. If a cgroup is frozen, the load average does not provide a useful measure of the system's utilization to such applications. This is especially inconvenient if the job scheduler employs the cgroup freezer as a mechanism for preempting low priority jobs. Contrast this with using SIGSTOP for the same purpose: the stopped tasks do not count toward system load. Change task_contributes_to_load() to return false if the task is frozen. This results in /proc/loadavg behavior that better meets users' expectations. Signed-off-by: Nathan Lynch Acked-by: Andrew Morton Acked-by: Nigel Cunningham Tested-by: Nigel Cunningham Cc: containers@lists.linux-foundation.org Cc: linux-pm@lists.linux-foundation.org Cc: Matt Helsley LKML-Reference: <20090408194512.47a99b95@manatee.lan> Signed-off-by: Ingo Molnar --- include/linux/sched.h | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/include/linux/sched.h b/include/linux/sched.h index 98e1fe5..b4c38bc 100644 --- a/include/linux/sched.h +++ b/include/linux/sched.h @@ -205,7 +205,8 @@ extern unsigned long long time_sync_thresh; #define task_is_stopped_or_traced(task) \ ((task->state & (__TASK_STOPPED | __TASK_TRACED)) != 0) #define task_contributes_to_load(task) \ - ((task->state & TASK_UNINTERRUPTIBLE) != 0) + ((task->state & TASK_UNINTERRUPTIBLE) != 0 && \ + (task->flags & PF_FROZEN) == 0) #define __set_task_state(tsk, state_value) \ do { (tsk)->state = (state_value); } while (0) -- 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/