In linux kernel 2.6.11, the TIF_NEED_RESCHED flag is recorded in thread_info struct for each task.
I searched the kernel and found that, it can only be set by the current thread on the CPU for itself. So why not put the TIF_NEED_RESCHED in some per CPU structure instead of in each thread_info?
If this flag is only used to show that current thread on this cpu needs schedule(), then I think perhaps it is OK to record it for each CPU rather than for each thread?
Thanks~