[RESEND PATCH v12 2/2] sched/rt: Add support for SD_PREFER_SIBLING on find_lowest_rq()

From: Byungchul Park
Date: Mon Jun 18 2018 - 00:59:06 EST


Hello Steven,

I've changed the code a little bit to avoid a compile warning caused by
'const' args of find_cpu(). Can I keep your Reviewed-by?

BEFORE:
static int find_cpu(const struct cpumask *mask,
const struct sched_domain *sd,
const struct sched_domain *prefer)

AFTER:
static int find_cpu(const struct cpumask *mask,
struct sched_domain *sd,
struct sched_domain *prefer)

(I temporarily removed the Reviewed-by you gave me.)
Reviewed-by: Steven Rostedt (VMware) <rostedt@xxxxxxxxxxx>

-----8<-----