]> Git Repo - linux.git/commitdiff
include/uapi/linux/openvswitch.h: use __u32 from linux/types.h
authorMikko Rapeli <[email protected]>
Mon, 22 Aug 2016 18:33:19 +0000 (20:33 +0200)
committerDavid S. Miller <[email protected]>
Mon, 22 Aug 2016 23:25:15 +0000 (16:25 -0700)
Kernel uapi header are supposed to use them. Fixes userspace compile error:

linux/openvswitch.h:583:2: error: unknown type name ‘uint32_t’

Signed-off-by: Mikko Rapeli <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
include/uapi/linux/openvswitch.h

index 645499a634f764a7b647b620ab53bf23a59c4bd4..54c3b4f4aceb4f7cdf5f23319f5c707751e3e7a7 100644 (file)
@@ -583,7 +583,7 @@ enum ovs_userspace_attr {
 #define OVS_USERSPACE_ATTR_MAX (__OVS_USERSPACE_ATTR_MAX - 1)
 
 struct ovs_action_trunc {
-       uint32_t max_len; /* Max packet size in bytes. */
+       __u32 max_len; /* Max packet size in bytes. */
 };
 
 /**
This page took 0.055902 seconds and 4 git commands to generate.