From mboxrd@z Thu Jan 1 00:00:00 1970 Message-ID: <4C2F25C1.3050801@domain.hid> Date: Sat, 03 Jul 2010 13:57:53 +0200 From: Gilles Chanteperdrix MIME-Version: 1.0 References: <1278071353-13836-1-git-send-email-wolfgang.mauerer@domain.hid> <1278071353-13836-5-git-send-email-wolfgang.mauerer@domain.hid> In-Reply-To: <1278071353-13836-5-git-send-email-wolfgang.mauerer@domain.hid> Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Subject: Re: [Xenomai-core] [PATCH 4/7] nucleus: Add CLOCK_HOST_REALTIME bits to nkvdso List-Id: Xenomai life and development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Wolfgang Mauerer Cc: Jan Kiszka , xenomai@xenomai.org Wolfgang Mauerer wrote: > Augment the shared vdso page with all data required to > implement a clock CLOCK_HOST_REALTIME that provides time > information synchronised with the NTP-corrected time > in the Linux kernel. > > The definition of the hostrt data is placed in a separate > head file so that we can use it irregardless of pervasive > rt support is compiled in or not. Ok. Would not it be more simple to define the nkvdso even without pervasive support? > +#if defined(CONFIG_XENO_OPT_HOSTRT) && !defined(CONFIG_XENO_OPT_PERVASIVE) > + nkhostrt_data = xnarch_alloc_host_mem(sizeof(struct xnarch_hostrt_data)); should be sizeof(*nkhostrt_data) But why a dynamic allocation at all? -- Gilles.