From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-pf1-f193.google.com (mail-pf1-f193.google.com [209.85.210.193]) by mx.groups.io with SMTP id smtpd.web11.799.1582594396907263829 for ; Mon, 24 Feb 2020 17:33:16 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@gmail.com header.s=20161025 header.b=bwv31p0Z; spf=pass (domain: gmail.com, ip: 209.85.210.193, mailfrom: newexplorerj@gmail.com) Received: by mail-pf1-f193.google.com with SMTP id y5so6296943pfb.11 for ; Mon, 24 Feb 2020 17:33:16 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025; h=from:to:cc:subject:date:message-id; bh=mjWDlUajgLlPvCuChEDiYEKDNT4cU8BfQlGlHz2Dx8A=; b=bwv31p0Zwxkm5kt16b/UpR0RuALDJARbsss5AUkgIJpnqwxWNcGEQnYvRrHqhS6y94 1jmWXi1SfDcKqr2PiCm7pV/URMRDGxazX7Iu7wawqYpaCY9yEv+PO/1JcyIT+Mj0tFV8 iuMqf4CSGBOhCsNyET9h6R6lVGUTeWErXywSEYb3wJIS0H+HZ0tL9VyFLyyAN+fZ8As5 nL1gJD7iRy5/1IPpAtwHKqNjSMUOvhN0PyzE/7YATQC2jBZhO9SlNSit3zrR+sfX+BoU 8PVWdZRmttl9JXVGw/DCs5qURfFoqs6gAHNlrlaKdVRzBzXrYCOSFybk5L5Oa+c2X/re t5Qg== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=mjWDlUajgLlPvCuChEDiYEKDNT4cU8BfQlGlHz2Dx8A=; b=CmANO3XONrgeX7FB1LayuBRyRypiILZ+UE0a6LQ4mVlDTRDkJu5gZFVORFWgIMI9Hy MD3DXH5qyFqVrSMHy4rwPCYWdetClbXugbJjJVPecVuV8roSfBpDJVwV4Mm7mJ3fG00a cWr/YEq54bQj5Xukmi4m4+/ermD1fREmsodkte6d/Y03NEp6S5gx5COMwPnnKT/FvPHe ykY2Cw3xZfNX1TZEn6S7P9/Y7w7MBnJtMaUPQZZqOwdihYJvoruL5R+0Nh13xEORcbMI kBHraW1qGlG5jdS8ixoW0oVl8+TCyg7CTCXNnVTxE5gNpgz1aJXoxg4fG947X5aHstJG RgFQ== X-Gm-Message-State: APjAAAX/qoa/EZvi0w3CvsqfRB7kTF+SpU/oqSomKC2XvupMqDAseXl9 k2oqbqEQPuW0MMF1LwvYSuaKUtc+qW8= X-Google-Smtp-Source: APXvYqzO/0szybVcPsr6ldUBnxdkSuQmvZiF5IMlvv9WmTccAzh4wphPZDjVmXu/dDK18inNSvgxnQ== X-Received: by 2002:a63:36c2:: with SMTP id d185mr58379064pga.59.1582594395899; Mon, 24 Feb 2020 17:33:15 -0800 (PST) Return-Path: Received: from localhost.localdomain ([222.67.15.87]) by smtp.gmail.com with ESMTPSA id s203sm9403802pgs.19.2020.02.24.17.33.13 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Mon, 24 Feb 2020 17:33:15 -0800 (PST) From: "GuoMinJ" To: devel@edk2.groups.io Cc: GuoMinJ Subject: [PATCH] UefiCpuPkg: ECC issue. Date: Tue, 25 Feb 2020 09:32:56 +0800 Message-Id: X-Mailer: git-send-email 2.17.1 REF: https://bugzilla.tianocore.org/show_bug.cgi?id=2553 The comment haven't indicate the output attribute. Signed-off-by: GuoMinJ --- UefiCpuPkg/Library/MpInitLib/DxeMpLib.c | 2 +- UefiCpuPkg/Library/MpInitLib/MpLib.h | 2 +- UefiCpuPkg/Library/MpInitLib/PeiMpLib.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/UefiCpuPkg/Library/MpInitLib/DxeMpLib.c b/UefiCpuPkg/Library/MpInitLib/DxeMpLib.c index a987c32109..096d1c9b4b 100644 --- a/UefiCpuPkg/Library/MpInitLib/DxeMpLib.c +++ b/UefiCpuPkg/Library/MpInitLib/DxeMpLib.c @@ -821,7 +821,7 @@ MpInitLibEnableDisableAP ( This funtion will try to invoke platform specific microcode shadow logic to relocate microcode update patches into memory. - @param[in] CpuMpData The pointer to CPU MP Data structure. + @param[in, out] CpuMpData The pointer to CPU MP Data structure. @retval EFI_SUCCESS Shadow microcode success. @retval EFI_OUT_OF_RESOURCES No enough resource to complete the operation. diff --git a/UefiCpuPkg/Library/MpInitLib/MpLib.h b/UefiCpuPkg/Library/MpInitLib/MpLib.h index 455cb3f09a..06556197c3 100644 --- a/UefiCpuPkg/Library/MpInitLib/MpLib.h +++ b/UefiCpuPkg/Library/MpInitLib/MpLib.h @@ -658,7 +658,7 @@ GetProcessorNumber ( This funtion will try to invoke platform specific microcode shadow logic to relocate microcode update patches into memory. - @param[in] CpuMpData The pointer to CPU MP Data structure. + @param[in, out] CpuMpData The pointer to CPU MP Data structure. @retval EFI_SUCCESS Shadow microcode success. @retval EFI_OUT_OF_RESOURCES No enough resource to complete the operation. diff --git a/UefiCpuPkg/Library/MpInitLib/PeiMpLib.c b/UefiCpuPkg/Library/MpInitLib/PeiMpLib.c index 17b60903c5..a548fed23f 100644 --- a/UefiCpuPkg/Library/MpInitLib/PeiMpLib.c +++ b/UefiCpuPkg/Library/MpInitLib/PeiMpLib.c @@ -644,7 +644,7 @@ MpInitLibEnableDisableAP ( This funtion will try to invoke platform specific microcode shadow logic to relocate microcode update patches into memory. - @param[in] CpuMpData The pointer to CPU MP Data structure. + @param[in, out] CpuMpData The pointer to CPU MP Data structure. @retval EFI_SUCCESS Shadow microcode success. @retval EFI_OUT_OF_RESOURCES No enough resource to complete the operation. -- 2.17.1