Re: Linux 6.10-rc3

From: Guenter Roeck
Date: Mon Jun 10 2024 - 12:12:04 EST


On Sun, Jun 09, 2024 at 02:27:01PM -0700, Linus Torvalds wrote:
> Hmm. Absolutely nothing stands out here.
>
> We've got driver fixes (networking, gpu, HID and x86 platform drivers
> account for the bulk of it), architecture fixes (mostly kvm-related),
> and some core kernel updates (filesystems, mm, core networking). And
> just the regular random fixes.
>
> IOW, nothing looks particularly odd, and size-wise this is also pretty
> much right where you'd expect for an rc3.
>
> So things look good, the water is warm, please jump right in and keep testing,
>

>From my testbed:

Build results:
total: 158 pass: 158 fail: 0
Qemu test results:
total: 470 pass: 469 fail: 1
Failed tests:
m68k:mcf5208evb:m5208:m5208evb_defconfig:initrd
Unit test results:
pass: 228426 fail: 0

The m68k test failure is really a build failure.

Building m68k:mcf5208evb:m5208:m5208evb_defconfig:initrd ... failed
init/initramfs.c:578:31: error: 'sysfs_bin_attr_simple_read' undeclared here (not in a function)
578 | static BIN_ATTR(initrd, 0440, sysfs_bin_attr_simple_read, NULL, 0);

seen with m5208evb_defconfig+CONFIG_BLK_DEV_INITRD=y. It was introduced
with commit 66bc1a173328 ("treewide: Use sysfs_bin_attr_simple_read()
helper"). The fix is available in linux-next as commit 44a45be57f85
("sysfs: Unbreak the build around sysfs_bin_attr_simple_read()").

Guenter