aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog.md8
-rw-r--r--TODO.md3
-rwxr-xr-xkvmx2
3 files changed, 11 insertions, 2 deletions
diff --git a/ChangeLog.md b/ChangeLog.md
index 68b066e..14e33d4 100644
--- a/ChangeLog.md
+++ b/ChangeLog.md
@@ -1,6 +1,12 @@
# ChangeLog
-## 0.3.0 - unreleased
+## 0.3.0 - 2024-09-19
+
+* Increase the maximum number of shared folders to avoid error in when KVMX
+ attempts to setup too many 9p folder shares:
+
+ kvm: -drive file=/var/cache/qemu/$guest/box.img,if=virtio,discard=unmap:
+ PCI: no slot/function available for virtio-blk-pci, all in use or reserved`
* Per-mountpoint mode option (ro, rw).
diff --git a/TODO.md b/TODO.md
index b073221..06674f4 100644
--- a/TODO.md
+++ b/TODO.md
@@ -51,6 +51,9 @@
## Folder sharing
+* [ ] Dynamically add PCI bridges depending on the number of shared folders,
+ avoiding PCI slot exhaustion.
+
* [ ] Mount/umount/remount commands to manage shared folders.
* [ ] Try to umount all sshfs volumes in the host when powering off.
diff --git a/kvmx b/kvmx
index 8b5f666..9574a99 100755
--- a/kvmx
+++ b/kvmx
@@ -19,7 +19,7 @@
#
# Basic parameters
-VERSION="0.2.0"
+VERSION="0.3.0"
BASENAME="`basename $0`"
DIRNAME="`dirname $0`"
ACTION="$1"