mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
772d1dfa77
v0.3.0 adds support for rbd.FeatureSet that can be used to parse the features of an RBD image. This will be used in the followup commit that adds rbdVolume.getImageInfo(). Signed-off-by: Niels de Vos <ndevos@redhat.com>
21 lines
449 B
Go
21 lines
449 B
Go
// +build !luminous,!mimic
|
|
|
|
package rbd
|
|
|
|
// #include <rbd/librbd.h>
|
|
import "C"
|
|
|
|
const (
|
|
// FeatureMigrating is the representation of RBD_FEATURE_MIGRATING from
|
|
// librbd
|
|
FeatureMigrating = uint64(C.RBD_FEATURE_MIGRATING)
|
|
|
|
// FeatureNameMigrating is the representation of
|
|
// RBD_FEATURE_NAME_MIGRATING from librbd
|
|
FeatureNameMigrating = C.RBD_FEATURE_NAME_MIGRATING
|
|
)
|
|
|
|
func init() {
|
|
featureNameToBit[FeatureNameMigrating] = FeatureMigrating
|
|
}
|