On Thu, Apr 15, 2010 at 03:14:06AM -0400, [email protected] wrote: > what is the significance of using two hash flow tables, kernel space > and user space? > can you please point out method where the packet verdict ( drop / > normal ) is taken after flow match ?
The userspace table is more general. It supports wildcards. The kernel table supports only exact-match. (If I were going to add support for port ranges, I would do it in the userspace table only.) There is no "verdict" per se. If a flow has no associated actions, then that effectively drops packets. _______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss_openvswitch.org
