Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 57d3da29 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

time: add ns_to_ktime()



Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
parent 79b3feff
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -327,4 +327,10 @@ extern void ktime_get_ts(struct timespec *ts);
/* Get the real (wall-) time in timespec format: */
#define ktime_get_real_ts(ts)	getnstimeofday(ts)

static inline ktime_t ns_to_ktime(u64 ns)
{
	static const ktime_t ktime_zero = { .tv64 = 0 };
	return ktime_add_ns(ktime_zero, ns);
}

#endif