qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH] Add readahead syscall


From: Riku Voipio
Subject: [Qemu-devel] [PATCH] Add readahead syscall
Date: Fri, 19 Sep 2008 16:33:23 +0300
User-agent: Mutt/1.5.11+cvs20060126

Signed-off-by: Riku Voipio <address@hidden>
---
 linux-user/syscall.c |    3 ++-
 1 files changed, 2 insertions(+), 1 deletions(-)

diff --git a/linux-user/syscall.c b/linux-user/syscall.c
index cb75c94..6b38d8a 100644
--- a/linux-user/syscall.c
+++ b/linux-user/syscall.c
@@ -5738,7 +5738,8 @@ abi_long do_syscall(void *cpu_env, int num, abi_long arg1,
         break;
 #ifdef TARGET_NR_readahead
     case TARGET_NR_readahead:
-        goto unimplemented;
+        ret = get_errno(readahead(arg1, arg2, arg3));
+        break;
 #endif
 #ifdef TARGET_NR_setxattr
     case TARGET_NR_setxattr:
-- 
1.5.6.5


-- 
"rm -rf" only sounds scary if you don't have backups




reply via email to

[Prev in Thread] Current Thread [Next in Thread]