Blob Blame History Raw
From: Thomas Gleixner <tglx@linutronix.de>
Date: Thu, 29 Aug 2019 08:19:40 +0200
Subject: posix-timers: Unbreak CONFIG_POSIX_TIMERS=n build
Patch-mainline: v5.4-rc1
Git-commit: 8f2edb4a78f7f5fa35c025849152b1d2dfaee4eb
References: bsc#1162702

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>
Acked-by: Daniel Wagner <dwagner@suse.de>
---
 include/linux/posix-timers.h |    1 +
 1 file changed, 1 insertion(+)

--- a/include/linux/posix-timers.h
+++ b/include/linux/posix-timers.h
@@ -161,6 +161,7 @@ static inline void posix_cputimers_rt_wa
 	},
 #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,