X-Git-Url: https://git.whamcloud.com/?p=fs%2Flustre-release.git;a=blobdiff_plain;f=libcfs%2Finclude%2Flibcfs%2Flinux%2Flinux-time.h;h=454f37eec7c287db2a4b0d4a7dc5d0b115bc38e6;hp=b5be95eb5c3377ff4105bf1dab93eaee572aa8f3;hb=faeeda3a69689f48605561f9e86e5a59b7d6b1fc;hpb=782ff36d50c77652d0358dc2d0bbddf81fac8759 diff --git a/libcfs/include/libcfs/linux/linux-time.h b/libcfs/include/libcfs/linux/linux-time.h index b5be95e..454f37e 100644 --- a/libcfs/include/libcfs/linux/linux-time.h +++ b/libcfs/include/libcfs/linux/linux-time.h @@ -98,6 +98,26 @@ static inline struct timespec timespec64_to_timespec(const struct timespec64 ts6 #endif /* HAVE_TIMESPEC64 */ +#ifndef HAVE_NS_TO_TIMESPEC64 +static inline struct timespec64 ns_to_timespec64(const s64 nsec) +{ + struct timespec64 ts; + s32 rem; + + if (!nsec) + return (struct timespec64) {0, 0}; + + ts.tv_sec = div_s64_rem(nsec, NSEC_PER_SEC, &rem); + if (unlikely(rem < 0)) { + ts.tv_sec--; + rem += NSEC_PER_SEC; + } + ts.tv_nsec = rem; + + return ts; +} +#endif + #ifndef HAVE_KTIME_ADD # define ktime_add(lhs, rhs) ({ (ktime_t){ .tv64 = (lhs).tv64 + (rhs).tv64 }; }) #endif /* !HAVE_KTIME_ADD */ @@ -194,25 +214,37 @@ static inline ktime_t timespec64_to_ktime(struct timespec64 ts) static inline unsigned long cfs_time_seconds(time64_t seconds) { - return nsecs_to_jiffies(seconds * NSEC_PER_SEC); + return nsecs_to_jiffies64(seconds * NSEC_PER_SEC); } +#ifdef HAVE_NEW_DEFINE_TIMER +# ifndef TIMER_DATA_TYPE +# define TIMER_DATA_TYPE struct timer_list * +# endif + +#define CFS_DEFINE_TIMER(_name, _function, _expires, _data) \ + DEFINE_TIMER((_name), (_function)) +#else +# ifndef TIMER_DATA_TYPE +# define TIMER_DATA_TYPE unsigned long +# endif + +#define CFS_DEFINE_TIMER(_name, _function, _expires, _data) \ + DEFINE_TIMER((_name), (_function), (_expires), (_data)) +#endif + #ifdef HAVE_TIMER_SETUP #define cfs_timer_cb_arg_t struct timer_list * #define cfs_from_timer(var, callback_timer, timer_fieldname) \ from_timer(var, callback_timer, timer_fieldname) #define cfs_timer_setup(timer, callback, data, flags) \ timer_setup((timer), (callback), (flags)) -#define CFS_DEFINE_TIMER(_name, _function, _expires, _data) \ - DEFINE_TIMER((_name), (_function)) #define cfs_timer_cb_arg(var, timer_fieldname) (&(var)->timer_fieldname) #else #define cfs_timer_cb_arg_t unsigned long #define cfs_from_timer(var, data, timer_fieldname) (typeof(var))(data) #define cfs_timer_setup(timer, callback, data, flags) \ setup_timer((timer), (callback), (data)) -#define CFS_DEFINE_TIMER(_name, _function, _expires, _data) \ - DEFINE_TIMER((_name), (_function), (_expires), (_data)) #define cfs_timer_cb_arg(var, timer_fieldname) (cfs_timer_cb_arg_t)(var) #endif