sched: clarify commment for TS_POLLING

TS_POLLING set tells the scheduler an idle_task will poll
need_resched() to look for work.

TS_POLLING clear tells resched_task() and wake_up_idle_cpu()
that the remote CPU's idle_task is now sleeping in idle,
and thus requires a reschedule interrupt notice work.

Update the description of TS_POLLING to reflect how it works.
"idle task polling need_resched, skip sending interrupt"

Wordsmithing-by: Milton Miller <miltonm@bga.com>
Signed-off-by: Len Brown <len.brown@intel.com>
Acked-by: Peter Zijlstra <peterz@infradead.org>

Len Brown e45b7fa2 541adf7c

+2 -2
+2 -2
arch/x86/include/asm/thread_info.h
··· 241 241 #define TS_USEDFPU 0x0001 /* FPU was used by this task 242 242 this quantum (SMP) */ 243 243 #define TS_COMPAT 0x0002 /* 32bit syscall active (64BIT)*/ 244 - #define TS_POLLING 0x0004 /* true if in idle loop 245 - and not sleeping */ 244 + #define TS_POLLING 0x0004 /* idle task polling need_resched, 245 + skip sending interrupt */ 246 246 #define TS_RESTORE_SIGMASK 0x0008 /* restore signal mask in do_signal() */ 247 247 #define TS_XSAVE 0x0010 /* Use xsave/xrstor */ 248 248