From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail02.groups.io (mail02.groups.io [66.175.222.108]) by spool.mail.gandi.net (Postfix) with ESMTPS id CF1DE740054 for ; Mon, 22 Jan 2024 10:39:13 +0000 (UTC) DKIM-Signature: a=rsa-sha256; bh=BBU1KD45eJ8vU+biHKc51UhkiP8esxE7DVKiAdpMpCI=; c=relaxed/simple; d=groups.io; h=Message-ID:Date:MIME-Version:Subject:To:Cc:References:From:In-Reply-To:Precedence:List-Subscribe:List-Help:Sender:List-Id:Mailing-List:Delivered-To:Reply-To:List-Unsubscribe-Post:List-Unsubscribe:Content-Language:Content-Type:Content-Transfer-Encoding; s=20140610; t=1705919952; v=1; b=ApF417gJrI7HnmawOpItLX5wyXr/WpJaH1OLGcA0ZtE7VFE4zXTDJUPQWlXwg3e24j/+/0NW YY2b/DSZEJIuQHZNeZbleWqDQP+WjfILKE6G9GIAWs+ka3D/reVPV7UA0JcxYKWO9dlqL6cqH5h hBSTavttA4r3dPqY7iRnpq20= X-Received: by 127.0.0.2 with SMTP id G1j4YY7687511xxffHM25B14; Mon, 22 Jan 2024 02:39:12 -0800 X-Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [170.10.133.124]) by mx.groups.io with SMTP id smtpd.web11.70654.1705919951571184661 for ; Mon, 22 Jan 2024 02:39:11 -0800 X-Received: from mimecast-mx02.redhat.com (mx-ext.redhat.com [66.187.233.73]) by relay.mimecast.com with ESMTP with STARTTLS (version=TLSv1.3, cipher=TLS_AES_256_GCM_SHA384) id us-mta-642-7JWmkxR7NtGM5bLgYoI6ow-1; Mon, 22 Jan 2024 05:39:08 -0500 X-MC-Unique: 7JWmkxR7NtGM5bLgYoI6ow-1 X-Received: from smtp.corp.redhat.com (int-mx04.intmail.prod.int.rdu2.redhat.com [10.11.54.4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by mimecast-mx02.redhat.com (Postfix) with ESMTPS id E4DF23C025C8; Mon, 22 Jan 2024 10:39:07 +0000 (UTC) X-Received: from [10.39.194.172] (unknown [10.39.194.172]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 654272026D66; Mon, 22 Jan 2024 10:39:07 +0000 (UTC) Message-ID: Date: Mon, 22 Jan 2024 11:39:06 +0100 MIME-Version: 1.0 Subject: Re: [edk2-devel] [PATCH v2 2/2] MdeModulePkg: Add missing Iret.h to NestedInterruptTplLib sources list To: devel@edk2.groups.io, mcb30@ipxe.org Cc: Ray Ni References: <17AC1CE6B1CDE741.7395@groups.io> <20240120170814.1777073-1-mcb30@ipxe.org> <0102018d27d87126-c03ef8ab-7a4c-4049-ad0d-c4f279f8b5a2-000000@eu-west-1.amazonses.com> From: "Laszlo Ersek" In-Reply-To: <0102018d27d87126-c03ef8ab-7a4c-4049-ad0d-c4f279f8b5a2-000000@eu-west-1.amazonses.com> X-Scanned-By: MIMEDefang 3.4.1 on 10.11.54.4 X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Precedence: Bulk List-Subscribe: List-Help: Sender: devel@edk2.groups.io List-Id: Mailing-List: list devel@edk2.groups.io; contact devel+owner@edk2.groups.io Reply-To: devel@edk2.groups.io,lersek@redhat.com List-Unsubscribe-Post: List-Unsubscribe=One-Click List-Unsubscribe: X-Gm-Message-State: BJQcbnuWawdZpdtEcxmuGpmHx7686176AA= Content-Language: en-US Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable X-GND-Status: LEGIT Authentication-Results: spool.mail.gandi.net; dkim=pass header.d=groups.io header.s=20140610 header.b=ApF417gJ; dmarc=fail reason="SPF not aligned (relaxed), DKIM not aligned (relaxed)" header.from=redhat.com (policy=none); spf=pass (spool.mail.gandi.net: domain of bounce@groups.io designates 66.175.222.108 as permitted sender) smtp.mailfrom=bounce@groups.io On 1/20/24 18:08, Michael Brown wrote: > Suggested-by: Ray Ni > Signed-off-by: Michael Brown > --- > .../Library/NestedInterruptTplLib/NestedInterruptTplLib.inf | 1 + > 1 file changed, 1 insertion(+) >=20 > diff --git a/MdeModulePkg/Library/NestedInterruptTplLib/NestedInterruptTp= lLib.inf b/MdeModulePkg/Library/NestedInterruptTplLib/NestedInterruptTplLib= .inf > index 1e03e1364e0f..f130d6dcd213 100644 > --- a/MdeModulePkg/Library/NestedInterruptTplLib/NestedInterruptTplLib.in= f > +++ b/MdeModulePkg/Library/NestedInterruptTplLib/NestedInterruptTplLib.in= f > @@ -20,6 +20,7 @@ [Defines] > =20 > [Sources] > Tpl.c > + Iret.h > Iret.c > =20 > [Packages] (1) Please add a sentence to the commit message body: "This will allow the build system to notice changes to Iret.h". (The statement may be trivial :) I just don't like it when a commit message only consists of a subject line.) Thanks for considering! Reviewed-by: Laszlo Ersek -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#114141): https://edk2.groups.io/g/devel/message/114141 Mute This Topic: https://groups.io/mt/103852903/7686176 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/leave/12367111/7686176/19134562= 12/xyzzy [rebecca@openfw.io] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-