| Submitter | Marcelo Tosatti |
|---|---|
| Date | Aug. 10, 2010, 3:12 p.m. |
| Message ID | <70fedd76d9fe4900651f3360725fb511a19d03d5.1281453126.git.mtosatti@redhat.com> |
| Download | mbox | patch |
| Permalink | /patch/61396/ |
| State | New |
| Headers | show |
Comments
Patch
diff --git a/kvm-all.c b/kvm-all.c index 7635f2f..736c516 100644 --- a/kvm-all.c +++ b/kvm-all.c @@ -274,6 +274,9 @@ static int kvm_set_migration_log(int enable) for (i = 0; i < ARRAY_SIZE(s->slots); i++) { mem = &s->slots[i]; + if (!mem->memory_size) { + continue; + } if (!!(mem->flags & KVM_MEM_LOG_DIRTY_PAGES) == enable) { continue; }