| 1521 | } |
| 1522 | |
| 1523 | extern "C" int ceph_fsync(struct ceph_mount_info *cmount, int fd, int syncdataonly) |
| 1524 | { |
| 1525 | if (!cmount->is_mounted()) |
| 1526 | return -ENOTCONN; |
| 1527 | return cmount->get_client()->fsync(fd, syncdataonly); |
| 1528 | } |
| 1529 | |
| 1530 | extern "C" int ceph_fallocate(struct ceph_mount_info *cmount, int fd, int mode, |
| 1531 | int64_t offset, int64_t length) |