diff --git a/ServerIssueManual.html b/ServerIssueManual.html
index e3ea3b6..dfde0c5 100644
--- a/ServerIssueManual.html
+++ b/ServerIssueManual.html
@@ -148,7 +148,6 @@ The server boots fine after installing the 6.14 kernel and selecting it manually
Running proxmox-boot-tool kernel list command gives the following results:
-
Running proxmox-boot-tool kernel pin 6.14.11-8-bpo12-pve outputs:
+
-
Manually selected kernels:
@@ -160,40 +159,105 @@ Running proxmox-boot-tool kernel list command gives the following results
+
-E: no kernel image found in /boot for '6.14.11-8-bpo12-pve', not setting default. + E: no kernel image found in /boot for '6.14.11-8-bpo12-pve', not setting default. -Possible Proxmox kernel versions are: -6.14.11-8-bpo12-pve -6.8.12-23-pve -
+ Possible Proxmox kernel versions are: + 6.14.11-8-bpo12-pve + 6.8.12-23-pve +
++ +
+ apt-mark hold proxmox-kernel-6.14.11-8-bpo12-pve-signed + proxmox-kernel-6.14.11-8-bpo12-pve-signed set on hold. + + apt-mark hold proxmox-kernel-6.14 + proxmox-kernel-6.14 set on hold. + + apt-mark hold proxmox-kernel-6.8.12-23-pve-signed + proxmox-kernel-6.8.12-23-pve-signed set on hold. + + apt-mark hold proxmox-kernel-6.8.12-9-pve-signed + proxmox-kernel-6.8.12-9-pve-signed set on hold. + + apt-mark hold proxmox-kernel-6.8 + proxmox-kernel-6.8 set on hold. + +
++
+WARNING: apt does not have a stable CLI interface. Use with caution in scripts. + +proxmox-default-kernel/stable,now 1.1.0 all [installed] +proxmox-kernel-6.14.11-8-bpo12-pve-signed/stable,now 6.14.11-8~bpo12+1 amd64 [installed,automatic] +proxmox-kernel-6.14/stable,now 6.14.11-8~bpo12+1 all [installed,upgradable to: 6.14.11-9~bpo12+1] +proxmox-kernel-6.8.12-23-pve-signed/stable,now 6.8.12-23 amd64 [installed,automatic] +proxmox-kernel-6.8.12-9-pve-signed/stable,now 6.8.12-9 amd64 [installed] +proxmox-kernel-6.8/stable,now 6.8.12-23 all [installed,upgradable to: 6.8.12-25] +proxmox-kernel-helper/stable,now 8.1.4 all [installed] +
+
+drivers/scsi/scsi.c | 7 +++++++
+1 file changed, 7 insertions(+)
+
+diff --git a/drivers/scsi/scsi.c b/drivers/scsi/scsi.c
+index 3e0c0381277a..f0464db3f9de 100644
+--- a/drivers/scsi/scsi.c
++++ b/drivers/scsi/scsi.c
+@@ -350,6 +350,13 @@ static int scsi_get_vpd_size(struct scsi_device *sdev, u8 page)
+ if (result < SCSI_VPD_HEADER_SIZE)
+ return 0;
+
++ if (result > sizeof(vpd)) {
++ dev_warn_once(&sdev->sdev_gendev,
++ "%s: long VPD page 0 length: %d bytes\n",
++ __func__, result);
++ result = sizeof(vpd);
++ }
++
+ result -= SCSI_VPD_HEADER_SIZE;
+ if (!memchr(&vpd[SCSI_VPD_HEADER_SIZE], page, result))
+ return 0;
+--
+2.44.0
+
++I believe that an update to the kernel probably caused the issue. Reading online seems to indicate that this is somewhat common with older cards like mine. I did not have good backups in place yet, they were automatically done but on the same RAID as the read of the data, which is of course bad practice, but I was planning on sending these to my other server automatically eventually. +For now, I have an external USB drive connected where the VM backups are stored. + + +
++https://forum.proxmox.com/threads/timed-out-for-waiting-for-udev-queue-being-empty.129481/ +