From nobody Fri Apr 26 15:48:27 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+48088+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48088+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569499498; cv=none; d=zoho.com; s=zohoarc; b=Y4ba1E9xqgyr0ZcJrLwF83jrrzc62JkoxKpg/Du8wmQcQ7B2LD0AsL10RAJ2lT8ahI2JyTy0hviUaxOOZO9P87ZNQTKWT/X0ypfNefBKxChgYIC13N+ks2/f2FP0StHDRTYaOaHHOa4DmZwT4qSfYu2b9oaAPrY7pk3notvX3/I= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569499498; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=grm42SMEZFSRZO2XnwGrjW52a27DUYgn82B1EPWmeOo=; b=irXhaYycclOLCFwojz2nC/nqZFxKOfY17R1u7k+CfPAT0KMpPtdwDN96Bc+j4ZnLQqozaC8/wPw2Jv7RZrhRjw66Jx03Ha9uwaTh/p/Kq6+bcTZY9qxn8wLqPONg4j40dGAVdDvHme0gUeZWYZ79J8JmXoGqP+awUsNvuRtPo8U= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48088+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1569499498105912.6226358654811; Thu, 26 Sep 2019 05:04:58 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id aaaaYY1788612xaaaaaaaaaa; Thu, 26 Sep 2019 05:04:57 -0700 X-Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Thu, 26 Sep 2019 05:04:57 -0700 X-Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 00F2B3082E03; Thu, 26 Sep 2019 12:04:57 +0000 (UTC) X-Received: from x1w.redhat.com (unknown [10.40.205.127]) by smtp.corp.redhat.com (Postfix) with ESMTPS id AEC0860126; Thu, 26 Sep 2019 12:04:54 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Philippe Mathieu-Daude , Jian J Wang , Hao A Wu , Dandan Bi , Liming Gao Subject: [edk2-devel] [PATCH 1/4] MdeModulePkg DxeCore: Fix typo in function name Date: Thu, 26 Sep 2019 14:04:43 +0200 Message-Id: <20190926120446.16007-2-philmd@redhat.com> In-Reply-To: <20190926120446.16007-1-philmd@redhat.com> References: <20190926120446.16007-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.46]); Thu, 26 Sep 2019 12:04:57 +0000 (UTC) Precedence: Bulk List-Unsubscribe: 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,philmd@redhat.com X-Gm-Message-State: aaaaaaaaaaaaaaaaaaaaaaaax1787277AA= Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1569499497; bh=Zb/pLf1Kpt9iZjRx3qQlUM9d5yLuQzXwActGrHZr7sI=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=qUl1SGbiCSO/o1f5IF2XO63g4yBoo5d0as3BWTywcma3pD8UW5058X8q4Y+c270wkqW MjWS/IiLEWMTsXI1QP73x/rMx07Ym3paXGrzo19qGMx83z1PT6f3eV98n2syEbjtuUUwl r6AEkssv5pjAZ3JTyw/YEYJXN7PIKoEXzII= X-ZohoMail-DKIM: pass (identity @groups.io) An extra 's' slipped into the FvIsBeingProcessed function name. Drop it to fix the typo. Signed-off-by: Philippe Mathieu-Daude Reviewed-by: Hao A Wu Reviewed-by: Laszlo Ersek Reviewed-by: Liming Gao --- MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c b/MdeModulePkg/C= ore/Dxe/Dispatcher/Dispatcher.c index c310b40b5298..fed60c48825d 100644 --- a/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c +++ b/MdeModulePkg/Core/Dxe/Dispatcher/Dispatcher.c @@ -696,7 +696,7 @@ FvHasBeenProcessed ( =20 **/ KNOWN_HANDLE * -FvIsBeingProcesssed ( +FvIsBeingProcessed ( IN EFI_HANDLE FvHandle ) { @@ -1253,7 +1253,7 @@ CoreFwVolEventProtocolNotify ( // // Since we are about to process this Fv mark it as processed. // - KnownHandle =3D FvIsBeingProcesssed (FvHandle); + KnownHandle =3D FvIsBeingProcessed (FvHandle); if (KnownHandle =3D=3D NULL) { // // The FV with the same FV name guid has already been processed. --=20 2.20.1 -=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 (#48088): https://edk2.groups.io/g/devel/message/48088 Mute This Topic: https://groups.io/mt/34297953/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Fri Apr 26 15:48:27 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+48089+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48089+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569499500; cv=none; d=zoho.com; s=zohoarc; b=oojGWSYu1MqN5LsmwXmf35Ta66nXPCCswc2xb4/9nWGWBSyLCDNxNCP+Ct0OhQ1EQtCxPg53jHhwrVsMjY/a8caUQQ81qlEHBYg4F6dfH/mIEz+iucVnyftq3qo4E7mbHB7NrFll3iRiQV2OIDNQPQR4Qnv/qAMrJJ4TbcpScyg= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569499500; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=VKOCstNBnKe56+zc+Kw6fpxH0J0EPOApUcSNY+KgdGc=; b=n59/dNNKk1e5QaoyBnqNyEvfqG/BHxFE8UYRYTfnHSBz9e5xoSUoeH4vMdOg85aeLhEx36Bolyf4QZK/MMgWfyfbzw9VGX6X+/2v4bIsax/SgVnsvlVIQOKn5cWg8DrJkL5vLSBVFz9WzNiq8Y0SIiOElXd8ulDnAfAkBHwo+zg= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48089+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1569499500748810.3099294706062; Thu, 26 Sep 2019 05:05:00 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id aaaaYY1788612xaaaaaaaaaa; Thu, 26 Sep 2019 05:05:00 -0700 X-Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Thu, 26 Sep 2019 05:05:00 -0700 X-Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id A676CC056808; Thu, 26 Sep 2019 12:04:59 +0000 (UTC) X-Received: from x1w.redhat.com (unknown [10.40.205.127]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8D5A560126; Thu, 26 Sep 2019 12:04:57 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Philippe Mathieu-Daude , Jian J Wang , Hao A Wu , Eric Dong , Ray Ni Subject: [edk2-devel] [PATCH 2/4] MdeModulePkg/PiSmmCore: Fix typo in function name Date: Thu, 26 Sep 2019 14:04:44 +0200 Message-Id: <20190926120446.16007-3-philmd@redhat.com> In-Reply-To: <20190926120446.16007-1-philmd@redhat.com> References: <20190926120446.16007-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.32]); Thu, 26 Sep 2019 12:04:59 +0000 (UTC) Precedence: Bulk List-Unsubscribe: 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,philmd@redhat.com X-Gm-Message-State: aaaaaaaaaaaaaaaaaaaaaaaax1787277AA= Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1569499500; bh=YBAF7NtIYPqsu7lhTEBYfb2Sb4YGrFzQCwOI/+7nBTw=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=AHeU292bJO21elvO/RkixJ2trySeOtFKypx2KAl6LUHh/jOaSiIflkUZG48Y+tcPpsA PtHjlx1ykEWqMWxYlY3I2+u6G3SnWKnox5IQnj7cuGsUJK5US8FcR6D8WbLHFyyx1OnM8 Wd8TYlnxetVtHvFaJBKKIG7MYJGcLxd3his= X-ZohoMail-DKIM: pass (identity @groups.io) An extra 's' slipped into the FvIsBeingProcessed function name. Drop it to fix the typo. Signed-off-by: Philippe Mathieu-Daude Reviewed-by: Hao A Wu Reviewed-by: Laszlo Ersek Reviewed-by: Liming Gao --- MdeModulePkg/Core/PiSmmCore/Dispatcher.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c b/MdeModulePkg/Core/P= iSmmCore/Dispatcher.c index 1c88c8fb17c5..e5a160ed0b92 100644 --- a/MdeModulePkg/Core/PiSmmCore/Dispatcher.c +++ b/MdeModulePkg/Core/PiSmmCore/Dispatcher.c @@ -1101,7 +1101,7 @@ FvHasBeenProcessed ( =20 **/ VOID -FvIsBeingProcesssed ( +FvIsBeingProcessed ( IN EFI_HANDLE FvHandle ) { @@ -1294,7 +1294,7 @@ SmmDriverDispatchHandler ( // // Since we are about to process this Fv mark it as processed. // - FvIsBeingProcesssed (FvHandle); + FvIsBeingProcessed (FvHandle); =20 Status =3D gBS->HandleProtocol (FvHandle, &gEfiFirmwareVolume2Protocol= Guid, (VOID **)&Fv); if (EFI_ERROR (Status)) { --=20 2.20.1 -=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 (#48089): https://edk2.groups.io/g/devel/message/48089 Mute This Topic: https://groups.io/mt/34297954/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Fri Apr 26 15:48:27 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+48090+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48090+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569499504; cv=none; d=zoho.com; s=zohoarc; b=BPG8fdUfrSHBKRPbFkJrZqzy42bDScQeMSZvgmW5quMcxpqQX+d1V4xmiXggNeg+KI5G5NVFghaHMKW6yWlwHZEsl7KY8cSlSvguYjvpMBxcv4c8yF0IY4yx+/ZdsoPT9E3AuOrye2FCDhi/hbsblgTQvOhM7a9HFNUKL49nTOo= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569499504; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=rhOVfkzwvCg9RFGqWQIuczNu2Yt8mZC8QeL9yO9ftrQ=; b=LEwumgL+qPcaqjaP/sVBN9iKZ/DreoCTvyZdw2egZgkNSI1faUBLjG9c0nK4YiPZ6ZXrJBTCn9a94jX4Y+vxGN8/1ZlTJxC3T2qHMvGtSFsBSjy56+O5Fzn84yER1sx5NxpTxJt3pIrqkeGFtqiaP/5PwZYcwhilNc0cTx6o1wU= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48090+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1569499504877698.1723096791967; Thu, 26 Sep 2019 05:05:04 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id aaaaYY1788612xaaaaaaaaaa; Thu, 26 Sep 2019 05:05:02 -0700 X-Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Thu, 26 Sep 2019 05:05:02 -0700 X-Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 1C1E3210B; Thu, 26 Sep 2019 12:05:02 +0000 (UTC) X-Received: from x1w.redhat.com (unknown [10.40.205.127]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 1106260126; Thu, 26 Sep 2019 12:04:59 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Philippe Mathieu-Daude , Achin Gupta , Jiewen Yao , Supreeth Venkatesh Subject: [edk2-devel] [PATCH 3/4] StandaloneMmPkg/Core: Fix typo in function name Date: Thu, 26 Sep 2019 14:04:45 +0200 Message-Id: <20190926120446.16007-4-philmd@redhat.com> In-Reply-To: <20190926120446.16007-1-philmd@redhat.com> References: <20190926120446.16007-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.6.2 (mx1.redhat.com [10.5.110.71]); Thu, 26 Sep 2019 12:05:02 +0000 (UTC) Precedence: Bulk List-Unsubscribe: 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,philmd@redhat.com X-Gm-Message-State: aaaaaaaaaaaaaaaaaaaaaaaax1787277AA= Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1569499502; bh=Dg2nMVyBxElrgPmLuFlMJqne8iLI7szJ92w73D4uzEM=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=Y358ybQWHFtXlY9tNwdCje64/2IdU+BFY7y5M7N/CW0VsK4Z/ObS1SpAveqF343NWun hMQ5GUqEVzPezZchjFdVdYDqFAaqAyCI1660MrBP/2+T9q/b7Utx3W16lgkGxTorX569x xlxvhjhDOtQ0/2dVUH0CS4+5OfOVbLHGgbU= X-ZohoMail-DKIM: pass (identity @groups.io) An extra 's' slipped into the FvIsBeingProcessed function name. Drop it to fix the typo. Signed-off-by: Philippe Mathieu-Daude Reviewed-by: Hao A Wu Reviewed-by: Laszlo Ersek --- StandaloneMmPkg/Core/Dispatcher.c | 4 ++-- StandaloneMmPkg/Core/FwVol.c | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/StandaloneMmPkg/Core/Dispatcher.c b/StandaloneMmPkg/Core/Dispa= tcher.c index 3788389f95ed..65996fba52e3 100644 --- a/StandaloneMmPkg/Core/Dispatcher.c +++ b/StandaloneMmPkg/Core/Dispatcher.c @@ -804,13 +804,13 @@ FvHasBeenProcessed ( =20 **/ VOID -FvIsBeingProcesssed ( +FvIsBeingProcessed ( IN EFI_HANDLE FvHandle ) { KNOWN_HANDLE *KnownHandle; =20 - DEBUG ((DEBUG_INFO, "FvIsBeingProcesssed - 0x%08x\n", FvHandle)); + DEBUG ((DEBUG_INFO, "FvIsBeingProcessed - 0x%08x\n", FvHandle)); =20 KnownHandle =3D AllocatePool (sizeof (KNOWN_HANDLE)); ASSERT (KnownHandle !=3D NULL); diff --git a/StandaloneMmPkg/Core/FwVol.c b/StandaloneMmPkg/Core/FwVol.c index 9fe0c257a43a..9aee3dbfc754 100644 --- a/StandaloneMmPkg/Core/FwVol.c +++ b/StandaloneMmPkg/Core/FwVol.c @@ -38,7 +38,7 @@ FvHasBeenProcessed ( ); =20 VOID -FvIsBeingProcesssed ( +FvIsBeingProcessed ( IN EFI_HANDLE FvHandle ); =20 @@ -86,7 +86,7 @@ Returns: return EFI_SUCCESS; } =20 - FvIsBeingProcesssed (FwVolHeader); + FvIsBeingProcessed (FwVolHeader); =20 // // First check for encapsulated compressed firmware volumes --=20 2.20.1 -=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 (#48090): https://edk2.groups.io/g/devel/message/48090 Mute This Topic: https://groups.io/mt/34297956/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D- From nobody Fri Apr 26 15:48:27 2024 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) client-ip=66.175.222.12; envelope-from=bounce+27952+48091+1787277+3901457@groups.io; helo=web01.groups.io; Authentication-Results: mx.zohomail.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48091+1787277+3901457@groups.io; dmarc=fail(p=none dis=none) header.from=redhat.com ARC-Seal: i=1; a=rsa-sha256; t=1569499505; cv=none; d=zoho.com; s=zohoarc; b=MdiIm4KB4aVEcAtTmSuCKENO50bcMaTTC6h2T3qzVfMWZIF++xjxKW/sqDZNJBlWeJbuXKW2qLvnnBdwumvr1qwEAhZ1j6LdZ9LEXtwGjkT/2bxRDGhcnV4IwrduTwoPB21BKPrraMoUmlC6T8L9Cf+IDfGNG84MioMnCJ761JA= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1569499505; h=Content-Type:Content-Transfer-Encoding:Cc:Date:From:In-Reply-To:List-Id:List-Unsubscribe:MIME-Version:Message-ID:Reply-To:References:Sender:Subject:To:ARC-Authentication-Results; bh=k7ipCYqrYJYHcaVvuEndeOYjbrFc4Jdtc4UGi3SPsmY=; b=i8k8TCHazNe88VwvthL6hYcgTyTjaN6nvs5fem21sh7QPyDXTjSkigwoSRltlpufUAtZbAk1fLsChTIjeO9oN5WhO6ipF83X8jA3rJk5j0aCYRqX211YiFg3VCgi0YIoPIKT6s4EwBi8yL+GE7Rr0+eDuYotrfwTmN59ZN/yODw= ARC-Authentication-Results: i=1; mx.zoho.com; dkim=pass; spf=pass (zoho.com: domain of groups.io designates 66.175.222.12 as permitted sender) smtp.mailfrom=bounce+27952+48091+1787277+3901457@groups.io; dmarc=fail header.from= (p=none dis=none) header.from= Received: from web01.groups.io (web01.groups.io [66.175.222.12]) by mx.zohomail.com with SMTPS id 1569499505871613.7488881940563; Thu, 26 Sep 2019 05:05:05 -0700 (PDT) Return-Path: X-Received: by 127.0.0.2 with SMTP id aaaaYY1788612xaaaaaaaaaa; Thu, 26 Sep 2019 05:05:04 -0700 X-Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by groups.io with SMTP; Thu, 26 Sep 2019 05:05:04 -0700 X-Received: from smtp.corp.redhat.com (int-mx01.intmail.prod.int.phx2.redhat.com [10.5.11.11]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id F1E49300D243; Thu, 26 Sep 2019 12:05:03 +0000 (UTC) X-Received: from x1w.redhat.com (unknown [10.40.205.127]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 8036060126; Thu, 26 Sep 2019 12:05:02 +0000 (UTC) From: =?UTF-8?B?UGhpbGlwcGUgTWF0aGlldS1EYXVkw6k=?= To: devel@edk2.groups.io Cc: Philippe Mathieu-Daude , Siyuan Fu , Jiaxin Wu Subject: [edk2-devel] [PATCH 4/4] NetworkPkg/Ip6Dxe: Fix typo in comment Date: Thu, 26 Sep 2019 14:04:46 +0200 Message-Id: <20190926120446.16007-5-philmd@redhat.com> In-Reply-To: <20190926120446.16007-1-philmd@redhat.com> References: <20190926120446.16007-1-philmd@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.11 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.40]); Thu, 26 Sep 2019 12:05:04 +0000 (UTC) Precedence: Bulk List-Unsubscribe: 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,philmd@redhat.com X-Gm-Message-State: aaaaaaaaaaaaaaaaaaaaaaaax1787277AA= Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=groups.io; q=dns/txt; s=20140610; t=1569499504; bh=M4bClwVQsSZvF8h5YjButCYp1Z8cWcHRgwgq+AZ4YqE=; h=Cc:Content-Type:Date:From:Reply-To:Subject:To; b=CKik0mzhptkPxEsz43w22KlcOgpyDqs0aM0mCQJtcNbS6aQ3kMC63/EIpJxCzGi3GRB dHlS8lNmDFq9lnKWskRGWLgHL4wGUQim175WrKQFOZ4FlR8xEyaknuYEDYPsPlA++cezW k6gCMpaerEQpMRVocomlxseqfQmcy+597Ys= X-ZohoMail-DKIM: pass (identity @groups.io) An extra 's' slipped into the 'processing' word. Drop it to fix the typo. Signed-off-by: Philippe Mathieu-Daude Reviewed-by: Hao A Wu Reviewed-by: Laszlo Ersek Reviewed-by: Siyuan Fu --- NetworkPkg/Ip6Dxe/Ip6Option.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/NetworkPkg/Ip6Dxe/Ip6Option.c b/NetworkPkg/Ip6Dxe/Ip6Option.c index 88111e3c24f5..4d92a852dc86 100644 --- a/NetworkPkg/Ip6Dxe/Ip6Option.c +++ b/NetworkPkg/Ip6Dxe/Ip6Option.c @@ -158,7 +158,7 @@ Ip6IsNDOptionValid ( // // Check the length of Ip6OptionEtherSource, Ip6OptionEtherTarget, a= nd // Ip6OptionRedirected here. For unrecognized options, silently igno= re - // and continue processsing the message. + // and continue processing the message. // if (Length =3D=3D 0) { return FALSE; --=20 2.20.1 -=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 (#48091): https://edk2.groups.io/g/devel/message/48091 Mute This Topic: https://groups.io/mt/34297957/1787277 Group Owner: devel+owner@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [importer@patchew.org] -=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-=3D-