From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id E923CEB8FAD for ; Wed, 6 Sep 2023 07:25:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S232713AbjIFHZq (ORCPT ); Wed, 6 Sep 2023 03:25:46 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:58654 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S232733AbjIFHZo (ORCPT ); Wed, 6 Sep 2023 03:25:44 -0400 Received: from desiato.infradead.org (desiato.infradead.org [IPv6:2001:8b0:10b:1:d65d:64ff:fe57:4e05]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 8D055E59 for ; Wed, 6 Sep 2023 00:25:27 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=infradead.org; s=desiato.20200630; h=In-Reply-To:Content-Type:MIME-Version: References:Message-ID:Subject:Cc:To:From:Date:Sender:Reply-To: Content-Transfer-Encoding:Content-ID:Content-Description; bh=uvirAZxakejjQRMmtLQi7P2+8RvF8vSXY6Gk8xEWvoA=; b=JGUzSNoBDZXJ72rJgZQbuptQJt 3QeYeEyRN4QfbfRZzCLohM1PSRFJJKYF5ob3tY03Md/tntRCYsOT2uXswR8sXvprtnBTuejfqImO4 HEdubGUeyELBuOo1ph6VtuI/DxjWhHWPcomnpYd89WoZ0Tc9w+bBBRaV5j6k+RuBHUoGIy8SrlK9i 1F+UawdzRutImAkCAIdkZAUpk2/dctYzJR3b8bpQ/nzF4v8tQ+6GWdxsu4hS0Nbu9xGMeM+rP/j7c omEngCY2BYcldxfPNj9uAa7usIeg4fYhSowQOLjeSlg/n+Qnj6VmQiP8lK8qkyuTZtt1kBUbamTMj ZbWF8XKw==; Received: from j130084.upc-j.chello.nl ([24.132.130.84] helo=noisy.programming.kicks-ass.net) by desiato.infradead.org with esmtpsa (Exim 4.96 #2 (Red Hat Linux)) id 1qdmuK-000wWt-0Q; Wed, 06 Sep 2023 07:25:05 +0000 Received: by noisy.programming.kicks-ass.net (Postfix, from userid 1000) id 3549B3003F2; Wed, 6 Sep 2023 09:25:01 +0200 (CEST) Date: Wed, 6 Sep 2023 09:25:01 +0200 From: Peter Zijlstra To: Daniel Bristot de Oliveira Cc: Daniel Bristot de Oliveira , Ingo Molnar , Juri Lelli , Vincent Guittot , Dietmar Eggemann , Steven Rostedt , Ben Segall , Mel Gorman , Valentin Schneider , linux-kernel@vger.kernel.org, Luca Abeni , Tommaso Cucinotta , Thomas Gleixner , Joel Fernandes , Vineeth Pillai , Shuah Khan , Phil Auld Subject: Re: [PATCH v4 7/7] sched/fair: Fair server interface Message-ID: <20230906072501.GA38741@noisy.programming.kicks-ass.net> References: <20230905135500.GB20703@noisy.programming.kicks-ass.net> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Sep 05, 2023 at 06:17:26PM +0200, Daniel Bristot de Oliveira wrote: > > Additionally, should not the deadline parameters be vetted by access > > control before being accepted ? > > like security_task_getscheduler(p)? But we have no p... I was thinking sched_dl_overflow() or thereabout. That still runs on p, but I'm thikning that should be easily adapted to dl_se or somesuch.