mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
2808d526bb
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>
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
|
|
)
|