On Thu, Sep 02, 2021 at 11:21:24PM +0300, Vladimir Oltean wrote: > On Thu, Sep 02, 2021 at 09:03:01PM +0100, Russell King (Oracle) wrote: > > # systemctl list-dependencies networking.service > > networking.service > > ├─ifupdown-pre.service > > ├─system.slice > > └─network.target > > # systemctl list-dependencies ifupdown-pre.service > > ifupdown-pre.service > > ├─system.slice > > └─systemd-udevd.service > > > > Looking in the service files for a better idea: > > > > networking.service: > > Requires=ifupdown-pre.service > > Wants=network.target > > After=local-fs.target network-pre.target apparmor.service systemd-sysctl.service systemd-modules-load.service ifupdown-pre.service > > Before=network.target shutdown.target network-online.target > > > > ifupdown-pre.service: > > Wants=systemd-udevd.service > > After=systemd-udev-trigger.service > > Before=network.target > > > > So, the dependency you mention is already present. As is a dependency > > on udev. The problem is udev does all the automatic module loading > > asynchronously and in a multithreaded way. > > > > I don't think there's a way to make systemd wait for all module loads > > to complete. > > So ifupdown-pre.service has a call to "udevadm settle". This "watches > the udev event queue, and exits if all current events are handled", > according to the man page. But which current events? ifupdown-pre.service > does not have the dependency on systemd-modules-load.service, just > networking.service does. So maybe ifupdown-pre.service does not wait for > DSA to finish initializing, then it tells networking.service that all is ok. ifupdown-pre.service does have a call to udevadm settle, and that does get called from what I can tell. systemd-modules-load.service is an entire red herring. The only module listed in the various modules-load.d directories is "tun" for openvpn (which isn't currently being used.) As I've already told you (and you seem to have ignored), DSA gets loaded by udev, not by systemd-modules-load.service. systemd-modules-load.service is irrelevant to my situation. I think there's a problem with "and exits if all current events are handled" - does that mean it's fired off a modprobe process which is in progress, or does that mean that the modprobe process has completed. Given that we can see that ifup is being run while the DSA module is still in the middle of probing, the latter interpretation can not be true - unless systemd is ignoring the dependencies. Or just in general, systemd being systemd (I have very little faith in systemd behaving as it should.) -- RMK's Patch system: https://www.armlinux.org.uk/developer/patches/ FTTP is here! 40Mbps down 10Mbps up. Decent connectivity at last!