]> code.ossystems Code Review - openembedded-core.git/blob
3684cc21bfb693abc7444108ed7a807b5c142982
[openembedded-core.git] /
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
5 MIME-Version: 1.0
6 Content-Type: text/plain; charset=UTF-8
7 Content-Transfer-Encoding: 8bit
8
9 Herton reports the following error when building a userspace program that
10 includes net_stamp.h:
11
12  In file included from foo.c:2:
13  /usr/include/linux/net_tstamp.h:158:2: error: unknown type name
14  ‘clockid_t’
15    clockid_t clockid; /* reference clockid */
16    ^~~~~~~~~
17
18 Fix it by using __kernel_clockid_t in place of clockid_t.
19
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>
26 ---
27 Upstream-Status: Backport [https://github.com/torvalds/linux/commit/e2c4cf7f98a519eb4d95532bfa06bcaf3562fed5]
28
29  include/uapi/linux/net_tstamp.h | 4 ++--
30  1 file changed, 2 insertions(+), 2 deletions(-)
31
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 {
37  };
38  
39  struct sock_txtime {
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 */
44  };
45  
46  #endif /* _NET_TIMESTAMPING_H */
47 -- 
48 2.20.1
49