[PATCH v12 1/2] sched/deadline: Add support for SD_PREFER_SIBLING on find_later_rq()

From: Byungchul Park
Date: Mon Jun 04 2018 - 04:12:07 EST


Hello Juri,

I've changed the code a little bit to avoid a compile warning caused by
'const' args of find_cpu(). Can I keep your Acked-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 Acked-by you gave me.)
Acked-by: Juri Lelli <juri.lelli@xxxxxxx>

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