Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965678AbcJYJkA (ORCPT ); Tue, 25 Oct 2016 05:40:00 -0400 Received: from foss.arm.com ([217.140.101.70]:42884 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965640AbcJYJjy (ORCPT ); Tue, 25 Oct 2016 05:39:54 -0400 Date: Tue, 25 Oct 2016 10:39:58 +0100 From: Juri Lelli To: Tommaso Cucinotta Cc: Luca Abeni , Juri Lelli , Peter Zijlstra , linux-kernel@vger.kernel.org, Daniel Bistrot de Oliveira , Tommaso Cucinotta Subject: Re: [RFC PATCH] sched/deadline: show leftover runtime and abs deadline in /proc/*/sched Message-ID: <20161025093958.GT21757@e106622-lin> References: <1477348374-8248-1-git-send-email-tommaso.cucinotta@sssup.it> <1477348374-8248-2-git-send-email-tommaso.cucinotta@sssup.it> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1477348374-8248-2-git-send-email-tommaso.cucinotta@sssup.it> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 733 Lines: 33 Hi, On 25/10/16 00:32, Tommaso Cucinotta wrote: > From: Tommaso Cucinotta You should probably commit from your sssup address? Also changelog is missing. You can simply put here part of your cover letter wordings. > > --- > kernel/sched/debug.c | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/kernel/sched/debug.c b/kernel/sched/debug.c > index fa178b6..109adc0 100644 > --- a/kernel/sched/debug.c > +++ b/kernel/sched/debug.c > @@ -953,6 +953,10 @@ void proc_sched_show_task(struct task_struct *p, struct seq_file *m) > #endif > P(policy); > P(prio); > + if (p->policy == SCHED_DEADLINE) { > + P(dl.runtime); > + P(dl.deadline); > + } For testing purposes looks ok to me. Best, - Juri