1. 02 5月, 2013 40 次提交
    • A
      rbd: don't destroy rbd_dev in device release function · 200a6a8b
      Alex Elder 提交于
      Rename rbd_dev_probe_finish() to be rbd_dev_device_setup().  Its
      purpose is to set up the Linux side of an rbd device mapping.
      Rename rbd_dev_release() to be rbd_dev_device_release(), making
      it more obvious it serves as the inverse of the setup function
      (or it will).
      
      Encapsulate some of what was done in rbd_dev_release() into a new
      function rbd_dev_image_release(), which serves as the inverse of
      setting up the ceph side of the mapped rbd image.
      
      Define a new helper rbd_dev_clear_mapping() to simply zero out the
      fields of a mapping structure--the inverse of rbd_dev_set_mapping().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      200a6a8b
    • A
      rbd: drop module later · 79ab7558
      Alex Elder 提交于
      Drop the module reference at the end of rbd_remove() for symmetry
      with adding a reference at the top of rbd_add().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      79ab7558
    • A
      rbd: set up watch in rbd_dev_image_probe() · b644de2b
      Alex Elder 提交于
      Move setting up the watch request for an image so it's done in
      rbd_dev_image_probe() rather than rbd_dev_probe_finish().  Move
      it all the way up to before doing the initial probe.  This avoids
      a potential race condition, in which we get (and use) the initial
      snapshot context for an image, and it gets changed between that
      time and the time we get the watch set up.
      
      This resolves:
          http://tracker.ceph.com/issues/3871Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      b644de2b
    • A
      rbd: don't bother checking whether order changes · 96f03e08
      Alex Elder 提交于
      When a format 2 image is refreshed, code is in place to verify that
      the object order never changes from what it was originally.  This
      relies on the fact that the refresh will occur *after* an initial
      load of information about the image.
      
      An upcoming patch makes it possible for the refresh to occur first,
      so we can no longer make this order check.  The order really can't
      ever change anyway--this was just a sanity check.  So get rid of it.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      96f03e08
    • A
      rbd: don't clean up watch in device release function · 0d8189e1
      Alex Elder 提交于
      Currently, a watch on an rbd device header object gets torn down
      when its final Linux device reference gets dropped.  Instead, tear
      it down when removing the device.  If an error occurs cleaning up
      the watch event when unmapping, abort the unmap request.
      
      All images (including parents) still get watch requests set up, so
      tear these down also, in rbd_dev_remove_parent().  For now, ignore
      any errors that occur in this case.
      
      Get rid of local variable "rc" in rbd_remove(); use "ret" instead
      (they both somehow ended up defined in the function and only one is
      needed).
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      0d8189e1
    • A
      rbd: define rbd_header_name() · 332bb12d
      Alex Elder 提交于
      Define a new function rbd_header_name(), which allocates and formats
      the name of the header object for the rbd device.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      332bb12d
    • A
      rbd: move more initialization into rbd_dev_image_probe() · 9bb81c9b
      Alex Elder 提交于
      Move a block of initialization related to the "ceph-side" of an rbd
      image out of rbd_dev_probe_finish() and into rbd_dev_image_probe().
      
      Add appropriate error handling to clean things up in the event any
      of these new functions return an error.
      
      We know that rbd_dev_snaps_update(), rbd_dev_spec_update(), and
      rbd_dev_probe_parent() all clean up after themselves before they
      return an error, so no special cleanup is required except when an
      earlier call succeeds.  Since rbd_dev_spec_update() only updates the
      spec field (whose cleanup will be handled by dropping the last
      reference to the spec) there is no cleanup action associatied with
      that.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      9bb81c9b
    • A
      rbd: probe for the parent earlier · 5de10f3b
      Alex Elder 提交于
      Probe for a parent device earlier in rbd_dev_probe_finish(), before
      starting to set up the Linux side of the rbd device.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      5de10f3b
    • A
      rbd: remove parent devices on probe error · 2e93bf9e
      Alex Elder 提交于
      When an error occurs while finishing probing a device it is assumed
      that parent devices get cleaned up when deleting a device.  They
      don't.  Add a call to clean them up.  Note that this means the
      parent spec will already be cleaned up so it doesn't have to be
      in one of the rbd_add() error paths.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      2e93bf9e
    • A
      rbd: fix rbd_dev_remove_parent() · ad945fc1
      Alex Elder 提交于
      In certain error paths, it is possible for an rbd device to have a
      parent spec but no parent rbd_dev.  In rbd_dev_remove_parent() use
      the parent field rather than parent_spec in determining whether to
      try to remove any parent devices.  Use assertions to indicate that
      any non-null parent pointer has parent_spec associated with it.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      ad945fc1
    • A
      rbd: kill __rbd_remove() · b480815a
      Alex Elder 提交于
      The function __rbd_remove() is used in two spots, and it's fairly
      simple.  It combines cleanup of part of the ceph-side state as well
      as cleaning up the Linux-side state.  Just open code it in the two
      callers and eliminate the function.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      b480815a
    • A
      rbd: set mapping info earlier · d1cf5788
      Alex Elder 提交于
      Set the mapping size and features earlier in rbd_dev_probe_finish().
      
      Define rbd_dev_mapping_clear() as an inverse for setting those
      fields, and use it both in error handling in rbd_dev_image_probe()
      and in the final cleanup in rbd_dev_release().  Change the name
      of rbd_dev_set_mapping() to of rbd_dev_mapping_set().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      d1cf5788
    • A
      rbd: encapsulate removing parent devices · 05a46afd
      Alex Elder 提交于
      Encapsulate the code that removes an rbd device's parent images into
      a new function, rbd_dev_remove_parent().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      05a46afd
    • A
      rbd: encapsulate probing for parent devices · 124afba2
      Alex Elder 提交于
      Encapsulate the code that probes for an rbd device's parent images
      into a new function, rbd_dev_probe_parent().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      124afba2
    • A
      rbd: defer setting disk capacity · b5156e76
      Alex Elder 提交于
      Don't set the disk capacity until right before we announce the
      device as available for use.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      b5156e76
    • A
      rbd: only set device exists flag when ready · 129b79d4
      Alex Elder 提交于
      Hold off setting the EXISTS rbd device flag until just before we
      announce the disk as available for use.  There's no point in doing
      so any earlier than that, and at that point the device truly is
      fully set up and ready to use.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      129b79d4
    • A
      rbd: fix up some sysfs stuff · fc71d833
      Alex Elder 提交于
      This just tweaks a few things in the routines that implement
      rbd sysfs files.
      
      All of the entries for an rbd device in /sys/bus/rbd/devices/<id>/
      will represent information whose valid values are known by the time
      they are accessible.
      
      Right now we get the size of the mapped image by a call to
      get_capacity().  There's no need to do this, because that will
      return what we last set the capacity to, which is just the size
      recorded for the mapping.  So just show that value instead.
      
      We also get this under protection of the header semaphore, in order
      to provide a precisely correct value.  This isn't really necessary;
      these files are really informational only and it's not necessary to
      be so careful.
      
      Finally, print a special value in case the major device number is
      not recorded.  Right now that won't matter much but soon the parent
      images won't have devices associated with them.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      fc71d833
    • A
      rbd: fix a bug in resizing a mapping · e28626a0
      Alex Elder 提交于
      When a snapshot context update occurs, rbd_update_mapping_size() is
      called to set the capacity of the disk to record the updated
      size of the image in case it has changed.
      
      There's a bug though.  The mapping size is in units of *bytes*.  The
      code that updates the mapping size field is assigning a value that
      has been scaled down to *sectors*.
      
      Fix that.  Also, check to see if the size has actually changed, and
      don't bother updating things (specifically, calling set_capacity())
      if it has not.
      
      This resolves:
          http://tracker.ceph.com/issues/4833Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      e28626a0
    • A
      rbd: refactor rbd_dev_probe_update_spec() · 2e9f7f1c
      Alex Elder 提交于
      Fairly straightforward refactoring of rbd_dev_probe_update_spec().
      The name is changed to rbd_dev_spec_update().
      
      Rearrange it so nothing gets assigned to the spec until all of the
      names have been successfully acquired.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      2e9f7f1c
    • A
      rbd: rename rbd_dev_probe() · 71f293e2
      Alex Elder 提交于
      Rename rbd_dev_probe() to be rbd_dev_image_probe().  Its purpose
      will eventually be to probe for the existence of a valid rbd image
      for the rbd device--focusing only on the ceph side and not the Linux
      device side of initialization.
      
      For now the two "sides" are not fully separated, and this function
      is still the entry point for initializing the full rbd device.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      71f293e2
    • A
      rbd: make rbd_dev_destroy() match rbd_dev_create() · 9f5dffdc
      Alex Elder 提交于
      Currently, rbd_dev_destroy() does more than just the inverse of what
      rbd_dev_create() does.  Stop doing that, and move the two extra
      things it does into the three call sites.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      9f5dffdc
    • A
      rbd: define rbd snap context routines · 468521c1
      Alex Elder 提交于
      Encapsulate the creation of a snapshot context for rbd in a new
      function rbd_snap_context_create().  Define rbd wrappers for getting
      and dropping references to them once they're created.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      468521c1
    • A
      rbd: use rbd_warn(), not WARN_ON() · c0cd10db
      Alex Elder 提交于
      Change some calls to WARN_ON() so they use rbd_warn() instead, so we
      get consistent messaging.  A few remain but they can probably just
      go away eventually.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      c0cd10db
    • A
      rbd: move stripe_unit and stripe_count into header · 500d0c0f
      Alex Elder 提交于
      This commit added fetching if fancy striping parameters:
          09186ddb rbd: get and check striping parameters
      
      They are almost unused, but the two fields storing the information
      really belonged in the rbd_image_header structure.
      
      This patch moves them there.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      500d0c0f
    • A
      rbd: make rbd spec names pointer to const · ecb4dc22
      Alex Elder 提交于
      Make the names and image id in an rbd_spec be pointers to constant
      data.  This required the use of a local variable to hold the
      snapshot name in rbd_add_parse_args() to avoid a warning.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      ecb4dc22
    • A
      rbd: set snapshot id in rbd_dev_probe_update_spec() · e1d4213f
      Alex Elder 提交于
      Set the rbd spec's snapshot id for an image getting mapped in
      rbd_dev_probe_update_spec() rather than rbd_dev_set_mapping().
      This is the more logical place for that to happen (even though
      it means we might look up the snapshot by name twice).
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      e1d4213f
    • A
      rbd: have snap_by_name() return a snapshot · 8b0241f8
      Alex Elder 提交于
      A function called snap_by_name() ought to just look up a snapshot by
      name.  It does that, but then it assigns some stuff to the rbd
      device structure as well.
      
      Change the function to do just the lookup, and have the caller do
      the assignments that follow.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      8b0241f8
    • A
      rbd: fix image id leak in initial probe · 5655c4d9
      Alex Elder 提交于
      If a format 2 image id is found for an image being mapped, but the
      subsequent probe of the image fails, rbd_dev_probe() quits without
      freeing the image id.  Fix that.
      
      Also drop a redundant hunk of code in rbd_dev_image_id().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      5655c4d9
    • A
      rbd: have rbd_dev_image_id() set format 1 image id · c0fba368
      Alex Elder 提交于
      Currently, rbd_dev_probe() assumes that any error returned by
      rbd_dev_image_id() is most likely -ENOENT, and responds by
      calling the format 1 probe routine, rbd_dev_v1_probe().  Then,
      at the top of rbd_dev_v1_probe(), an empty string is allocated
      for the image id.
      
      This is sort of unbalanced.  Fix this by having rbd_dev_image_id()
      look for -ENOENT from its "get_id" method call.  If that is seen,
      have it allocate the empty string there rather than depending on
      rbd_dev_v1_probe() to do it.
      
      Given that this is effectively defining the format of the image,
      set rbd_dev->image_format inside rbd_dev_image_id() rather than in
      the format-specific probe routines.
      
      Also drop a redundant hunk of code in rbd_dev_image_id().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      c0fba368
    • A
      rbd: avoid dropping extra reference in rbd_free_disk() · a0cab924
      Alex Elder 提交于
      I found during some failure injection testing that the call to
      rbd_free_disk() in the error path of rbd_dev_probe_finish() was
      dropping an extra reference to the disk queue.  The problem
      occurred when put_disk tried to drop a reference to the disk's
      queue.  A call to blk_cleanup_queue() just prior to that will have
      also dropped a reference to the queue.
      
      The problem is that the reference dropped by put_disk() is assumed
      to have been taken by add_disk().  Our code has error paths that can
      occur after the disk and its queue are initialized, but before the
      call to add_disk(), and in those paths we won't have that extra
      reference.
      
      The fix is easy though.  In rbd_free_disk() we're already checking
      the disk's GENHD_FL_UP flag.  That flag is an indication that
      add_disk() has been called, so just call blk_cleanup_queue()
      conditional on that flag being set.
      
      This resolves:
          http://tracker.ceph.com/issues/4800Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      a0cab924
    • A
      rbd: use rbd_obj_method_sync() return value · f40eb349
      Alex Elder 提交于
      Now that rbd_obj_method_sync() returns the number of bytes
      returned by the method call, that value should be used by
      callers to ensure we don't overrun the valid portion of the
      buffer.
      
      Fix the two spots that remained that weren't doing that,
      rbd_dev_image_name() and rbd_dev_v2_snap_name().
      
      Rearrange the error path slightly in rbd_dev_v2_snap_name().
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      f40eb349
    • A
      rbd: fix leak of format 2 snapshot names · 6e584f52
      Alex Elder 提交于
      When the snapshot context for an rbd device gets updated (or the
      initial one is recorded) a a list of snapshot structures is created
      to represent them, one entry per snapshot.  Each entry includes a
      dynamically-allocated copy of the snapshot name.
      
      Currently the name is allocated in rbd_snap_create(), as a duplicate
      of the passed-in name.
      
      For format 1 images, the snapshot name provided is just a pointer to
      an existing name.  But for format 2 images, the passed-in name is
      already dynamically allocated, and in the the process of duplicating
      it here we are leaking the passed-in name.
      
      Fix this by dynamically allocating the name for format 1 snapshots
      also, and then stop allocating a duplicate in rbd_snap_create().
      
      Change rbd_dev_v1_snap_info() so none of its parameters is
      side-effected unless it's going to return success.
      
      This is part of:
          http://tracker.ceph.com/issues/4803Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      6e584f52
    • A
      rbd: rename __rbd_add_snap_dev() · 6087b51b
      Alex Elder 提交于
      Rename __rbd_add_snap_dev() to be rbd_snap_create().  We no longer
      have devices for non-mapped snapshots, and we're not actually
      "adding" it to the list in this function, just creating it.
      
      Rename rbd_remove_snap_dev() to be rbd_snap_destroy() for reasons
      similar to the above.  Stop having this function delete the snapshot
      from its list (to be symmetrical with its create counterpart) and do
      that in the caller instead.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      6087b51b
    • A
      rbd: only update values on snap_info success · acb1b6ca
      Alex Elder 提交于
      Change rbd_dev_v2_snap_info() so it only ever sets values of the
      size and features parameters if looking up the snapshot name was
      successful.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      acb1b6ca
    • A
      rbd: make snap_size order parameter optional · c86f86e9
      Alex Elder 提交于
      Only one of the two callers of _rbd_dev_v2_snap_size() needs the
      order value returned.  So make that an optional argument--a null
      pointer if the caller doesn't need it.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      c86f86e9
    • A
      rbd: fix leak of snapshots during initial probe · 522a0cc0
      Alex Elder 提交于
      When an rbd image is initially mapped, its snapshot context is
      collected, and then a list of snapshot entries representing the
      snapshots in that context is created.  The list is created using
      rbd_dev_snaps_update().  (This function also supports updating an
      existing snapshot list based on a new snapshot context.)
      
      If an error occurs, updating the list is aborted, and the list is
      currently left as-is, in an inconsistent state.  At that point,
      there may be a partially-constructed list, but the calling functions
      (rbd_dev_probe_finish() from rbd_dev_probe() from rbd_add()) never
      clean them up.  So this constitutes a leak.
      
      A snapshot list that is inconsistent with the current snapshot
      context is of no use, and might even be actively bad.  So rather
      than just having the caller clean it up, have rbd_dev_snaps_update()
      just clear out the entire snapshot list in the event an error
      occurs.
      
      The other place rbd_dev_snaps_update() is used is when a refresh is
      triggered, either because of a watch callback or via a write to the
      /sys/bus/rbd/devices/<id>/refresh interface.  An error while
      updating the snapshots has no substantive effect in either of those
      cases, but one of them issues a warning.  Move that warning to the
      common rbd_dev_refresh() function so it gets issued regardless of
      how it got initiated.
      
      This is part of:
          http://tracker.ceph.com/issues/4803Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      522a0cc0
    • A
      rbd: don't create sysfs entries for non-mapped snapshots · 3e83b65b
      Alex Elder 提交于
      When an rbd image gets mapped a device entry gets created for it
      under /sys/bus/rbd/devices/<id>/.  Inside that directory there are
      sysfs files that contain information about the image: its size,
      feature bits, major device number, and so on.
      
      Additionally, if that image has any snapshots, a device entry gets
      created for each of those as a "child" of the mapped device.  Each
      of these is a subdirectory of the mapped device, and each directory
      contains a few files with information about the snapshot (its
      snapshot id, size, and feature mask).
      
      There is no clear benefit to having those device entries for the
      snapshots.  The information provided via sysfs of of little real
      value--and all of it is available via rbd CLI commands.  If we
      still wanted to see the kernel's view of this information it could
      be done much more simply by including it in a single sysfs file for
      the mapped image.
      
      But there *is* a clear cost to supporting them.  Every time a snapshot
      context changes, these entries need to be updated (deleted snapshots
      removed, new snapshots created).  The rbd driver is notified of
      changes to the snapshot context via callbacks from an osd, and care
      must be taken to coordinate removal of snapshot data structures
      with the possibility of one these notifications occurring.
      
      Things would be considerably simpler if we just didn't have to
      maintain device entries for the snapshots.
      
      So get rid of them.
      
      The ability to map a snapshot of an rbd image will remain; the only
      thing lost will be the ability to query these sysfs directories for
      information about snapshots of mapped images.
      
      This resolves:
          http://tracker.ceph.com/issues/4796Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      3e83b65b
    • A
      libceph: fix byte order mismatch · 9ef1ee5a
      Alex Elder 提交于
      A WATCH op includes an object version.  The version that's supplied
      is incorrectly byte-swapped osd_req_op_watch_init() where it's first
      assigned (it's been this way since that code was first added).
      
      The result is that the version sent to the osd is wrong, because
      that value gets byte-swapped again in osd_req_encode_op().  This
      is the source of a sparse warning related to improper byte order in
      the assignment.
      
      The approach of using the version to avoid a race is deprecated
      (see http://tracker.ceph.com/issues/3871), and the watch parameter
      is no longer even examined by the osd.  So fix the assignment in
      osd_req_op_watch_init() so it no longer does the byte swap.
      
      This resolves:
          http://tracker.ceph.com/issues/3847Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      9ef1ee5a
    • A
      rbd: activate support for layered images · 770eba6e
      Alex Elder 提交于
      Now that we have most everything in place to support layered rbd
      images, enable support for them in the kernel client.  Issue a
      warning to the log that the support is considered experimental
      whenever a format 2 layered image is mapped.
      
      Note that we also have to claim to support the STRIPINGV2 feature,
      due to a mistake in the way the rbd CLI set up those flags.  This
      feature can work if it has the right parameters, and safeguards
      have been put in place to reject those images that do not have
      compatible parameters.
      Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      770eba6e
    • A
      rbd: get and check striping parameters · cc070d59
      Alex Elder 提交于
      If an rbd format 2 image indicates it supports the STRIPINGV2
      feature we need to find out its stripe unit and stripe count in
      order to know whether we can use it.  We don't yet support fancy
      striping fully, but if the default parameters are used the behavior
      is indistinguishible from non-fancy striping.
      
      This is necessary because some images require the STRIPINGV2 feature
      even if they use the default parameters.  (Which is to say the feature
      bit was erroneously set even if the feature was not used.)
      
      This resolves:
          http://tracker.ceph.com/issues/4709Signed-off-by: NAlex Elder <elder@inktank.com>
      Reviewed-by: NJosh Durgin <josh.durgin@inktank.com>
      cc070d59