public inbox for devel@edk2.groups.io
 help / color / mirror / Atom feed
From: "Corvin Köhne" <corvink@FreeBSD.org>
To: Ard Biesheuvel <ardb@kernel.org>, devel@edk2.groups.io
Cc: Rebecca Cran <rebecca@bsdio.com>,
	Michael Kinney <michael.d.kinney@intel.com>,
	Jiewen Yao <jiewen.yao@intel.com>,
	Jordan Justen <jordan.l.justen@intel.com>,
	Gerd Hoffmann <kraxel@redhat.com>,
	Peter Grehan <grehan@freebsd.org>,
	Michael Kubacki <mikuback@linux.microsoft.com>
Subject: Re: [edk2-devel] [PATCH v1 1/1] OvmfPkg/Bhyve: build platform info HOB
Date: Thu, 10 Aug 2023 15:33:21 +0200	[thread overview]
Message-ID: <e94ed484ddc821162542faa3609e87ab8c234fef.camel@FreeBSD.org> (raw)
In-Reply-To: <CAMj1kXEa+K5Y7RSeFdrJjQCSrMmoAvvCVnwbQ+B6JnZx9xUWqw@mail.gmail.com>

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

On Thu, 2023-08-10 at 14:55 +0200, Ard Biesheuvel wrote:
> On Thu, 10 Aug 2023 at 14:53, Corvin Köhne <corvink@freebsd.org>
> wrote:
> > 
> > On Tue, 2023-08-08 at 18:25 +0200, Ard Biesheuvel wrote:
> > > On Tue, 8 Aug 2023 at 15:33, Rebecca Cran <rebecca@bsdio.com>
> > > wrote:
> > > > 
> > > > Nit: "sizeof" is normally used like a function. And this patch
> > > > mixes the
> > > > two styles.
> > > > 
> > > 
> > > Actually, this is not unidiomatic for OVMF - sizeof takes either
> > > a
> > > type name (in which case the () are required) or an expression
> > > (in
> > > which case they are optional), and we have always permitted both
> > > idioms for the latter case.
> > > 
> > > $ git grep -cE 'sizeof\s*[:alnum:]' OvmfPkg/
> > > OvmfPkg/Bhyve/BhyveRfbDxe/VbeShim.c:4
> > > OvmfPkg/EnrollDefaultKeys/AuthData.c:4
> > > OvmfPkg/IncompatiblePciDeviceSupportDxe/IncompatiblePciDeviceSupp
> > > ort.
> > > c:7
> > > OvmfPkg/Library/PciHostBridgeUtilityLib/PciHostBridgeUtilityLib.c
> > > :1
> > > OvmfPkg/PlatformPei/MemTypeInfo.c:1
> > > OvmfPkg/QemuKernelLoaderFsDxe/QemuKernelLoaderFsDxe.c:5
> > > OvmfPkg/QemuVideoDxe/VbeShim.c:4
> > > OvmfPkg/SmmControl2Dxe/SmiFeatures.c:4
> > > OvmfPkg/Virtio10Dxe/Virtio10.c:1
> > > OvmfPkg/VirtioGpuDxe/DriverBinding.c:4
> > > 
> > > 
> > > > Other than that:
> > > > 
> > > > 
> > > > Reviewed-by: Rebecca Cran <rebecca@bsdio.com>
> > > > 
> > > 
> > > Thanks
> > > 
> > > 
> > > I've tried to merge this but I am getting errors and I cannot
> > > figure
> > > out what they are:
> > > 
> > > https://dev.azure.com/tianocore/edk2-ci/_build/results?buildId=99505&view=results
> > > 
> > 
> > Thanks. Have you tried
> > https://github.com/tianocore/tianocore.github.io/wiki/EDK-II-Code-Formatting#how-to-find-uncrustify-formatting-errors-in-continuous-integration-ci
> > 
> > I'm stuck at step 5. I can't see something like "92.5% passed".
> > Maybe I
> > don't have the permission to see it?
> > 
> 
> I was having the same problem. The instructions don't match the
> actual
> situation, so it is impossible for me to figure why the CI decided to
> reject the series.

The function is copied from OvmfPkg/PlatformPei. So, it's unlikely that
it causes issues. Nevertheless, I found a candidate:

> diff --git a/OvmfPkg/Bhyve/PlatformPei/Platform.c
b/OvmfPkg/Bhyve/PlatformPei/Platform.c
> index 5bfe435327c1..bdfc1614d284 100644
> --- a/OvmfPkg/Bhyve/PlatformPei/Platform.c
> +++ b/OvmfPkg/Bhyve/PlatformPei/Platform.c
> @@ -17,6 +17,7 @@
>   //
>   // The Library classes this module consumes
>   //
> +#include <Library/BaseMemoryLib.h>
>   #include <Library/BaseLib.h>

This is not in alphabetical order.

>   #include <Library/DebugLib.h>
>   #include <Library/HobLib.h>


-- 
Kind regards,
Corvin


-=-=-=-=-=-=-=-=-=-=-=-
Groups.io Links: You receive all messages sent to this group.
View/Reply Online (#107689): https://edk2.groups.io/g/devel/message/107689
Mute This Topic: https://groups.io/mt/100327419/7686176
Group Owner: devel+owner@edk2.groups.io
Unsubscribe: https://edk2.groups.io/g/devel/unsub [rebecca@openfw.io]
-=-=-=-=-=-=-=-=-=-=-=-



[-- Attachment #2: This is a digitally signed message part --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

  reply	other threads:[~2023-08-10 13:33 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-07-24 12:59 [edk2-devel] [PATCH v1 0/1] OvmfPkg/Bhyve: build PlatformInfoHob Corvin Köhne
2023-07-24 12:59 ` [edk2-devel] [PATCH v1 1/1] OvmfPkg/Bhyve: build platform info HOB Corvin Köhne
2023-08-08 13:32   ` Rebecca Cran
2023-08-08 16:25     ` Ard Biesheuvel
2023-08-10 12:53       ` Corvin Köhne
2023-08-10 12:55         ` Ard Biesheuvel
2023-08-10 13:33           ` Corvin Köhne [this message]
2023-08-10 15:46             ` Ard Biesheuvel
2023-08-10 19:54               ` Michael Kubacki
2023-08-14  8:15                 ` Corvin Köhne
2023-08-15  8:10                   ` Ard Biesheuvel
2023-08-18 12:32                     ` Ard Biesheuvel
     [not found] ` <1774CF3EF23450CD.25264@groups.io>
2023-08-07 11:31   ` Corvin Köhne
2023-08-07 16:52     ` Ard Biesheuvel

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=e94ed484ddc821162542faa3609e87ab8c234fef.camel@FreeBSD.org \
    --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