Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753539AbZA3H7Y (ORCPT ); Fri, 30 Jan 2009 02:59:24 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752077AbZA3H7Q (ORCPT ); Fri, 30 Jan 2009 02:59:16 -0500 Received: from mout.perfora.net ([74.208.4.195]:57971 "EHLO mout.perfora.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752055AbZA3H7P (ORCPT ); Fri, 30 Jan 2009 02:59:15 -0500 Subject: Re: scheduler nice 19 versus 'idle' behavior / static low-priority scheduling From: Nathanael Hoyle To: Jan Engelhardt Cc: Linux Kernel Mailing List In-Reply-To: References: <1233294584.28741.2.camel@localhost> <1233297635.17301.11.camel@localhost> Content-Type: text/plain Date: Fri, 30 Jan 2009 02:59:09 -0500 Message-Id: <1233302349.17301.27.camel@localhost> Mime-Version: 1.0 X-Mailer: Evolution 2.22.3.1 Content-Transfer-Encoding: 7bit X-Provags-ID: V01U2FsdGVkX18UTfMSnuMbmq1b2BPcRv2ax4l+HcJyOt0D1QZ /o303YFVwoOzVlaVkzc+3wYTxbVtZmdNUuCjHOS48T0tXf2l/b +p9Rv5BxY3pNe/dKoINgWouux+MHWIo Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2837 Lines: 88 On Fri, 2009-01-30 at 08:21 +0100, Jan Engelhardt wrote: > On Friday 2009-01-30 07:40, Nathanael Hoyle wrote: > >On Fri, 2009-01-30 at 07:16 +0100, Jan Engelhardt wrote: > > > >The one discussion I saw referencing SCHED_BATCH seemed to imply that it > >was a non-standard kernel patch by Con Kolivas in one of his -ck > >variants that never made it into mainline and is not being maintained. > >Is this inaccurate? > > The presence of SCHED_BATCH in linux/sched.h tells me it is available > (on the other hand, SCHED_ISO, also from -ck, is only listed as a comment.) > Fair enough. I should have re-checked recent sources after your mention rather than going on the old thread I found. > >I was unfamiliar with SCHED_IDLE. Having done a little Googling now, I > >finally find reference to the man page for sched_setscheduler(2). This > >appears that it is likely what I wanted. > > > >I think the information I had been able to find was somehwat out of > >date. > > The manpage does say it, but if your local distro does not > mention SCHED_BATCH/SCHED_IDLE, then that's a pretty sad distro. > > The doc in sched_setschedule seems complete to me as of man-pages 3.13. > > >Is there currently a standardized userspace tool to use to run a command > >in order to alter its scheduling class? Obviously writing one would be > >trivial, but didn't know if something like: > > man chrt The latest version of man chrt that I can find implies that it handles SCHED_BATCH but not SCHED_IDLE. To that end, if anyone else is interested, I have thrown together the above-suggested 'runidle' which will invoke the passed command using the SCHED_IDLE scheduler; it's nothing fancy. I am running foldingathome under it at the moment, and it seems to be improving the situation somewhat, but I still need/want to test with Mike's referenced patches. runidle.c: #include #include #include #include #include extern char **environ; int main(int argc, char **argv) { if(argc<2) { perror("Must specify at least one argument: the path to the program to " \ "execute. Additional arguments may be specified which will be passed " \ "to the called program."); return EXIT_FAILURE; } sched_setscheduler(0, SCHED_IDLE, NULL); if(argc==2) { if(execve(argv[1], NULL, environ) == -1) { perror("Failed to execve target!"); } } else { if(execve(argv[1], argv+1, environ) == -1) { perror("Failed to execve target!"); } } /* should be unreachable */ return EXIT_FAILURE; } -Nathanael -- 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/