mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 08:20:23 +00:00
23c324898a
go-ceph v0.16.0 contains subvolume metadata APIs and subvolume snapshot metadata APIs. Please note, as the APIs can not be tested in the go-ceph CI, it requires build-tag `ceph_ci_untested`. Signed-off-by: Prasanna Kumar Kalever <prasanna.kalever@redhat.com>
38 lines
802 B
Go
38 lines
802 B
Go
//go:build ceph_preview
|
|
// +build ceph_preview
|
|
|
|
package rbd
|
|
|
|
// #cgo LDFLAGS: -lrbd
|
|
// #include <stdlib.h>
|
|
// #include <rbd/librbd.h>
|
|
import "C"
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
// Rename a snapshot.
|
|
//
|
|
// Implements:
|
|
// int rbd_snap_rename(rbd_image_t image, const char *snapname,
|
|
// const char* dstsnapsname);
|
|
func (snapshot *Snapshot) Rename(destName string) error {
|
|
if err := snapshot.validate(imageNeedsIOContext | imageIsOpen | imageNeedsName | snapshotNeedsName); err != nil {
|
|
return err
|
|
}
|
|
|
|
cSrcName := C.CString(snapshot.name)
|
|
cDestName := C.CString(destName)
|
|
defer C.free(unsafe.Pointer(cSrcName))
|
|
defer C.free(unsafe.Pointer(cDestName))
|
|
|
|
err := C.rbd_snap_rename(snapshot.image.image, cSrcName, cDestName)
|
|
if err != 0 {
|
|
return getError(err)
|
|
}
|
|
|
|
snapshot.name = destName
|
|
return nil
|
|
}
|