lkml.org 
[lkml]   [2012]   [Mar]   [20]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Date
From
Subject[PATCH -mm] c/r: prctl: Add missing minus in error code
The error code should be a negative value.

Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org>
---
Hi Andrew, could you please check if this patch
is valid for -mm tree and it is not some left-over
dangling in my local tree (found this typo while trying
to describe error codes for man-page).

kernel/sys.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

Index: linux-2.6.git/kernel/sys.c
===================================================================
--- linux-2.6.git.orig/kernel/sys.c
+++ linux-2.6.git/kernel/sys.c
@@ -1881,7 +1881,7 @@ static int prctl_set_mm(int opt, unsigne
up_read(&mm->mmap_sem);

if (copy_from_user(user_auxv, (const void __user *)addr, arg4))
- return EFAULT;
+ return -EFAULT;

/* Make sure the last entry is always AT_NULL */
user_auxv[AT_VECTOR_SIZE - 2] = 0;

\
 
 \ /
  Last update: 2012-03-20 23:11    [W:0.017 / U:0.248 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site