Re: [PATCH] fix return of compat_sys_sched_getaffinity

Anton Blanchard (anton@samba.org)
Mon, 7 Jul 2003 02:31:37 +1000


> -EFAULT return got buggered when compat_sys_sched_getaffinity
> was added in 2.5.68.

but getaffinity returns sizeof(compat_ulong_t) on success...

Anton

> --- linux-2.5.74/kernel/compat.c.orig 2003-06-22 15:54:17.000000000 -0400
> +++ linux-2.5.74/kernel/compat.c 2003-07-06 11:29:33.000000000 -0400
> @@ -425,11 +425,9 @@
> &kernel_mask);
> set_fs(old_fs);
>
> - if (ret > 0) {
> + if (ret > 0)
> if (put_user(kernel_mask, user_mask_ptr))
> - ret = -EFAULT;
> - ret = sizeof(compat_ulong_t);
> - }
> + return -EFAULT;
>
> return ret;
> }
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/