mirror of https://github.com/ceph/go-ceph
rbd: add doc comments for Flush function
Signed-off-by: John Mulligan <jmulligan@redhat.com>
This commit is contained in:
parent
51e9a080bb
commit
644b7939d0
|
@ -866,6 +866,9 @@ func (image *Image) WriteAt(data []byte, off int64) (n int, err error) {
|
||||||
return ret, err
|
return ret, err
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Flush all cached writes to storage.
|
||||||
|
//
|
||||||
|
// Implements:
|
||||||
// int rbd_flush(rbd_image_t image);
|
// int rbd_flush(rbd_image_t image);
|
||||||
func (image *Image) Flush() error {
|
func (image *Image) Flush() error {
|
||||||
if err := image.validate(imageIsOpen); err != nil {
|
if err := image.validate(imageIsOpen); err != nil {
|
||||||
|
|
Loading…
Reference in New Issue