summary refs log tree commit diff stats
path: root/results/scraper/launchpad-without-comments/1294227
diff options
context:
space:
mode:
Diffstat (limited to 'results/scraper/launchpad-without-comments/1294227')
-rw-r--r--results/scraper/launchpad-without-comments/129422714
1 files changed, 14 insertions, 0 deletions
diff --git a/results/scraper/launchpad-without-comments/1294227 b/results/scraper/launchpad-without-comments/1294227
new file mode 100644
index 000000000..617562ea6
--- /dev/null
+++ b/results/scraper/launchpad-without-comments/1294227
@@ -0,0 +1,14 @@
+migration wrong handling of KVM_GET_DIRTY_LOG ioctl
+
+In the code below kvm_vm_ioctl(...) can return --errno != -1 from ioctl call,  but return only checks for -1. 
+Found during KVM-ARM migration which apperead to go through but was actually failing getting 
+memslot dirty bitmap.
+
+static int kvm_physical_sync_dirty_bitmap(....)
+{
+ ....
+ if(kvm_vm_ioctl(s, KVM_GET_DIRTY_LOG, &d) == -1) {
+   - err out
+ }
+ ... continue
+}
\ No newline at end of file