]> review.fuel-infra Code Review - openstack-build/cinder-build.git/commit
Fix lvm.extend_volume to pass Gig suffix
authorJohn Griffith <john.griffith@solidfire.com>
Wed, 16 Oct 2013 01:13:45 +0000 (19:13 -0600)
committerJohn Griffith <john.griffith@solidfire.com>
Wed, 16 Oct 2013 01:13:45 +0000 (19:13 -0600)
commitec442e41d2d243003a42ed60ae862e96142a5cde
tree006aaf0478299cdd1016c74d7a4ef9986679f704
parent645a84f990c90e28548cf35b4b5f242eb0e0c286
Fix lvm.extend_volume to pass Gig suffix

The extend function in the lvm driver was not converting
the cinder size value to Gigabytes before passing the call
to the vg module.  The result was that we would attempt to
extend a volume to "new size in Megabytes" which of course
is less than the current size since we do a Gigabyte string
conversion on create and everywhere else.

This change makes sure we pass the integer change through
the sizestr method to get the G suffix needed to work properly.

Change-Id: I070962a3aa7038f612e19a93ccaa60cbc13008f6
Closes-Bug: #1240287
cinder/volume/drivers/lvm.py