projects
/
GitHub
/
moto-9609
/
android_kernel_motorola_exynos9610.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
eafe921
)
include/uapi/linux/openvswitch.h: use __u32 from linux/types.h
author
Mikko Rapeli
<mikko.rapeli@iki.fi>
Mon, 22 Aug 2016 18:32:55 +0000
(20:32 +0200)
committer
David S. Miller
<davem@davemloft.net>
Mon, 22 Aug 2016 23:25:15 +0000
(16:25 -0700)
Fixes userspace compiler error:
error: unknown type name ‘uint32_t’
Signed-off-by: Mikko Rapeli <mikko.rapeli@iki.fi>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/uapi/linux/openvswitch.h
patch
|
blob
|
blame
|
history
diff --git
a/include/uapi/linux/openvswitch.h
b/include/uapi/linux/openvswitch.h
index d95a3018f6a1e7018f2b8774c4513387a270b3fd..645499a634f764a7b647b620ab53bf23a59c4bd4 100644
(file)
--- a/
include/uapi/linux/openvswitch.h
+++ b/
include/uapi/linux/openvswitch.h
@@
-632,8
+632,8
@@
enum ovs_hash_alg {
* @hash_basis: basis used for computing hash.
*/
struct ovs_action_hash {
-
uint32_t
hash_alg; /* One of ovs_hash_alg. */
-
uint32_t
hash_basis;
+
__u32
hash_alg; /* One of ovs_hash_alg. */
+
__u32
hash_basis;
};
/**