sched/debug: Fix sd->*_idx limit range avoiding overflow

Commit 201c373e8e ("sched/debug: Limit sd->*_idx range on
sysctl") was an incomplete bug fix.

This patch fixes sd->*_idx limit range to [0 ~ CPU_LOAD_IDX_MAX-1]
avoiding array overflow caused by setting sd->*_idx to CPU_LOAD_IDX_MAX
on sysctl.

Signed-off-by: Libin <huawei.libin@huawei.com>
Cc: <jiang.liu@huawei.com>
Cc: <guohanjun@huawei.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/51626610.2040607@huawei.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by libin and committed by Ingo Molnar fd9b86d3 a1cbcaa9

Changed files
+1 -1
kernel
sched
+1 -1
kernel/sched/core.c
··· 4933 4933 } 4934 4934 4935 4935 static int min_load_idx = 0; 4936 - static int max_load_idx = CPU_LOAD_IDX_MAX; 4936 + static int max_load_idx = CPU_LOAD_IDX_MAX-1; 4937 4937 4938 4938 static void 4939 4939 set_table_entry(struct ctl_table *entry,