[PATCH v12 2/2] arm64: boot: Support Flat Image Tree

2024-03-28 Thread Simon Glass
Add a script which produces a Flat Image Tree (FIT), a single file containing the built kernel and associated devicetree files. Compression defaults to gzip which gives a good balance of size and performance. The files compress from about 86MB to 24MB using this approach. The FIT can be used by b

[PATCH v12 0/2] arm64: Add a build target for Flat Image Tree

2024-03-28 Thread Simon Glass
Flat Image Tree (FIT) is a widely used file format for packaging a kernel and associated devicetree files[1]. It is not specific to any one bootloader, as it is supported by U-Boot, coreboot, Linuxboot, Tianocore and Barebox. This series adds support for building a FIT as part of the kernel build.

Re: [PATCH v11 2/2] arm64: boot: Support Flat Image Tree

2024-03-28 Thread Simon Glass
Hi Masahiro, On Wed, 27 Mar 2024 at 03:39, Masahiro Yamada wrote: > > On Thu, Mar 14, 2024 at 1:28 PM Simon Glass wrote: > > > > Add a script which produces a Flat Image Tree (FIT), a single file > > containing the built kernel and associated devicetree files. > > Compression defaults to gzip wh

Re: [RFC PATCH 1/2] tracing: Introduce stack filter for trace events

2024-03-28 Thread Steven Rostedt
On Thu, 25 Jan 2024 06:50:21 + Sicheng Liu wrote: Sorry for the late reply, this got missed in a flood of other patches, not to mention it was sent when I was very behind and probably just skipped it for "todo later". Well, it's later ;-) > Stack filter can be used to filter event call stack

Re: [PATCH v4 2/2] scripts: checkpatch: check unused parameters for function-like macro

2024-03-28 Thread Barry Song
On Fri, Mar 29, 2024 at 5:01 AM Jeff Johnson wrote: > > On 3/27/2024 7:21 PM, Barry Song wrote: > > From: Xining Xu > > > > If function-like macros do not utilize a parameter, it might result in a > > build warning. In our coding style guidelines, we advocate for utilizing > > static inline func

[PATCH 2/2] docs: handling-regressions.rst: clarify that "Closes:" tags work too

2024-03-28 Thread Karel Balej
The regressions handling manual claims that regzbot associates patches fixing an issue with the report based on the occurrence of the appropriate "Link:" trailers. It reasons that this does not add any burden on the maintainers/bug fix authors as this is already mandated by the "Submitting patches"

[PATCH 1/2] docs: *-regressions.rst: unify quoting, add missing word

2024-03-28 Thread Karel Balej
Quoting of the '"no regressions" rule' expression differs between occurrences, sometimes being presented as '"no regressions rule"'. Unify the quoting using the first form which seems semantically correct or is at least used dominantly, albeit marginally. One of the occurrences is obviously missin

[PATCH 0/2] regressions documentation improvements

2024-03-28 Thread Karel Balej
Hello, this small series suggests two (hopefully) improvements for the regressions-related documentation texts. The first one is perhaps unnecessarily nitpicky but if nothing else, it at least adds a missing word. The other one tries to clarify for future readers a question which was on my mind

Re: [PATCH v4 2/2] scripts: checkpatch: check unused parameters for function-like macro

2024-03-28 Thread Jeff Johnson
On 3/27/2024 7:21 PM, Barry Song wrote: > From: Xining Xu > > If function-like macros do not utilize a parameter, it might result in a > build warning. In our coding style guidelines, we advocate for utilizing > static inline functions to replace such macros. This patch verifies > compliance wi

Re: [PATCH v8 19/20] virt: geniezone: Add tracing support for hyp call and vcpu exit_reason

2024-03-28 Thread Steven Rostedt
On Thu, 28 Dec 2023 18:51:46 +0800 Yi-De Wu wrote: > Add tracepoints for hypervisor calls and VCPU exit reasons in GenieZone > driver. It aids performance debugging by providing more information > about hypervisor operations and VCPU behavior. > > Command Usage: > echo geniezone:* >> /sys/kernel

Re: [PATCH v4 2/2] scripts: checkpatch: check unused parameters for function-like macro

2024-03-28 Thread Joe Perches
On Thu, 2024-03-28 at 15:21 +1300, Barry Song wrote: > From: Xining Xu > > If function-like macros do not utilize a parameter, it might result in a > build warning. In our coding style guidelines, we advocate for utilizing > static inline functions to replace such macros. This patch verifies >