f71f619bc9
virt-manager-1.2.0.tar.bz2 virtinst-default-xen-to-qcow2-format.patch * OVMF/AAVMF Support (Laszlo Ersek, Giuseppe Scrivano, Cole Robinson) * Improved support for AArch64 qemu/kvm * virt-install: Support –disk type=network parameters * virt-install: Make –disk just work * virt-install: Add –disk sgio= option (Giuseppe Scrivano) * addhardware: default to an existing bus when adding a new disk (Giuseppe Scrivano) * virt-install: Add –input device option * virt-manager: Unify storagebrowser and storage details functionality * virt-manager: allow setting a custom connection row name * virt-install: Support –hostdev scsi passthrough * virt-install: Fill in a bunch of –graphics spice options * Disable spice image compression for new local VMs * virt-manager: big reworking of the migration dialog - Dropped tarball and patches virt-manager-1.1.0.tar.bz2 0b391fe9-Gtk-30.patch 20fe2873-check-for-empty-network-name.patch 24faf867-ignore-error-403-on-directories.patch 65f7017e-createnet-fix.patch activate-default-console.patch ce74cd77-connection-state-tick-updates-lock.patch virtinst-ppc64le.patch virtinst-supported-disk-formats.patch virtinst-support-suse-distros.patch virt-manager-1.1.0.tar.bz2 virtman-default-lxc-uri.patch virtman-stable-os-support.patch OBS-URL: https://build.opensuse.org/package/show/Virtualization/virt-manager?expand=0&rev=226
40 lines
1.6 KiB
Diff
40 lines
1.6 KiB
Diff
Reference: bnc#887868
|
|
Refresh pools status before fetch_pools.
|
|
|
|
Currently, when connecting to hypervisor, if there are pools active
|
|
but in fact target path already deleted (or for other reasons the
|
|
pool is not working), libvirtd not refresh status yet, fetch_pools
|
|
will fail, that will cause "connecting to hypervisor" process
|
|
reporting error and exit. The whole connection work failed.
|
|
|
|
With the patch, always refresh pool status before fetch pools. Let
|
|
the libvirtd pool status reflect the reality, avoid the non-synced
|
|
status affects the hypervisor connection.
|
|
|
|
Signed-off-by: Chunyan Liu <cyliu@suse.com>
|
|
|
|
Index: virt-manager-1.1.0/virtinst/pollhelpers.py
|
|
===================================================================
|
|
--- virt-manager-1.1.0.orig/virtinst/pollhelpers.py
|
|
+++ virt-manager-1.1.0/virtinst/pollhelpers.py
|
|
@@ -132,6 +132,19 @@ def fetch_pools(backend, origmap, build_
|
|
|
|
if backend.check_support(
|
|
backend.SUPPORT_CONN_LISTALLSTORAGEPOOLS) and not _force_old_poll:
|
|
+
|
|
+ # Refresh pools before poll_helper. For those
|
|
+ # 'active' but target path not exist (or other reasons
|
|
+ # causing the pool not working), but libvirtd not
|
|
+ # refresh the status, this will make it refreshed
|
|
+ # and mark that pool as 'inactive'.
|
|
+ objs = backend.listAllStoragePools()
|
|
+ for obj in objs:
|
|
+ try:
|
|
+ obj.refresh(0)
|
|
+ except Exception, e:
|
|
+ pass
|
|
+
|
|
return _new_poll_helper(origmap, name,
|
|
backend.listAllStoragePools, build_func)
|
|
else:
|