Yu Watanabe
Yu Watanabe
@davem330 Could you fix https://github.com/torvalds/linux/commit/3ddc2231c8108302a8229d3c5849ee792a63230d ? https://github.com/torvalds/linux/blob/3ddc2231c8108302a8229d3c5849ee792a63230d/net/ipv4/devinet.c#L1695 Here, `ifm->ifa_flags` is `u8`, but `ifa->ifa_flags` is `u32`. So, some flags are lost in the below. https://github.com/torvalds/linux/blob/3ddc2231c8108302a8229d3c5849ee792a63230d/net/ipv4/devinet.c#L1735
@DaanDeMeyer About the failure in CentOS, it seems the test wrongly detects that `sch_fq_codel` module does not exist. But, from https://gitlab.com/redhat/centos-stream/rpms/kernel/-/blob/c9s/kernel-x86_64-rhel.config, sch_fq_codel is enabled and built-in. Maybe `modprobe` is broken??
@DaanDeMeyer Nice. And the other remaining failure should be fixed by #32748.
@DaanDeMeyer For CentOS CIs and testing-farm:fedora-rawhide-x86_64, simple Makefile for TEST-85 is necessary.
About activation policy failures in mkosi, unfortunately I have no idea and I cannot reproduce the issue on my laptop. And, the journal files of the failed tests seem to...
@DaanDeMeyer Thanks. ``` [ 1289.041546] systemd-networkd-tests.py[453]: test_activation_policy_required_for_online (__main__.NetworkdNetworkTests.test_activation_policy_required_for_online) (policy='always-down', required='yes') ... FAIL [ 1289.057316] systemd-journald[300]: [🡕] Suppressed 3126 messages from systemd-networkd.service ``` Huh...
The test generates so many debugging logs. Could you add something like the following? ``` # /etc/systemd/journald.conf.d/disable-ratelimit.conf [Journal] RateLimitIntervalSec=0 RateLimitBurst=0 ```
Ah, I understand the failure. For some reasons, the test generates many debugging logs. The test checks journal but the expected line is suppressed because of ratelimiting. As I disabled...
Again, I think we should add a dummy Makefile something like that in TEST-85: ```make # SPDX-License-Identifier: LGPL-2.1-or-later all setup run clean clean-again: true .PHONY: all setup run clean clean-again...
This potentially breaks existing setups...