Vanila patch: --- a/include/linux/thread_info.h +++ b/include/linux/thread_info.h @@ -118,8 +118,6 @@ static inline __deprecated void set_need_resched(void) */ } -#define tif_need_resched() test_thread_flag(TIF_NEED_RESCHED) - #if defined TIF_RESTORE_SIGMASK && !defined HAVE_SET_RESTORE_SIGMASK /* * An arch can define its own version of set_restore_sigmask() to get the RT Code (same file): #ifdef CONFIG_PREEMPT_LAZY #define tif_need_resched() (test_thread_flag(TIF_NEED_RESCHED) || \ test_thread_flag(TIF_NEED_RESCHED_LAZY)) #define tif_need_resched_now() (test_thread_flag(TIF_NEED_RESCHED)) #define tif_need_resched_lazy() (test_thread_flag(TIF_NEED_RESCHED_LAZY)) #else #define tif_need_resched() (test_thread_flag(TIF_NEED_RESCHED)) #define tif_need_resched_now() (test_thread_flag(TIF_NEED_RESCHED)) #define tif_need_resched_lazy() (0) #endif 1 out of 1 hunk ignored -- saving rejects to file include/linux/thread_info.h.rej What to do? :) -- Pavel. -- To unsubscribe from this list: send the line "unsubscribe linux-rt-users" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html