From eda164cd4a0b5dc9ffd0fb42e9239d252973ef25 Mon Sep 17 00:00:00 2001 From: damnkiwi6120 <41501288+damnkiwi6120@users.noreply.github.com> Date: Wed, 7 May 2025 02:53:32 +0800 Subject: [PATCH] Replace reference URLs with working ones The linuxfoundation.org entry at L50 goes 404, so I replace it with a working one from kernel.org. Both links are checked with archive.org. https://web.archive.org/web/20231114104223/https://lists.linuxfoundation.org/pipermail/virtualization/2015-August/030331.html https://web.archive.org/web/20230503084037/https://docs.kernel.org/s390/pci.html --- src/udev/udev-builtin-net_id.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/udev/udev-builtin-net_id.c b/src/udev/udev-builtin-net_id.c index 406ff7a86f0..e20faae8dfb 100644 --- a/src/udev/udev-builtin-net_id.c +++ b/src/udev/udev-builtin-net_id.c @@ -47,7 +47,7 @@ static sd_device *device_skip_virtio(sd_device *dev) { /* there can only ever be one virtio bus per parent device, so we can * safely ignore any virtio buses. see - * http://lists.linuxfoundation.org/pipermail/virtualization/2015-August/030331.html */ + * https://lore.kernel.org/virtualization/CAPXgP137A=CdmggtVPUZXbnpTbU9Tewq-sOjg9T8ohYktct1kQ@mail.gmail.com/ */ while (dev) { if (!device_in_subsystem(dev, "virtio")) break; @@ -379,7 +379,7 @@ static int parse_hotplug_slot_from_function_id(sd_device *dev, int slots_dirfd, * here and just check for the existence of the slot directory. As this directory has to exist, we're * emitting a debug message for the unlikely case it's not found. Note that the domain part doesn't * belong to the slot name here because there's a 1-to-1 relationship between PCI function and its - * hotplug slot. See https://docs.kernel.org/s390/pci.html for more details. */ + * hotplug slot. See https://docs.kernel.org/arch/s390/pci.html for more details. */ assert(dev); assert(slots_dirfd >= 0); -- 2.47.3