mirror of
https://github.com/ceph/ceph-csi.git
synced 2024-11-10 16:30:19 +00:00
0d1c2aa983
This commit update go-ceph to v0.13.0 and change CEPH_VERSION in build.env to pacific. Signed-off-by: Rakshith R <rar@redhat.com>
34 lines
593 B
Go
34 lines
593 B
Go
package rados
|
|
|
|
// #include <stdint.h>
|
|
import "C"
|
|
|
|
import (
|
|
"unsafe"
|
|
)
|
|
|
|
type writeStep struct {
|
|
withoutUpdate
|
|
withoutFree
|
|
// the c pointer utilizes the Go byteslice data and no free is needed
|
|
|
|
// inputs:
|
|
b []byte
|
|
|
|
// arguments:
|
|
cBuffer *C.char
|
|
cDataLen C.size_t
|
|
cWriteLen C.size_t
|
|
cOffset C.uint64_t
|
|
}
|
|
|
|
func newWriteStep(b []byte, writeLen, offset uint64) *writeStep {
|
|
return &writeStep{
|
|
b: b,
|
|
cBuffer: (*C.char)(unsafe.Pointer(&b[0])), // TODO: must be pinned
|
|
cDataLen: C.size_t(len(b)),
|
|
cWriteLen: C.size_t(writeLen),
|
|
cOffset: C.uint64_t(offset),
|
|
}
|
|
}
|