aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/lib/usercopy.c
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2012-04-25 06:24:16 -0400
committerIngo Molnar <mingo@kernel.org>2012-04-25 06:24:16 -0400
commitcd32b1616bc79b2f2ce1b1c6164beecfecc2259c (patch)
tree2e91c49b5c2bd927b9b74b7414dbb6839af601e1 /arch/x86/lib/usercopy.c
parent89b8835ec865dddd6673a8dd7003581bf2377176 (diff)
parenta720b2dd2470a52345df11dca8d6c1466599f812 (diff)
Merge tag 'l3-fix-for-3.5' of git://git.kernel.org/pub/scm/linux/kernel/git/bp/bp into x86/urgent
A small L3 cache index disable fix from Srivatsa Bhat which unifies the way the code checks for already disabled indices. ( Pulling it into v3.4 despite the v3.5 tag - the fix is small and we better keep the same code across kernel versions for such user facing interfaces. ) Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'arch/x86/lib/usercopy.c')
-rw-r--r--arch/x86/lib/usercopy.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/lib/usercopy.c b/arch/x86/lib/usercopy.c
index 57252c928f56..d6ae30bbd7bb 100644
--- a/arch/x86/lib/usercopy.c
+++ b/arch/x86/lib/usercopy.c
@@ -57,7 +57,7 @@ static inline unsigned long count_bytes(unsigned long mask)
57 * hit it), 'max' is the address space maximum (and we return 57 * hit it), 'max' is the address space maximum (and we return
58 * -EFAULT if we hit it). 58 * -EFAULT if we hit it).
59 */ 59 */
60static inline long do_strncpy_from_user(char *dst, const char __user *src, long count, long max) 60static inline long do_strncpy_from_user(char *dst, const char __user *src, long count, unsigned long max)
61{ 61{
62 long res = 0; 62 long res = 0;
63 63
@@ -100,7 +100,7 @@ static inline long do_strncpy_from_user(char *dst, const char __user *src, long
100 * too? If so, that's ok - we got as much as the user asked for. 100 * too? If so, that's ok - we got as much as the user asked for.
101 */ 101 */
102 if (res >= count) 102 if (res >= count)
103 return count; 103 return res;
104 104
105 /* 105 /*
106 * Nope: we hit the address space limit, and we still had more 106 * Nope: we hit the address space limit, and we still had more