aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--include/linux/ktime.h18
-rw-r--r--net/socket.c20
2 files changed, 22 insertions, 16 deletions
diff --git a/include/linux/ktime.h b/include/linux/ktime.h
index e83512f63df5..bbca12804d12 100644
--- a/include/linux/ktime.h
+++ b/include/linux/ktime.h
@@ -330,6 +330,24 @@ static inline ktime_t ktime_sub_us(const ktime_t kt, const u64 usec)
330 330
331extern ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs); 331extern ktime_t ktime_add_safe(const ktime_t lhs, const ktime_t rhs);
332 332
333/**
334 * ktime_to_timespec_cond - convert a ktime_t variable to timespec
335 * format only if the variable contains data
336 * @kt: the ktime_t variable to convert
337 * @ts: the timespec variable to store the result in
338 *
339 * Returns true if there was a successful conversion, false if kt was 0.
340 */
341static inline bool ktime_to_timespec_cond(const ktime_t kt, struct timespec *ts)
342{
343 if (kt.tv64) {
344 *ts = ktime_to_timespec(kt);
345 return true;
346 } else {
347 return false;
348 }
349}
350
333/* 351/*
334 * The resolution of the clocks. The resolution value is returned in 352 * The resolution of the clocks. The resolution value is returned in
335 * the clock_getres() system call to give application programmers an 353 * the clock_getres() system call to give application programmers an
diff --git a/net/socket.c b/net/socket.c
index 36883fea44f3..280283f03ccc 100644
--- a/net/socket.c
+++ b/net/socket.c
@@ -681,16 +681,6 @@ int kernel_sendmsg(struct socket *sock, struct msghdr *msg,
681} 681}
682EXPORT_SYMBOL(kernel_sendmsg); 682EXPORT_SYMBOL(kernel_sendmsg);
683 683
684static int ktime2ts(ktime_t kt, struct timespec *ts)
685{
686 if (kt.tv64) {
687 *ts = ktime_to_timespec(kt);
688 return 1;
689 } else {
690 return 0;
691 }
692}
693
694/* 684/*
695 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP) 685 * called from sock_recv_timestamp() if sock_flag(sk, SOCK_RCVTSTAMP)
696 */ 686 */
@@ -723,17 +713,15 @@ void __sock_recv_timestamp(struct msghdr *msg, struct sock *sk,
723 713
724 714
725 memset(ts, 0, sizeof(ts)); 715 memset(ts, 0, sizeof(ts));
726 if (skb->tstamp.tv64 && 716 if (sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE) &&
727 sock_flag(sk, SOCK_TIMESTAMPING_SOFTWARE)) { 717 ktime_to_timespec_cond(skb->tstamp, ts + 0))
728 skb_get_timestampns(skb, ts + 0);
729 empty = 0; 718 empty = 0;
730 }
731 if (shhwtstamps) { 719 if (shhwtstamps) {
732 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) && 720 if (sock_flag(sk, SOCK_TIMESTAMPING_SYS_HARDWARE) &&
733 ktime2ts(shhwtstamps->syststamp, ts + 1)) 721 ktime_to_timespec_cond(shhwtstamps->syststamp, ts + 1))
734 empty = 0; 722 empty = 0;
735 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) && 723 if (sock_flag(sk, SOCK_TIMESTAMPING_RAW_HARDWARE) &&
736 ktime2ts(shhwtstamps->hwtstamp, ts + 2)) 724 ktime_to_timespec_cond(shhwtstamps->hwtstamp, ts + 2))
737 empty = 0; 725 empty = 0;
738 } 726 }
739 if (!empty) 727 if (!empty)