linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* Mainline patch-3.14.4-5.xz
@ 2014-05-31 23:27 Pavel Vasilyev
  2014-06-02 16:46 ` Clark Williams
  0 siblings, 1 reply; 6+ messages in thread
From: Pavel Vasilyev @ 2014-05-31 23:27 UTC (permalink / raw)
  To: RT

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.

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2014-06-03  0:05 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-31 23:27 Mainline patch-3.14.4-5.xz Pavel Vasilyev
2014-06-02 16:46 ` Clark Williams
2014-06-02 22:02   ` Pavel Vasilyev
2014-06-02 22:07     ` Clark Williams
2014-06-02 22:13       ` Pavel Vasilyev
2014-06-03  0:04       ` Pavel Vasilyev

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).