Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754609AbaAUMeZ (ORCPT ); Tue, 21 Jan 2014 07:34:25 -0500 Received: from merlin.infradead.org ([205.233.59.134]:53371 "EHLO merlin.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1754477AbaAUMeW (ORCPT ); Tue, 21 Jan 2014 07:34:22 -0500 Date: Tue, 21 Jan 2014 13:33:34 +0100 From: Peter Zijlstra To: Luca Abeni Cc: Henrik Austad , Juri Lelli , tglx@linutronix.de, mingo@redhat.com, rostedt@goodmis.org, oleg@redhat.com, fweisbec@gmail.com, darren@dvhart.com, johan.eker@ericsson.com, p.faure@akatech.ch, linux-kernel@vger.kernel.org, claudio@evidence.eu.com, michael@amarulasolutions.com, fchecconi@gmail.com, tommaso.cucinotta@sssup.it, nicola.manica@disi.unitn.it, dhaval.giani@gmail.com, hgu1972@gmail.com, paulmck@linux.vnet.ibm.com, raistlin@linux.it, insop.song@gmail.com, liming.wang@windriver.com, jkacur@redhat.com, harald.gustafsson@ericsson.com, vincent.guittot@linaro.org, bruce.ashfield@windriver.com, rob@landley.net Subject: Re: [PATCH] sched/deadline: Add sched_dl documentation Message-ID: <20140121123334.GJ30183@twins.programming.kicks-ass.net> References: <1390214440-2711-1-git-send-email-juri.lelli@gmail.com> <20140120112442.GA8907@austad.us> <52DD1377.5090201@gmail.com> <20140120131616.GB8907@austad.us> <52DD2711.9080504@unitn.it> <20140121102016.GA12002@austad.us> <52DE5B7F.8020900@unitn.it> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <52DE5B7F.8020900@unitn.it> User-Agent: Mutt/1.5.21 (2012-12-30) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Jan 21, 2014 at 12:35:27PM +0100, Luca Abeni wrote: > >In a system, we typically look at a set of tasks. In Linux-kernel > >terminology, a particular task is normally a thread. When a thread is > >ready to run, we say that a *job* of that task is running. > This would be true in the original Liu&Layland model (where a task blocks > only when a job finishes), but I do not think it is correct in a real system... > For example: (notice: this discussion might be slightly off-topic, and I do not > think this should go in the document... I am writing just to clarify my point > of view) > - Let's consider a (over simplified) video decoder as an example of task > - The task periodically read a video frame (from disk or network), decodes it, > and displays it > - So, each job starts when the frame is read, and finishes when the frame is > displayed. And jobs are (in this case) activated periodically > - During the execution of a job, the task might invoke a blocking system call, > and block... When it wakes up, it is still in the same job (decoding the same > video frame), and not in a different one. > This is (IMHO) where all the confusion comes from. I would strongly urge you not to use that as an example, because its dead wrong design. An RT thread (be it RR,FIFO or DL) should _NEVER_ do blocking IO. Have !RT tasks read the stuff from disk into a buffer, then let the RT task read data from the buffer and flip frames and such. If you want to mention blocking, then please use the most common one: blocking on a (hopefully PI) mutex. On the other subject; I wouldn't actually mind if it grew into a proper (academic or not) summary of deadline scheduling theory and how it applies. Sure, refer to actual papers for all the proofs and such, but it would be very good to go over all the bits and pieces that make up the system. So cover the periodic, sporadic and aperiodic model like henr_k suggested, please do cover the job/instance idiom as it is used all over the place. Then also treat schedulability tests and their ramification, explain what laxity is, what tardiness is, that GEDF doesn't have 0 tardiness but does have bounded tardiness. Maybe even mention the actual bounds -- but refer to papers for their proofs. Mention CBS and the ramification etc.. Yes this is all a bit much, but I feel it is important, after all how can you properly use something you don't understand? (and yes I know its a very popular thing to not want to understand how things work but still use them :-/). I mean, I'm the kind of idiot that actually goes out and read a bunch of papers, but many people simply cannot read those things, or are not given the time to, even if they wanted and could (arguably they have bigger problems). so think of this as the idiot guide to deadline scheduling :-) -- 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/