public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "gaoliming" <gaoliming@byosoft.com.cn>
To: <devel@edk2.groups.io>, <nicklew@nvidia.com>,
	"'Jian J Wang'" <jian.j.wang@intel.com>
Cc: "'Michael D Kinney'" <michael.d.kinney@intel.com>,
	"'Nick Ramirez'" <nramirez@nvidia.com>
Subject: 回复: [edk2-devel] [PATCH 1/1] MdeModulePkg/RegularExpressionDxe: Fix Arm build error
Date: Fri, 21 Apr 2023 14:13:25 +0800	[thread overview]
Message-ID: <019601d97418$62505810$26f10830$@byosoft.com.cn> (raw)
In-Reply-To: <MW4PR12MB70312F5B224126286F40C15AD9609@MW4PR12MB7031.namprd12.prod.outlook.com>

[-- Attachment #1: Type: text/plain, Size: 7048 bytes --]

Nickle:

 I check memset implementation in CryptoPkg\Library\IntrinsicLib and ArmPkg\Library\CompilerIntrinsicsLib. They both use int type for the second parameter. So, I suggest to update RegularExpressionDxe implementation to match them. Can you help to verify this solution?

 

Thanks

Liming

发件人: devel@edk2.groups.io <devel@edk2.groups.io> 代表 Nickle Wang via groups.io
发送时间: 2023年4月21日 11:13
收件人: devel@edk2.groups.io; gaoliming@byosoft.com.cn; 'Jian J Wang' <jian.j.wang@intel.com>
抄送: 'Michael D Kinney' <michael.d.kinney@intel.com>; Nick Ramirez <nramirez@nvidia.com>
主题: Re: [edk2-devel] [PATCH 1/1] MdeModulePkg/RegularExpressionDxe: Fix Arm build error

 

Hi Liming,

 

I noticed the build error from this CI test: Build and Test NetworkPkg,RedfishPkg IA32,X64,ARM,AARCH64,RISCV64,LOONGARCH64. And after applying my patch, CI reports build pass. Since this CI test also cover AARCH64, RISCV64 and LOONGARCH64, I think that the failure only happens to MDE_CPU_ARM.

 

Thanks,

Nickle

 

From: devel@edk2.groups.io <mailto:devel@edk2.groups.io>  <devel@edk2.groups.io <mailto:devel@edk2.groups.io> > On Behalf Of gaoliming via groups.io
Sent: Friday, April 21, 2023 10:52 AM
To: devel@edk2.groups.io <mailto:devel@edk2.groups.io> ; Nickle Wang <nicklew@nvidia.com <mailto:nicklew@nvidia.com> >; 'Jian J Wang' <jian.j.wang@intel.com <mailto:jian.j.wang@intel.com> >
Cc: 'Michael D Kinney' <michael.d.kinney@intel.com <mailto:michael.d.kinney@intel.com> >; Nick Ramirez <nramirez@nvidia.com <mailto:nramirez@nvidia.com> >
Subject: 回复: [edk2-devel] [PATCH 1/1] MdeModulePkg/RegularExpressionDxe: Fix Arm build error

 


External email: Use caution opening links or attachments 

 

Nickle:

 Is this only for MDE_CPU_ARM? I may propose to add the judgement of MDE_CPU_IA32 and MDE_CPU_X64 for memcpy & memset. memcpy & memset are for X86 only.

 

Thanks

Liming

发件人: devel@edk2.groups.io <devel@edk2.groups.io <mailto:devel@edk2.groups.io> > 代表 Nickle Wang via groups.io
发送时间: 2023年4月21日 8:26
收件人: devel@edk2.groups.io <mailto:devel@edk2.groups.io> ; Nickle Wang <nicklew@nvidia.com <mailto:nicklew@nvidia.com> >; Jian J Wang <jian.j.wang@intel.com <mailto:jian.j.wang@intel.com> >; Liming Gao <gaoliming@byosoft.com.cn <mailto:gaoliming@byosoft.com.cn> >
抄送: Michael D Kinney <michael.d.kinney@intel.com <mailto:michael.d.kinney@intel.com> >; Nick Ramirez <nramirez@nvidia.com <mailto:nramirez@nvidia.com> >
主题: Re: [edk2-devel] [PATCH 1/1] MdeModulePkg/RegularExpressionDxe: Fix Arm build error

 

Hi  <mailto:jian.j.wang@intel.com> @Jian J Wang,  <mailto:gaoliming@byosoft.com.cn> @Liming Gao,

 

Could you please help me to review this patch? There is CI build error, and it blocks my pull request here: https://github.com/tianocore/edk2/pull/4285  

 

Thanks,

Nickle

 

> -----Original Message-----

> From: devel@edk2.groups.io <mailto:devel@edk2.groups.io>  <devel@edk2.groups.io <mailto:devel@edk2.groups.io> > On Behalf Of Nickle

> Wang via groups.io

> Sent: Wednesday, April 19, 2023 4:30 PM

> To: devel@edk2.groups.io <mailto:devel@edk2.groups.io> 

> Cc: Jian J Wang <jian.j.wang@intel.com <mailto:jian.j.wang@intel.com> >; Liming Gao

> <gaoliming@byosoft.com.cn <mailto:gaoliming@byosoft.com.cn> >; Michael D Kinney <michael.d.kinney@intel.com <mailto:michael.d.kinney@intel.com> >;

> Nick Ramirez <nramirez@nvidia.com <mailto:nramirez@nvidia.com> >

> Subject: [edk2-devel] [PATCH 1/1] MdeModulePkg/RegularExpressionDxe: Fix

> Arm build error

> 

> External email: Use caution opening links or attachments

> 

> 

> Fix Arm CI build error:

> - ArmPkg/Library/CompilerIntrinsicsLib/memset.c:39:1: warning: type of

> ‘memset’ does not match original declaration [-Wlto-type-mismatch]

> MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.c:123:1:

> note: type ‘char’ should match type ‘int’

> - multiple definition of `memcpy'; OnigurumaUefiPort.obj (symbol from

> plugin):(.text+0x0): first defined here

> 

> There is intrinsics library for Arm so we don't need memset and memcpy

> function in OnigurumaUefiPort.c.

> 

> Signed-off-by: Nickle Wang < <mailto:nicklew@nvidia.com> nicklew@nvidia.com>

> Cc: Jian J Wang < <mailto:jian.j.wang@intel.com> jian.j.wang@intel.com>

> Cc: Liming Gao < <mailto:gaoliming@byosoft.com.cn> gaoliming@byosoft.com.cn>

> Cc: Michael D Kinney < <mailto:michael.d.kinney@intel.com> michael.d.kinney@intel.com>

> Cc: Nick Ramirez < <mailto:nramirez@nvidia.com> nramirez@nvidia.com>

> ---

>  .../Universal/RegularExpressionDxe/OnigurumaUefiPort.h       | 5 ++++-

>  .../Universal/RegularExpressionDxe/OnigurumaUefiPort.c       | 4 ++++

>  2 files changed, 8 insertions(+), 1 deletion(-)

> 

> diff --git

> a/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.h

> b/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.h

> index 248109b0c96e..8f8581df6783 100644

> --- a/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.h

> +++ b/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.h

> @@ -4,7 +4,7 @@

> 

>    (C) Copyright 2014-2021 Hewlett Packard Enterprise Development LP<BR>

>    Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>

> -  Copyright (c) 2022, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

> +  Copyright (c) 2022-2023, NVIDIA CORPORATION & AFFILIATES. All rights

> reserved.

> 

>    SPDX-License-Identifier: BSD-2-Clause-Patent  **/ @@ -107,6 +107,7 @@

> realloc (

>    size_t  size

>    );

> 

> +#if !defined (MDE_CPU_ARM)

>  void *

>  memcpy (

>    void          *dest,

> @@ -121,6 +122,8 @@ memset (

>    unsigned int  count

>    );

> 

> +#endif

> +

>  void

>  free (

>    void  *ptr

> diff --git

> a/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.c

> b/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.c

> index 6661c67f976e..8af57f3a93c7 100644

> --- a/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.c

> +++ b/MdeModulePkg/Universal/RegularExpressionDxe/OnigurumaUefiPort.c

> @@ -4,6 +4,7 @@

> 

>    (C) Copyright 2014-2021 Hewlett Packard Enterprise Development LP<BR>

>    Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>

> +  Copyright (c) 2023, NVIDIA CORPORATION & AFFILIATES. All rights reserved.

> 

>    SPDX-License-Identifier: BSD-2-Clause-Patent  **/ @@ -109,6 +110,7 @@

> realloc (

>    return NULL;

>  }

> 

> +#if !defined (MDE_CPU_ARM)

>  void *

>  memcpy (

>    void          *dest,

> @@ -129,6 +131,8 @@ memset (

>    return SetMem (dest, count, ch);

>  }

> 

> +#endif

> +

>  void

>  free (

>    void  *ptr

> --

> 2.17.1

> 

> 

> 

> 

> 

 




[-- Attachment #2: Type: text/html, Size: 24043 bytes --]

  reply	other threads:[~2023-04-21  6:13 UTC|newest]

Thread overview: 9+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <175748C3EBBDE1AF.26280@groups.io>
2023-04-21  0:25 ` [edk2-devel] [PATCH 1/1] MdeModulePkg/RegularExpressionDxe: Fix Arm build error Nickle Wang
2023-04-21  2:51   ` 回复: " gaoliming
2023-04-21  3:12     ` Nickle Wang
2023-04-21  6:13       ` gaoliming [this message]
2023-04-21  6:22         ` Nickle Wang
     [not found]         ` <1757DEF7FD26598A.29498@groups.io>
2023-04-21  9:11           ` Nickle Wang
2023-04-24  5:06             ` 回复: " gaoliming
2023-04-24  5:40               ` Nickle Wang
     [not found]               ` <1758C871228D4D0E.10313@groups.io>
2023-04-27 10:21                 ` Nickle Wang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-list from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to='019601d97418$62505810$26f10830$@byosoft.com.cn' \
    --to=devel@edk2.groups.io \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox