Occasionally, I will forget to link something from the mailing list in this post. To see my full mailing list activity (patches, reviews, and reports), you can view it on lore.kernel.org.

Linux kernel patches

  • Build errors: These are patches to fix various build errors that I found through testing different configurations with LLVM or were exposed by our continuous integration setup. The kernel needs to build in order to be run :)

    • arm64/sysreg: Fix a few missed conversions (v1)
    • platform/x86/amd: pmc: Fix build without debugfs (v1)
    • ASoC: Intel: sof_da7219_mx98360a: Access num_codecs through dai_link (v1)
    • lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 (v1)
  • Miscellaneous fixes: These are fixes and improvements that don’t fit into a particular category but are important to ClangBuiltLinux.

    • drm/i915: Fix CFI violations in gt_sysfs (v1)
    • x86/Kconfig: Drop check for '-mabi=ms' for CONFIG_EFI_STUB (v1)
  • Stable backports: It is important to make sure that the stable trees are as free from issues as possible, as those are the trees that devices and users use; for example, Android and Chrome OS regularly merge from stable, so if there is a problem that will impact those trees that we fixed in mainline, it should be backported.

  • Warning fixes: These are patches to fix various warnings that appear with LLVM. I used to go into detail about the different warnings and what they mean, but the important takeaway for this section is that the kernel should build warning free, as all developers should be using CONFIG_WERROR, which will turn these all into failures. Maybe these should be in the build failures section…

    • coresight: cti-sysfs: Mark coresight_cti_reg_store() as __maybe_unused (v1)
    • net/mlx5e: Ensure macsec_rule is always initiailized in macsec_fs_{r,t}x_add_rule() (v1, v2)
    • power: supply: bq25890: Fix enum conversion in bq25890_power_supply_set_property() (v1)
    • drm/amd/display: Reduce number of arguments of dml314's CalculateWatermarksAndDRAMSpeedChangeSupport() (v1)
    • drm/amd/display: Reduce number of arguments of dml314's CalculateFlipSchedule() (v1)
    • thermal/intel/int340x: Initialized ret in error path in int340x_thermal_zone_add() (v1)
    • usb: gadget: uvc: Fix argument to sizeof() in uvc_register_video() (v1)

Patch review and input

For the next sections, I link directly to my first response in the thread when possible but there are times where the link is to the main post. My responses can be seen inline by going to the bottom of the thread and clicking on my name.

Reviewing patches that are submitted is incredibly important, as it helps ensure good code quality due to catching mistakes before the patches get accepted and it can help get patches accepted faster, as some maintainers will blindly pick up patches that have been reviewed by someone that they trust.

Issue triage and reporting

The unfortunate thing about working at the intersection of two projects is we will often find bugs that are not strictly related to the project, which require some triage and reporting back to the original author of the breakage so that they can be fixed and not impact our own testing. Some of these bugs fall into that category while others are issues strictly related to this project.

Tooling improvements

These are changes to various tools that we use, such as our continuous integration setup, booting utilities, toolchain building scripts, or other closely related projects such as AOSP’s distribution of LLVM and TuxMake.

Behind the scenes

  • Every day that there is a new linux-next release, I rebase and build a few different kernel trees then boot and runtime test them on several different machines, including a Windows Subsystem for Linux instance, a Raspberry Pi 3 and 4, an Intel-based desktop, an AMD-based desktop, an Intel-based laptop, and a SolidRun Honeycomb LX2. This is not always visible because I do not report anything unless there is something broken but it can take up to a few hours each day, depending on the amount of churn and issues uncovered.

  • I participated in the 2022 Linux Plumbers Conference in Dublin, Ireland, which was great for interfacing with the greater kernel community and making them more aware of our work.

Special thanks to: