Skip to content

Commit b933d6e

Browse files
committed
Merge branch 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip
Pull timer update from Thomas Gleixner: "New defines for the compat time* types so they can be shared between 32bit and 64bit builds. Not used yet, but merging them now allows the actual conversions to be merged through different maintainer trees without dependencies We still have compat interfaces for 32bit on 64bit even with the new 2038 safe timespec/val variants because pointer size is different. And for the old style timespec/val interfaces we need yet another 'compat' interface for both 32bit native and 32bit on 64bit" * 'timers-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip: y2038: Provide aliases for compat helpers
2 parents aba16dc + fd991a2 commit b933d6e

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

include/linux/time32.h

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -207,4 +207,19 @@ static inline s64 timeval_to_ns(const struct timeval *tv)
207207
extern struct timeval ns_to_timeval(const s64 nsec);
208208
extern struct __kernel_old_timeval ns_to_kernel_old_timeval(s64 nsec);
209209

210+
/*
211+
* New aliases for compat time functions. These will be used to replace
212+
* the compat code so it can be shared between 32-bit and 64-bit builds
213+
* both of which provide compatibility with old 32-bit tasks.
214+
*/
215+
#define old_time32_t compat_time_t
216+
#define old_timeval32 compat_timeval
217+
#define old_timespec32 compat_timespec
218+
#define old_itimerspec32 compat_itimerspec
219+
#define ns_to_old_timeval32 ns_to_compat_timeval
220+
#define get_old_itimerspec32 get_compat_itimerspec64
221+
#define put_old_itimerspec32 put_compat_itimerspec64
222+
#define get_old_timespec32 compat_get_timespec64
223+
#define put_old_timespec32 compat_put_timespec64
224+
210225
#endif

0 commit comments

Comments
 (0)