From 461eb20191a9b36dbc815a21bc288e453f4e7e98 Mon Sep 17 00:00:00 2001 From: Michael Hanselmann <hansmi@google.com> Date: Wed, 3 Oct 2012 20:26:53 +0200 Subject: [PATCH] cmdlib._WipeDisks: Code formatting - LogInfo takes *args, no need to replace values right away - Don't overwrite wipe_chunk_size right after it's been set Signed-off-by: Michael Hanselmann <hansmi@google.com> Reviewed-by: Bernardo Dal Seno <bdalseno@google.com> --- lib/cmdlib.py | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/lib/cmdlib.py b/lib/cmdlib.py index 71881c9d4..4cccd511d 100644 --- a/lib/cmdlib.py +++ b/lib/cmdlib.py @@ -9002,12 +9002,10 @@ def _WipeDisks(lu, instance): try: for idx, device in enumerate(instance.disks): # The wipe size is MIN_WIPE_CHUNK_PERCENT % of the instance disk but - # MAX_WIPE_CHUNK at max - wipe_chunk_size = min(constants.MAX_WIPE_CHUNK, device.size / 100.0 * - constants.MIN_WIPE_CHUNK_PERCENT) - # we _must_ make this an int, otherwise rounding errors will - # occur - wipe_chunk_size = int(wipe_chunk_size) + # MAX_WIPE_CHUNK at max. Truncating to integer to avoid rounding errors. + wipe_chunk_size = \ + int(min(constants.MAX_WIPE_CHUNK, + device.size / 100.0 * constants.MIN_WIPE_CHUNK_PERCENT)) lu.LogInfo("* Wiping disk %d", idx) logging.info("Wiping disk %d for instance %s on node %s using" @@ -9020,18 +9018,21 @@ def _WipeDisks(lu, instance): while offset < size: wipe_size = min(wipe_chunk_size, size - offset) + logging.debug("Wiping disk %d, offset %s, chunk %s", idx, offset, wipe_size) + result = lu.rpc.call_blockdev_wipe(node, (device, instance), offset, wipe_size) result.Raise("Could not wipe disk %d at offset %d for size %d" % (idx, offset, wipe_size)) + now = time.time() offset += wipe_size if now - last_output >= 60: eta = _CalcEta(now - start_time, offset, size) - lu.LogInfo(" - done: %.1f%% ETA: %s" % - (offset / float(size) * 100, utils.FormatSeconds(eta))) + lu.LogInfo(" - done: %.1f%% ETA: %s", + offset / float(size) * 100, utils.FormatSeconds(eta)) last_output = now finally: logging.info("Resuming synchronization of disks for instance '%s'", -- GitLab