]> git.baikalelectronics.ru Git - kernel.git/commit
sched/debug: Make sd->flags sysctl read-only
authorValentin Schneider <valentin.schneider@arm.com>
Wed, 15 Apr 2020 21:05:05 +0000 (22:05 +0100)
committerPeter Zijlstra <peterz@infradead.org>
Thu, 30 Apr 2020 18:14:39 +0000 (20:14 +0200)
commit9818427c6270a9ce8c52c8621026fe9cebae0f92
tree8fc738fb34d0ccc019f224a589555499a387a857
parent45da27732b0b9b7a04696653065d5e6037bc5ac0
sched/debug: Make sd->flags sysctl read-only

Writing to the sysctl of a sched_domain->flags directly updates the value of
the field, and goes nowhere near update_top_cache_domain(). This means that
the cached domain pointers can end up containing stale data (e.g. the
domain pointed to doesn't have the relevant flag set anymore).

Explicit domain walks that check for flags will be affected by
the write, but this won't be in sync with the cached pointers which will
still point to the domains that were cached at the last sched_domain
build.

In other words, writing to this interface is playing a dangerous game. It
could be made to trigger an update of the cached sched_domain pointers when
written to, but this does not seem to be worth the trouble. Make it
read-only.

Signed-off-by: Valentin Schneider <valentin.schneider@arm.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20200415210512.805-3-valentin.schneider@arm.com
kernel/sched/debug.c