Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S934144AbbHLKv7 (ORCPT ); Wed, 12 Aug 2015 06:51:59 -0400 Received: from eu-smtp-delivery-143.mimecast.com ([146.101.78.143]:12777 "EHLO eu-smtp-delivery-143.mimecast.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751046AbbHLKv5 convert rfc822-to-8bit (ORCPT ); Wed, 12 Aug 2015 06:51:57 -0400 Message-ID: <55CB2575.4060201@arm.com> Date: Wed, 12 Aug 2015 11:52:37 +0100 From: Juri Lelli User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Michael Riesch CC: "linux-kernel@vger.kernel.org" , "juri.lelli@gmail.com" Subject: Re: Question about SCHED_DEADLINE and sched_yield() usage References: <55C90DE7.1000400@riesch.at> <55C9D32A.4030506@riesch.at> <55C9E29B.1050203@arm.com> <55CB0D9E.6020700@riesch.at> In-Reply-To: <55CB0D9E.6020700@riesch.at> X-OriginalArrivalTime: 12 Aug 2015 10:51:55.0586 (UTC) FILETIME=[E78C8220:01D0D4EC] X-MC-Unique: 40XcWfBbR1mZzC3gN0I4EA-1 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2387 Lines: 61 Hi, On 12/08/15 10:10, Michael Riesch wrote: > Hi Juri, > > On 08/11/2015 01:55 PM, Juri Lelli wrote: >> As you are running a 3.14 kernel, you probably missed this fix >> 5bfd126e80dc "sched/deadline: Fix sched_yield() behavior". Can >> you please check? > > I stumbled over this commit but somehow managed to ignore it. Anyway, I > upgraded to 4.1, now the application shows the expected behavior. > >>> As far as I understand, I have to call sched_yield() if the the >>> execution time of one loop iteration is either not constant or unknown >>> (both cases being very likely), because if I do not, a new loop >>> iteration could be started if the time budget is not empty. >>> >> >> It depends. The sched_yield() semantic for SCHED_DEADLINE might >> be used to implement some sort of reclaiming mechanism (not >> there yet) where you inform the scheduler that you are not going >> to use the remaining runtime in this period; and the scheduler >> could recycle this spare runtime for other tasks that are running >> short of it. >> >> However, I'd say that in your case you can also live without it. >> SCHED_DEADLINE can handle sporadic tasks, it depends on how you >> implement your userspace loop I guess. If you just check the active >> flag, and this flag is always set, you are right that you may >> end up executing back to back, though; in which case it seems that yield >> semantic could do the trick. > > Since samples are generated and the resulting curve looks like it was > sampled with a constant frequency, I think that sched_yield() is to be > used in this context. Before I used sched_yield(), I had to use some > sleep statements, which made the sample frequency not deterministic and > filled the CPU up. Now it seems to work pretty well. > Great! Is there any way you can share your application sources? Maybe it is already on Github or something? I'd be really curious to have a look at it :). > Congrats on the deadline scheduler - it is a great way to introduce some > real-time capability - and thank you for your help. Sure, no problem. Thanks a lot for asking your question on the list! Best, - Juri -- 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/