Re: [PATCH v9 8/8] Add 32 bit VDSO time support for 64 bit kernel

2014-02-02 Thread H. Peter Anvin
On 02/02/2014 01:41 PM, stef...@seibold.net wrote: > + > +struct api_timespec { > + longtv_sec; /* seconds */ > + longtv_nsec;/* microseconds */ > +}; > + /* nanoseconds */ ;) -hpa -- To unsubscribe from this list: send the line "unsubscribe linux-kernel"

[PATCH v9 8/8] Add 32 bit VDSO time support for 64 bit kernel

2014-02-02 Thread stefani
From: Stefani Seibold This patch add the VDSO time support for the IA32 Emulation Layer. Due the nature of the kernel headers and the LP64 compiler where the size of a long and a pointer differs against a 32 bit compiler, there is a lot of type hacking necessary. Signed-off-by: Stefani Seibold