aboutsummaryrefslogtreecommitdiff
path: root/net/openvswitch/flow_table.h
AgeCommit message (Collapse)AuthorFilesLines
2013-10-22openvswitch: collect mega flow mask statsAndy Zhou1-1/+3
Collect mega flow mask stats. ovs-dpctl show command can be used to display them for debugging and performance tuning. Signed-off-by: Andy Zhou <[email protected]> Signed-off-by: Jesse Gross <[email protected]>
2013-10-04openvswitch: Simplify mega-flow APIs.Pravin B Shelar1-9/+3
Hides mega-flow implementation in flow_table.c rather than datapath.c. Signed-off-by: Pravin B Shelar <[email protected]> Signed-off-by: Jesse Gross <[email protected]>
2013-10-04openvswitch: Move mega-flow list out of rehashing struct.Pravin B Shelar1-19/+13
ovs-flow rehash does not touch mega flow list. Following patch moves it dp struct datapath. Avoid one extra indirection for accessing mega-flow list head on every packet receive. Signed-off-by: Pravin B Shelar <[email protected]> Signed-off-by: Jesse Gross <[email protected]>
2013-10-03openvswitch: Restructure datapath.c and flow.cPravin B Shelar1-0/+91
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 <[email protected]> Signed-off-by: Jesse Gross <[email protected]>