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,7 +866,10 @@ func (image *Image) WriteAt(data []byte, off int64) (n int, err error) {
|
|||
return ret, err
|
||||
}
|
||||
|
||||
// int rbd_flush(rbd_image_t image);
|
||||
// Flush all cached writes to storage.
|
||||
//
|
||||
// Implements:
|
||||
// int rbd_flush(rbd_image_t image);
|
||||
func (image *Image) Flush() error {
|
||||
if err := image.validate(imageIsOpen); err != nil {
|
||||
return err
|
||||
|
|
Loading…
Reference in New Issue