aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBen Pfaff <blp@nicira.com>2010-05-27 09:24:11 -0700
committerBen Pfaff <blp@nicira.com>2010-05-27 09:24:11 -0700
commit5153ef3da7cd08b88fb398815c4141ff398016f2 (patch)
treeb6b55244cef756e4381afc6275ddcd37592729cc
parente75e8930d35a286270b33a746c2b61b5f2185b8b (diff)
datapath: Add missing #include to datapath/flow.h.
This caused a problem on builds under 2.6.26 (and possibly other versions).
-rw-r--r--datapath/flow.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/datapath/flow.h b/datapath/flow.h
index 4a393cb9..9704489a 100644
--- a/datapath/flow.h
+++ b/datapath/flow.h
@@ -1,5 +1,5 @@
/*
- * Copyright (c) 2009 Nicira Networks.
+ * Copyright (c) 2009, 2010 Nicira Networks.
* Distributed under the terms of the GNU GPL version 2.
*
* Significant portions of this file may be copied from parts of the Linux
@@ -14,6 +14,7 @@
#include <linux/types.h>
#include <linux/rcupdate.h>
#include <linux/gfp.h>
+#include <linux/time.h>
#include "openvswitch/datapath-protocol.h"
#include "table.h"