5
0
mirror of git://git.proxmox.com/git/pve-common.git synced 2025-01-06 21:17:37 +03:00

remove unused SysFSTools::pci_cleanup_mdev_device

its use was dropped with qemu-server 7.2-7 which we already
have a 'Breaks' entry for, so no bump required there

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2023-06-05 11:54:51 +02:00
parent 856d6202fb
commit b2bf317fcb

View File

@ -366,22 +366,6 @@ sub pci_create_mdev_device {
return undef;
}
# FIXME: move over to qemu-server, drop after PVE 8.0 and break older (7.x) qemu-server
sub pci_cleanup_mdev_device {
my ($pciid, $uuid) = @_;
# NOTE: PCI ID is actually not a requirement, /sys/bus/mdev/devices/$uuid is always available
$pciid = normalize_pci_id($pciid);
my $basedir = "$pcisysfs/devices/$pciid/$uuid";
if (! -e $basedir) {
return 1; # no cleanup necessary if it does not exist
}
return file_write("$basedir/remove", "1");
}
# encode the hostpci index and vmid into the uuid
sub generate_mdev_uuid {
my ($vmid, $index) = @_;