| // Copyright 2017 The Fuchsia Authors. All rights reserved. |
| // Use of this source code is governed by a BSD-style license that can be |
| // found in the LICENSE file. |
| |
| #include "src/storage/fvm/client.h" |
| |
| #include <fuchsia/hardware/block/volume/c/fidl.h> |
| #include <stdlib.h> |
| #include <zircon/device/block.h> |
| |
| #include <iterator> |
| |
| #include <fbl/algorithm.h> |
| |
| namespace fvm { |
| |
| zx_status_t ResetAllSlices(block_client::BlockDevice* device) { |
| uint64_t vslice_start[1]; |
| vslice_start[0] = 1; |
| |
| while (true) { |
| fuchsia_hardware_block_volume_VsliceRange |
| ranges[fuchsia_hardware_block_volume_MAX_SLICE_REQUESTS]; |
| size_t actual_ranges_count; |
| zx_status_t status = device->VolumeQuerySlices(vslice_start, std::size(vslice_start), ranges, |
| &actual_ranges_count); |
| if (status == ZX_ERR_OUT_OF_RANGE) { |
| return ZX_OK; |
| } |
| if (status != ZX_OK) { |
| return status; |
| } |
| if (actual_ranges_count != 1 || ranges[0].count == 0) { |
| return ZX_ERR_IO; |
| } |
| |
| // Free any slices that were allocated. |
| if (ranges[0].allocated) { |
| status = device->VolumeShrink(vslice_start[0], ranges[0].count); |
| if (status != ZX_OK) { |
| return status; |
| } |
| } |
| |
| // Move to the next portion of the block address space. |
| vslice_start[0] += ranges[0].count; |
| } |
| } |
| |
| } // namespace fvm |