aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/posix-timers.h
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2019-08-29 08:19:40 +0200
committerThomas Gleixner <tglx@linutronix.de>2019-08-29 08:25:21 +0200
commit8f2edb4a78f7f5fa35c025849152b1d2dfaee4eb (patch)
tree846c29073d10f0bb4346b94ef1fd456e2d2d8d80 /include/linux/posix-timers.h
parenttick: Mark sched_timer to expire in hard interrupt context (diff)
downloadlinux-dev-8f2edb4a78f7f5fa35c025849152b1d2dfaee4eb.tar.xz
linux-dev-8f2edb4a78f7f5fa35c025849152b1d2dfaee4eb.zip
posix-timers: Unbreak CONFIG_POSIX_TIMERS=n build
The rework of the posix-cpu-timers patch series dropped the empty declaration of struct cpu_timer for the CONFIG_POSIX_TIMERS=n case which causes the build to fail: ./include/linux/posix-timers.h:218:20: error: field 'cpu' has incomplete type Add it back. Fixes: 60bda037f1dd ("posix-cpu-timers: Utilize timerqueue for storage") Reported-by: Ingo Molnar <mingo@kernel.org> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/linux/posix-timers.h')
-rw-r--r--include/linux/posix-timers.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/posix-timers.h b/include/linux/posix-timers.h
index f9fbb4c620c1..e685916551bf 100644
--- a/include/linux/posix-timers.h
+++ b/include/linux/posix-timers.h
@@ -161,6 +161,7 @@ static inline void posix_cputimers_rt_watchdog(struct posix_cputimers *pct,
},
#else
struct posix_cputimers { };
+struct cpu_timer { };
#define INIT_CPU_TIMERS(s)
static inline void posix_cputimers_init(struct posix_cputimers *pct) { }
static inline void posix_cputimers_group_init(struct posix_cputimers *pct,