On Mon, Jul 23, 2012 at 11:02:50AM -0700, Abhishek Chanda wrote: > I have a requirement where I need to send all packets beyond a > specific size to the controller, I am pretty sure that this is very > specific to my case a not a general scenario. I am trying to modify > OVS to do this. I noticed that the vswicthd maintains all net devices, > so I think I need to change the ofproto_run function in ofproto.c. But > I could not find a place where a network device is read and the packet > is processed. Where else should I look?
What are your performance requirements? If they are low, then you can use the userspace datapath and modify lib/dpif-netdev.c. If they are high, then you will have to modify the kernel module in datapath/ to be able to do this. _______________________________________________ discuss mailing list [email protected] http://openvswitch.org/mailman/listinfo/discuss
