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