The big set of open-source graphics driver updates for Linux 6.15 have been merged but Linux creator Linus Torvalds isn’t particularly happy with the pull request. In particular, he’s unhappy with some new “hdrtest” testing code being built as part of full kernel builds and the “turds” it leaves behind and this code “needs to die” at least from the perspective of non-DRM driver developers.

  • thomask@lemmy.sdf.org
    link
    fedilink
    English
    arrow-up
    18
    ·
    4 days ago

    AFAICT this is super mundane. Devs added some checks that when run will drop .hdrtest files all over the source tree when you do a normal build. This is really unclean and has practical ramifications even if you gitignore them as Linus points out. Pretty much any lead developer would be upset if someone tried to merge something like this in a software project, and it has essentially nothing to do with the particular drivers or code functionality.

  • Cris@lemmy.world
    link
    fedilink
    English
    arrow-up
    54
    ·
    edit-2
    4 days ago

    Some context from the article I found helpful as a layman :)

    When seeing this mailing list post, my immediate assumption was it being some new HDR testing code that slipped under my radar from DRM-Next coverage, given all the ongoing High Dynamic Range / color management work happening recently for the Linux desktop. But when digging into the merge, it’s actually even more mundane. The “hdr” in this sense is around the C header files. The new “hdrtest” code is for the Intel Xe kernel driver and is around trying to help ensure the DRM header files are self-contained and pass kernel-doc tests. Basic maintenance checks on the included DRM header files to ensure they are all in good shape.

    Apparently this is about neither DRM, nor HDR in the sense an average user might think of those terms 😅