mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-30 18:20:19 +00:00
d18dd87de3
as go-ceph is 0.5.0 is released updating
the dependency to latest release.
more info about release at
https://github.com/ceph/go-ceph/releases/tag/v0.5.0
Signed-off-by: Madhu Rajanna <madhupr007@gmail.com>
(cherry picked from commit 2808d526bb
)
17 lines
378 B
Go
17 lines
378 B
Go
// +build !luminous
|
|
|
|
package rbd
|
|
|
|
// #include <rbd/librbd.h>
|
|
import "C"
|
|
|
|
const (
|
|
// ImageOptionFlatten is the representation of RBD_IMAGE_OPTION_FLATTEN
|
|
// from librbd
|
|
ImageOptionFlatten = C.RBD_IMAGE_OPTION_FLATTEN
|
|
|
|
// ImageOptionCloneFormat is the representation of
|
|
// RBD_IMAGE_OPTION_CLONE_FORMAT from librbd
|
|
ImageOptionCloneFormat = C.RBD_IMAGE_OPTION_CLONE_FORMAT
|
|
)
|