aboutsummaryrefslogtreecommitdiff
path: root/datapath/flow.h
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-12-10 14:38:25 -0800
committerBen Pfaff <blp@nicira.com>2010-12-13 10:20:24 -0800
commit78d18dbb55dcbcf0a59bc93b0c023ab7708d974c (patch)
tree1f75bff4725358d5bca2e8272592fe2b28dc785d /datapath/flow.h
parent0f34eb123011f848083b49384ac82e5a57c8c5d1 (diff)
datapath: Include <linux/netlink.h> directly into flow.h.
While doing test builds on numerous kernel versions I found that one build failed because "struct nlattr" wasn't visible from flow.h. I guess that we accidentally depend on <linux/netlink.h> being included indirectly, but this didn't always happen. Signed-off-by: Ben Pfaff <blp@nicira.com> Acked-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'datapath/flow.h')
-rw-r--r--datapath/flow.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/datapath/flow.h b/datapath/flow.h
index d58196e7..808e731f 100644
--- a/datapath/flow.h
+++ b/datapath/flow.h
@@ -10,6 +10,7 @@
#define FLOW_H 1
#include <linux/kernel.h>
+#include <linux/netlink.h>
#include <linux/spinlock.h>
#include <linux/types.h>
#include <linux/rcupdate.h>