Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932846Ab2J2RzE (ORCPT ); Mon, 29 Oct 2012 13:55:04 -0400 Received: from merlin.infradead.org ([205.233.59.134]:39102 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932119Ab2J2RzB convert rfc822-to-8bit (ORCPT ); Mon, 29 Oct 2012 13:55:01 -0400 Message-ID: <1351533280.24721.46.camel@twins> Subject: Re: [PATCH V2 RFC 3/3] kvm: Check system load and handle different commit cases accordingly From: Peter Zijlstra To: Raghavendra K T Cc: "H. Peter Anvin" , Avi Kivity , Ingo Molnar , Marcelo Tosatti , Rik van Riel , Srikar , "Nikunj A. Dadhania" , KVM , Jiannan Ouyang , Chegu Vinod , "Andrew M. Theurer" , LKML , Srivatsa Vaddagiri , Gleb Natapov , Andrew Jones Date: Mon, 29 Oct 2012 18:54:40 +0100 In-Reply-To: <20121029140717.15448.83182.sendpatchset@codeblue> References: <20121029140621.15448.92083.sendpatchset@codeblue> <20121029140717.15448.83182.sendpatchset@codeblue> Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7BIT X-Mailer: Evolution 3.2.2- Mime-Version: 1.0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1217 Lines: 38 On Mon, 2012-10-29 at 19:37 +0530, Raghavendra K T wrote: > +/* > + * A load of 2048 corresponds to 1:1 overcommit > + * undercommit threshold is half the 1:1 overcommit > + * overcommit threshold is 1.75 times of 1:1 overcommit threshold > + */ > +#define COMMIT_THRESHOLD (FIXED_1) > +#define UNDERCOMMIT_THRESHOLD (COMMIT_THRESHOLD >> 1) > +#define OVERCOMMIT_THRESHOLD ((COMMIT_THRESHOLD << 1) - > (COMMIT_THRESHOLD >> 2)) > + > +unsigned long kvm_system_load(void) > +{ > + unsigned long load; > + > + load = avenrun[0] + FIXED_1/200; > + load = load / num_online_cpus(); > + > + return load; > +} ARGH.. no that's wrong.. very wrong. 1) avenrun[] EXPORT_SYMBOL says it should be removed, that's not a joke. 2) avenrun[] is a global load, do not ever use a global load measure 3) avenrun[] has nothing what so ever to do with runqueue lengths, someone with a gazillion tasks in D state will get a huge load but the cpu is very idle. -- 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/