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 X-Spam-Level: X-Spam-Status: No, score=-19.7 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,INCLUDES_CR_TRAILER,INCLUDES_PATCH, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 6FE18C433B4 for ; Mon, 10 May 2021 10:32:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 46C6B61601 for ; Mon, 10 May 2021 10:32:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230319AbhEJKds (ORCPT ); Mon, 10 May 2021 06:33:48 -0400 Received: from mail.kernel.org ([198.145.29.99]:40468 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S231219AbhEJKbn (ORCPT ); Mon, 10 May 2021 06:31:43 -0400 Received: by mail.kernel.org (Postfix) with ESMTPSA id 10EAE61934; Mon, 10 May 2021 10:27:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620642444; bh=XV3BlLVsbLXy8P+v3fW8y64kD1zGLO02X8eZISsJWyI=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=qDMIrvawz0L+ZZxAdOVIpuDu592EBudvr1R7jbb/Fcf4PisF9UwIfu+FnTlP1+j4O grtIFKw5HVuN5Yvg2yApfV4hnd70yUBg5hK104aFeyJQ06I0TSZ0iilKkgokTz2hG0 027fJSalD9WNjE4/ZNmcM2RE0HG3p4qeYZc8LJnBW8fhMDov284fBQqLcoJSSiQTNG 0as7Nvu+3wvkmbXFXzQcbbEisy3FtXZYbnujsl9vHewXrBxORJl46ODRganHqHeKOj 33KdrDMGLdhz19OwgJpGvvow3v/FgsCd5gqceasSvACECPkVEnw4TYYHvk+d7WNsCp PZTxmzf3n7ReQ== Received: by mail.kernel.org with local (Exim 4.94.2) (envelope-from ) id 1lg38E-000UQm-67; Mon, 10 May 2021 12:27:22 +0200 From: Mauro Carvalho Chehab To: Linux Doc Mailing List Cc: Mauro Carvalho Chehab , "Jonathan Corbet" , Joe Perches , linux-kernel@vger.kernel.org Subject: [PATCH 38/53] docs: scheduler: sched-deadline.rst: avoid using UTF-8 chars Date: Mon, 10 May 2021 12:26:50 +0200 Message-Id: X-Mailer: git-send-email 2.30.2 In-Reply-To: References: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: Mauro Carvalho Chehab Precedence: bulk List-ID: X-Mailing-List: linux-doc@vger.kernel.org While UTF-8 characters can be used at the Linux documentation, the best is to use them only when ASCII doesn't offer a good replacement. So, replace the occurences of the following UTF-8 characters: - U+2013 ('–'): EN DASH - U+2212 ('−'): MINUS SIGN Signed-off-by: Mauro Carvalho Chehab --- Documentation/scheduler/sched-deadline.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Documentation/scheduler/sched-deadline.rst b/Documentation/scheduler/sched-deadline.rst index 9d9be52f221a..0ff353ecf24e 100644 --- a/Documentation/scheduler/sched-deadline.rst +++ b/Documentation/scheduler/sched-deadline.rst @@ -359,7 +359,7 @@ Deadline Task Scheduling More precisely, it can be proven that using a global EDF scheduler the maximum tardiness of each task is smaller or equal than - ((M − 1) · WCET_max − WCET_min)/(M − (M − 2) · U_max) + WCET_max + ((M - 1) · WCET_max - WCET_min)/(M - (M - 2) · U_max) + WCET_max where WCET_max = max{WCET_i} is the maximum WCET, WCET_min=min{WCET_i} is the minimum WCET, and U_max = max{WCET_i/P_i} is the maximum @@ -515,7 +515,7 @@ Deadline Task Scheduling pp 760-768, 2005. 10 - J. Goossens, S. Funk and S. Baruah, Priority-Driven Scheduling of Periodic Task Systems on Multiprocessors. Real-Time Systems Journal, - vol. 25, no. 2–3, pp. 187–205, 2003. + vol. 25, no. 2-3, pp. 187-205, 2003. 11 - R. Davis and A. Burns. A Survey of Hard Real-Time Scheduling for Multiprocessor Systems. ACM Computing Surveys, vol. 43, no. 4, 2011. http://www-users.cs.york.ac.uk/~robdavis/papers/MPSurveyv5.0.pdf -- 2.30.2