From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tejaswi Tanikella Subject: [PATCH 2/2] ktime: helpers to convert between ktime and jiffies Date: Mon, 11 Jun 2018 17:22:28 +0530 Message-ID: <20180611115218.GA23539@tejaswit-linux.qualcomm.com> References: <20180611115058.GA12452@tejaswit-linux.qualcomm.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: andrew@lunn.ch, davem@davemloft.net To: netdev@vger.kernel.org, f.fainelli@gmail.com Return-path: Received: from smtp.codeaurora.org ([198.145.29.96]:34050 "EHLO smtp.codeaurora.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932880AbeFKLwh (ORCPT ); Mon, 11 Jun 2018 07:52:37 -0400 Content-Disposition: inline In-Reply-To: <20180611115058.GA12452@tejaswit-linux.qualcomm.com> Sender: netdev-owner@vger.kernel.org List-ID: Signed-off-by: Tejaswi Tanikella --- include/linux/ktime.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/include/linux/ktime.h b/include/linux/ktime.h index 5b9fddb..4881483 100644 --- a/include/linux/ktime.h +++ b/include/linux/ktime.h @@ -96,6 +96,10 @@ static inline ktime_t timeval_to_ktime(struct timeval tv) /* Convert ktime_t to nanoseconds - NOP in the scalar storage format: */ #define ktime_to_ns(kt) (kt) +/* ktime to jiffies and back */ +#define ktime_to_jiffies(kt) nsecs_to_jiffies(kt) +#define jiffies_to_ktime(j) jiffies_to_nsecs(j) + /** * ktime_compare - Compares two ktime_t variables for less, greater or equal * @cmp1: comparable1 -- 1.9.1