hulk inclusion category: feature bugzilla: https://gitee.com/openeuler/kernel/issues/I907UN CVE: NA
-------------------------------
Reserve space for posix clock related structure.
Signed-off-by: Yu Liao liaoyu15@huawei.com --- include/linux/clocksource.h | 6 ++++++ 1 file changed, 6 insertions(+)
diff --git a/include/linux/clocksource.h b/include/linux/clocksource.h index 6c1989c7bb81..0a14b187f53c 100644 --- a/include/linux/clocksource.h +++ b/include/linux/clocksource.h @@ -20,6 +20,7 @@ #include <linux/clocksource_ids.h> #include <asm/div64.h> #include <asm/io.h> +#include <linux/kabi.h>
struct clocksource; struct module; @@ -131,6 +132,11 @@ struct clocksource { u64 wd_last; #endif struct module *owner; + + KABI_RESERVE(1) + KABI_RESERVE(2) + KABI_RESERVE(3) + KABI_RESERVE(4) };
/*