|
|
On Fri, Sep 19, 2008 at 04:33:23PM +0300, Riku Voipio wrote:
>
> Signed-off-by: Riku Voipio <riku.voipio@xxxxxx>
> ---
> 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:
Looks good for me. Added to my patchset.
> --
> 1.5.6.5
>
>
> --
> "rm -rf" only sounds scary if you don't have backups
>
>
--
Regards, Kirill A. Shutemov
+ Belarus, Minsk
+ ALT Linux Team, http://www.altlinux.com/
|
|