From: Mathieu Desnoyers Date: Wed, 10 Jan 2024 01:55:58 +0000 (-0500) Subject: Fix: Include linux/sched/rt.h for kernels v3.9 to v3.14 X-Git-Tag: v2.13.11~1 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=c63b106760cc99aa857caa104a2d24cd3753e161;hp=c63b106760cc99aa857caa104a2d24cd3753e161;p=lttng-modules.git Fix: Include linux/sched/rt.h for kernels v3.9 to v3.14 From kernel v3.0 to v3.8, MAX_RT_PRIO is defined in linux/sched.h. From kernel v3.9 to v3.14, MAX_RT_PRIO is defined in linux/sched/rt.h, which is not included by linux/sched.h (hence this work-around). From kernel v3.15 onwards, MAX_RT_PRIO is defined in linux/sched/prio.h, which is included by linux/sched.h. Add the missing linux/sched/rt.h include for the affected kernel version range. Signed-off-by: Mathieu Desnoyers Change-Id: Ie7e1d9dc710621deca04553a9b5ba7f9a4d83c15 ---