crypto: N2 - Replace racy task affinity logic
authorThomas Gleixner <[email protected]>
Thu, 13 Apr 2017 08:20:23 +0000 (10:20 +0200)
committerThomas Gleixner <[email protected]>
Sat, 15 Apr 2017 10:20:56 +0000 (12:20 +0200)
commit73810a069120aa831debb4d967310ab900f628ad
tree81d0cc6b3b9d1f8b97c295319d63779272d1d2db
parent12699ac53a2e5fbd1fd7c164b11685d55c8aa28b
crypto: N2 - Replace racy task affinity logic

spu_queue_register() needs to invoke setup functions on a particular
CPU. This is achieved by temporarily setting the affinity of the
calling user space thread to the requested CPU and reset it to the original
affinity afterwards.

That's racy vs. CPU hotplug and concurrent affinity settings for that
thread resulting in code executing on the wrong CPU and overwriting the
new affinity setting.

Replace it by using work_on_cpu_safe() which guarantees to run the code on
the requested CPU or to fail in case the CPU is offline.

Signed-off-by: Thomas Gleixner <[email protected]>
Acked-by: Herbert Xu <[email protected]>
Acked-by: "David S. Miller" <[email protected]>
Cc: Fenghua Yu <[email protected]>
Cc: Tony Luck <[email protected]>
Cc: "Rafael J. Wysocki" <[email protected]>
Cc: Peter Zijlstra <[email protected]>
Cc: Benjamin Herrenschmidt <[email protected]>
Cc: Sebastian Siewior <[email protected]>
Cc: Lai Jiangshan <[email protected]>
Cc: Viresh Kumar <[email protected]>
Cc: [email protected]
Cc: Michael Ellerman <[email protected]>
Cc: Tejun Heo <[email protected]>
Cc: Len Brown <[email protected]>
Link: http://lkml.kernel.org/r/alpine.DEB.2.20.1704131019420.2408@nanos
Signed-off-by: Thomas Gleixner <[email protected]>
drivers/crypto/n2_core.c