diff options
author | Pravin B Shelar <pshelar@nicira.com> | 2013-10-03 18:16:47 -0700 |
---|---|---|
committer | Jesse Gross <jesse@nicira.com> | 2013-10-03 18:16:47 -0700 |
commit | e64457191a259537bbbfaebeba9a8043786af96f (patch) | |
tree | 579f47d3124b69a94b07878d65d27f71c4f7c9c5 /net/openvswitch/datapath.h | |
parent | f0627cfa24389cab25c67bb7ca902912216a8a2d (diff) | |
download | linux-stable-e64457191a259537bbbfaebeba9a8043786af96f.tar.gz linux-stable-e64457191a259537bbbfaebeba9a8043786af96f.tar.bz2 linux-stable-e64457191a259537bbbfaebeba9a8043786af96f.zip |
openvswitch: Restructure datapath.c and flow.c
Over the time datapath.c and flow.c has became pretty large files.
Following patch restructures functionality of component into three
different components:
flow.c: contains flow extract.
flow_netlink.c: netlink flow api.
flow_table.c: flow table api.
This patch restructures code without changing logic.
Signed-off-by: Pravin B Shelar <pshelar@nicira.com>
Signed-off-by: Jesse Gross <jesse@nicira.com>
Diffstat (limited to 'net/openvswitch/datapath.h')
-rw-r--r-- | net/openvswitch/datapath.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/openvswitch/datapath.h b/net/openvswitch/datapath.h index 2c15541f3b46..a6982ef84f20 100644 --- a/net/openvswitch/datapath.h +++ b/net/openvswitch/datapath.h @@ -27,6 +27,7 @@ #include <linux/u64_stats_sync.h> #include "flow.h" +#include "flow_table.h" #include "vport.h" #define DP_MAX_PORTS USHRT_MAX |