1 From e2c4cf7f98a519eb4d95532bfa06bcaf3562fed5 Mon Sep 17 00:00:00 2001
2 From: Davide Caratti <dcaratti@redhat.com>
3 Date: Mon, 17 Dec 2018 11:26:38 +0100
4 Subject: [PATCH] net: Use __kernel_clockid_t in uapi net_stamp.h
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
9 Herton reports the following error when building a userspace program that
12 In file included from foo.c:2:
13 /usr/include/linux/net_tstamp.h:158:2: error: unknown type name
15 clockid_t clockid; /* reference clockid */
18 Fix it by using __kernel_clockid_t in place of clockid_t.
20 Fixes: 80b14dee2bea ("net: Add a new socket option for a future transmit time.")
21 Cc: Timothy Redaelli <tredaelli@redhat.com>
22 Reported-by: Herton R. Krzesinski <herton@redhat.com>
23 Signed-off-by: Davide Caratti <dcaratti@redhat.com>
24 Tested-by: Paolo Abeni <pabeni@redhat.com>
25 Signed-off-by: David S. Miller <davem@davemloft.net>
27 Upstream-Status: Backport [https://github.com/torvalds/linux/commit/e2c4cf7f98a519eb4d95532bfa06bcaf3562fed5]
29 include/uapi/linux/net_tstamp.h | 4 ++--
30 1 file changed, 2 insertions(+), 2 deletions(-)
32 diff --git a/include/uapi/linux/net_tstamp.h b/include/uapi/linux/net_tstamp.h
33 index 97ff3c17ec4d..e5b39721c6e4 100644
34 --- a/include/uapi/linux/net_tstamp.h
35 +++ b/include/uapi/linux/net_tstamp.h
36 @@ -155,8 +155,8 @@ enum txtime_flags {
40 - clockid_t clockid; /* reference clockid */
41 - __u32 flags; /* as defined by enum txtime_flags */
42 + __kernel_clockid_t clockid;/* reference clockid */
43 + __u32 flags; /* as defined by enum txtime_flags */
46 #endif /* _NET_TIMESTAMPING_H */