Re: [PATCH v2 net-next] net: Use __u32 in uapi net_stamp.h

2018-07-09 Thread David Miller
From: Jesus Sanchez-Palencia Date: Mon, 9 Jul 2018 16:20:56 -0700 > We are not supposed to use u32 in uapi, so change the flags member of > struct sock_txtime from u32 to __u32 instead. > > Fixes: 80b14dee2bea ("net: Add a new socket option for a future transmit > time") > Reported-by: Eric

Re: [PATCH v2 net-next] net: Use __u32 in uapi net_stamp.h

2018-07-09 Thread Eric Dumazet
On 07/09/2018 04:20 PM, Jesus Sanchez-Palencia wrote: > We are not supposed to use u32 in uapi, so change the flags member of > struct sock_txtime from u32 to __u32 instead. > > Fixes: 80b14dee2bea ("net: Add a new socket option for a future transmit > time") > Reported-by: Eric Dumazet >

[PATCH v2 net-next] net: Use __u32 in uapi net_stamp.h

2018-07-09 Thread Jesus Sanchez-Palencia
We are not supposed to use u32 in uapi, so change the flags member of struct sock_txtime from u32 to __u32 instead. Fixes: 80b14dee2bea ("net: Add a new socket option for a future transmit time") Reported-by: Eric Dumazet Signed-off-by: Jesus Sanchez-Palencia ---