From: Thomas Gleixner Date: Sat, 24 May 2008 15:24:34 +0000 (+0200) Subject: x86: fixup the fallout of the bitops changes X-Git-Tag: v2.6.27-rc1~1106^2~251^21~1 X-Git-Url: https://err.no/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=3711ccb07b7f0a13f4f1aa16a8fdca9c930f21ca;p=linux-2.6 x86: fixup the fallout of the bitops changes Signed-off-by: Thomas Gleixner --- diff --git a/include/asm-x86/thread_info.h b/include/asm-x86/thread_info.h index 25d7105325..895339d2bc 100644 --- a/include/asm-x86/thread_info.h +++ b/include/asm-x86/thread_info.h @@ -245,7 +245,7 @@ static inline void set_restore_sigmask(void) { struct thread_info *ti = current_thread_info(); ti->status |= TS_RESTORE_SIGMASK; - set_bit(TIF_SIGPENDING, &ti->flags); + set_bit(TIF_SIGPENDING, (unsigned long *)&ti->flags); } #endif /* !__ASSEMBLY__ */