Merge "[XtremIO] Remove provisioning factor when reporting"

This commit is contained in:
Zuul 2018-08-07 22:47:40 +00:00 committed by Gerrit Code Review
commit 064ef8a2f1
2 changed files with 5 additions and 2 deletions

View File

@ -608,8 +608,7 @@ class XtremIOVolumeDriver(san.SanDriver):
'driver_version': self.VERSION,
'storage_protocol': self.protocol,
'total_capacity_gb': physical_space,
'free_capacity_gb': (free_physical *
self.provisioning_factor),
'free_capacity_gb': free_physical,
'provisioned_capacity_gb': actual_prov,
'max_over_subscription_ratio': self.provisioning_factor,
'thin_provisioning_support': True,

View File

@ -0,0 +1,4 @@
---
fixes:
The XtremIO driver has been fixed to correctly report the
"free_capacity_gb" size.