diff --git a/cinder/volume/drivers/dell_emc/xtremio.py b/cinder/volume/drivers/dell_emc/xtremio.py index 1de14af0301..17cf5fb2b6b 100644 --- a/cinder/volume/drivers/dell_emc/xtremio.py +++ b/cinder/volume/drivers/dell_emc/xtremio.py @@ -607,8 +607,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, diff --git a/releasenotes/notes/bug-1773725-xtremio-remove-provisioning-factor-y7r5uy3489yd9pbf.yaml b/releasenotes/notes/bug-1773725-xtremio-remove-provisioning-factor-y7r5uy3489yd9pbf.yaml new file mode 100644 index 00000000000..1b3675d5204 --- /dev/null +++ b/releasenotes/notes/bug-1773725-xtremio-remove-provisioning-factor-y7r5uy3489yd9pbf.yaml @@ -0,0 +1,4 @@ +--- +fixes: + The XtremIO driver has been fixed to correctly report the + "free_capacity_gb" size.