mirror of
https://github.com/ceph/go-ceph
synced 2024-12-12 09:26:52 +00:00
cc9f4d6b39
Luminous and mimic have not been supported for a few releases now. There's no need to keep these build tags any more. Signed-off-by: John Mulligan <jmulligan@redhat.com>
19 lines
421 B
Go
19 lines
421 B
Go
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
|
|
}
|