提交 d16f803d 编写于 作者: J John Ferlan

storage: Use virStorageBackendRefreshVolTargetUpdate after wipeVol

https://bugzilla.redhat.com/show_bug.cgi?id=1437797

Rather than using refreshVol which essentially only updates the
allocation, capacity, and permissions for the volume, but not
the format which does get updated in a pool refresh - let's use
the same helper that pool refresh uses in order to update the
volume target.
上级 7c2945b8
...@@ -2496,8 +2496,11 @@ storageVolWipePattern(virStorageVolPtr vol, ...@@ -2496,8 +2496,11 @@ storageVolWipePattern(virStorageVolPtr vol,
if (backend->wipeVol(vol->conn, obj, voldef, algorithm, flags) < 0) if (backend->wipeVol(vol->conn, obj, voldef, algorithm, flags) < 0)
goto cleanup; goto cleanup;
if (backend->refreshVol && /* Instead of using the refreshVol, since much changes on the target
backend->refreshVol(vol->conn, obj, voldef) < 0) * volume, let's update using the same function as refreshPool would
* use when it discovers a volume. The only failure to capture is -1,
* we can ignore -2. */
if (virStorageBackendRefreshVolTargetUpdate(voldef) == -1)
goto cleanup; goto cleanup;
ret = 0; ret = 0;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册