aboutsummaryrefslogtreecommitdiffstats
path: root/arch/um/include/asm/thread_info.h
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2011-05-19 00:36:21 -0500
committerKumar Gala <galak@kernel.crashing.org>2011-05-19 00:36:21 -0500
commit134c428e5a31f2d5ed3a70ba20dac83895ec8b82 (patch)
tree0fb28accbf09171b8a1ca792361f4160434529e8 /arch/um/include/asm/thread_info.h
parenta0496d450ab8c17f6c4d86979b1f6ba486fe9365 (diff)
parentc560bbceaf6b06e52f1ef20131b76a3fdc0a2c19 (diff)
downloadkernel_samsung_tuna-134c428e5a31f2d5ed3a70ba20dac83895ec8b82.zip
kernel_samsung_tuna-134c428e5a31f2d5ed3a70ba20dac83895ec8b82.tar.gz
kernel_samsung_tuna-134c428e5a31f2d5ed3a70ba20dac83895ec8b82.tar.bz2
Merge remote branch 'benh/merge' into benh-next
Diffstat (limited to 'arch/um/include/asm/thread_info.h')
-rw-r--r--arch/um/include/asm/thread_info.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/arch/um/include/asm/thread_info.h b/arch/um/include/asm/thread_info.h
index e2cf786..5bd1bad 100644
--- a/arch/um/include/asm/thread_info.h
+++ b/arch/um/include/asm/thread_info.h
@@ -49,7 +49,10 @@ static inline struct thread_info *current_thread_info(void)
{
struct thread_info *ti;
unsigned long mask = THREAD_SIZE - 1;
- ti = (struct thread_info *) (((unsigned long) &ti) & ~mask);
+ void *p;
+
+ asm volatile ("" : "=r" (p) : "0" (&ti));
+ ti = (struct thread_info *) (((unsigned long)p) & ~mask);
return ti;
}