mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
58bf45a13e
The go-ceph version 0.4.0 is available now which got some important library changes required for ceph csi project. Signed-off-by: Humble Chirammal <hchiramm@redhat.com>
13 lines
221 B
Go
13 lines
221 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
|
|
)
|