diff options
| -rw-r--r-- | xlators/storage/posix/src/posix-aio.c | 10 | 
1 files changed, 10 insertions, 0 deletions
diff --git a/xlators/storage/posix/src/posix-aio.c b/xlators/storage/posix/src/posix-aio.c index 075fd320e7e..37ab4a3a5a0 100644 --- a/xlators/storage/posix/src/posix-aio.c +++ b/xlators/storage/posix/src/posix-aio.c @@ -570,4 +570,14 @@ posix_aio_off (xlator_t *this)          return 0;  } +void +__posix_fd_set_odirect (fd_t *fd, struct posix_fd *pfd, int opflags, +                        off_t offset, size_t size) +{ +        xlator_t        *this = THIS; +        gf_log (this->name, GF_LOG_INFO, +                "Linux AIO not availble at build-time." +                " Continuing with synchronous IO"); +        return; +}  #endif  | 
