From patchwork Fri Jun 14 16:12:24 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alessandro Zucchelli X-Patchwork-Id: 13698928 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 lists.xenproject.org (lists.xenproject.org [192.237.175.120]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id A04DCC27C6E for ; Fri, 14 Jun 2024 16:13:28 +0000 (UTC) Received: from list by lists.xenproject.org with outflank-mailman.740799.1147890 (Exim 4.92) (envelope-from ) id 1sI9Y1-0005UL-Aq; Fri, 14 Jun 2024 16:13:05 +0000 X-Outflank-Mailman: Message body and most headers restored to incoming version Received: by outflank-mailman (output) from mailman id 740799.1147890; Fri, 14 Jun 2024 16:13:05 +0000 Received: from localhost ([127.0.0.1] helo=lists.xenproject.org) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1sI9Y1-0005UE-75; Fri, 14 Jun 2024 16:13:05 +0000 Received: by outflank-mailman (input) for mailman id 740799; Fri, 14 Jun 2024 16:13:04 +0000 Received: from se1-gles-sth1-in.inumbo.com ([159.253.27.254] helo=se1-gles-sth1.inumbo.com) by lists.xenproject.org with esmtp (Exim 4.92) (envelope-from ) id 1sI9Y0-0005U8-8E for xen-devel@lists.xenproject.org; Fri, 14 Jun 2024 16:13:04 +0000 Received: from support.bugseng.com (mail.bugseng.com [162.55.131.47]) by se1-gles-sth1.inumbo.com (Halon) with ESMTPS id f99b2bfb-2a68-11ef-90a3-e314d9c70b13; Fri, 14 Jun 2024 18:13:02 +0200 (CEST) Received: from delta.bugseng.com.homenet.telecomitalia.it (host-79-46-197-197.retail.telecomitalia.it [79.46.197.197]) by support.bugseng.com (Postfix) with ESMTPSA id E03DE4EE0756; Fri, 14 Jun 2024 18:13:00 +0200 (CEST) X-BeenThere: xen-devel@lists.xenproject.org List-Id: Xen developer discussion List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Errors-To: xen-devel-bounces@lists.xenproject.org Precedence: list Sender: "Xen-devel" X-Inumbo-ID: f99b2bfb-2a68-11ef-90a3-e314d9c70b13 From: Alessandro Zucchelli To: xen-devel@lists.xenproject.org Cc: consulting@bugseng.com, Alessandro Zucchelli , Jan Beulich , Andrew Cooper , =?utf-8?q?Roger_Pau_Monn=C3=A9?= Subject: [PATCH 0/2] Address violations of MISRA C:2012 Rule 5.3 Date: Fri, 14 Jun 2024 18:12:24 +0200 Message-Id: X-Mailer: git-send-email 2.34.1 MIME-Version: 1.0 This addresses violations of MISRA C:2012 Rule 5.3 which states as following: An identifier declared in an inner scope shall not hide an identifier declared in an outer scope. In this series are modified files x86/mm.c and x86/e820.c in which occurred instances of variable names shadowing a global variable; these patches are aimed to remove said occurrences leading to partial compliance under MISRA C:2012 Rule 5.3. No functional change. Alessandro Zucchelli (2): x86/mm address violations of MISRA C:2012 Rule 5.3 x86/e820 address violations of MISRA C:2012 Rule 5.3 xen/arch/x86/e820.c | 74 ++++++++++++++++++++++----------------------- xen/arch/x86/mm.c | 12 ++++---- 2 files changed, 43 insertions(+), 43 deletions(-)