--- libaitio/src/aio.c 2010/07/05 09:25:06 1.1.2.1 +++ libaitio/src/aio.c 2010/07/05 11:01:56 1.1.2.2 @@ -2,7 +2,7 @@ /* - * io_rread() Raw read function + * io_rread() Raw VFS read function * @fd = File handle * @buf = Read buffer * @nbytes = Read buffer size @@ -33,6 +33,10 @@ io_rread(int fd, void * __restrict buf, size_t nbytes, } #ifdef AIO_OPS + /* This made for generate EOF for file */ + if (update && offset >= lseek(fd, 0, SEEK_END)) + return 0; + memset(buf, 0, nbytes); memset(&acb, 0, sizeof acb); acb.aio_fildes = fd; @@ -67,7 +71,7 @@ io_rread(int fd, void * __restrict buf, size_t nbytes, } /* - * io_rwrite() Raw write function + * io_rwrite() Raw VFS write function * @fd = File handle * @buf = Write buffer * @nbytes = Write bytes from buffer @@ -98,7 +102,6 @@ io_rwrite(int fd, void * __restrict buf, size_t nbytes } #ifdef AIO_OPS - memset(buf, 0, nbytes); memset(&acb, 0, sizeof acb); acb.aio_fildes = fd; acb.aio_nbytes = nbytes;