From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from foss.arm.com ([217.140.101.70]:39738 "EHLO foss.arm.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730214AbeK3EML (ORCPT ); Thu, 29 Nov 2018 23:12:11 -0500 From: Vincenzo Frascino Subject: [PATCH v2 05/28] kernel: Add clock_mode support Date: Thu, 29 Nov 2018 17:05:07 +0000 Message-ID: <20181129170530.37789-6-vincenzo.frascino@arm.com> In-Reply-To: <20181129170530.37789-1-vincenzo.frascino@arm.com> References: <20181129170530.37789-1-vincenzo.frascino@arm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: linux-arch-owner@vger.kernel.org List-ID: To: linux-arch@vger.kernel.org, linux-arm-kernel@lists.infradead.org Cc: Catalin Marinas , Will Deacon , Arnd Bergmann , Russell King , Ralf Baechle , Paul Burton , Daniel Lezcano , Thomas Gleixner , Mark Salyzyn , Peter Collingbourne Message-ID: <20181129170507.h3E7w_LZP8PeTd3nzFbzkF2CpAWf0K-gkjdxk4061Mk@z> Some architectures store the clock mode into the vDSO datapage, consequently the generic datapage needs to be aligned to expose this information. This patch adds support for clock_mode in datapage.h. Cc: Arnd Bergmann Signed-off-by: Vincenzo Frascino --- include/vdso/datapage.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/vdso/datapage.h b/include/vdso/datapage.h index 0a7bdccf5773..deed007f567d 100644 --- a/include/vdso/datapage.h +++ b/include/vdso/datapage.h @@ -43,6 +43,7 @@ struct vdso_data { __u32 tz_minuteswest; /* Whacky timezone stuff */ __u32 tz_dsttime; __u32 use_syscall; + __u32 clock_mode; }; #endif /* !__ASSEMBLY__ */ -- 2.19.2