Re: [ovs-discuss] Enabling user defined preprocessing definitions during compilation of OVS 1.2.2

2011-11-11 Thread Ramana Reddy
Thank you very much Ben for your reply. I have one more doubt regarding how to add our own files( Assume that it is in the ovs/lib directory and the files are dpif-mine.c and dpif-mine.h) to automake.mk file in ovs/lib directory without adding immediately after the existing ovs/lib files. I mean,

Re: [ovs-discuss] queue table priority problem

2011-11-11 Thread Ben Pfaff
Either way, it doesn't matter. The question is, can you configure the Linux kernel qdiscs to do what you want? If so, then ovs-vswitchd can (possibly with some work) configure it that way too. If not, then you'll have to do some kernel work. On Fri, Nov 11, 2011 at 03:49:21PM -0600, Shan Hu wro

Re: [ovs-discuss] queue table priority problem

2011-11-11 Thread Shan Hu
Ben, you mean i run tc directly under openflow network or normal network? - Original Message - From: "Ben Pfaff" To: "Shan Hu" Cc: "Shan Hu" , discuss@openvswitch.org Sent: Thursday, November 10, 2011 9:39:55 AM Subject: Re: [ovs-discuss] queue table priority problem Well, can you get

Re: [ovs-discuss] Enabling user defined preprocessing definitions during compilation of OVS 1.2.2

2011-11-11 Thread Ben Pfaff
On Fri, Nov 11, 2011 at 03:35:00PM +0530, Ramana Reddy wrote: > I modified some code in OVS-1.2.2 both in user space and kernel > space with my own preprocessing directives some thing like: > #ifdef Ramana > /* my code is here */ > #endif. > > Now I want to enable my code during the compilation of

[ovs-discuss] Enabling user defined preprocessing definitions during compilation of OVS 1.2.2

2011-11-11 Thread Ramana Reddy
Dear All, I modified some code in OVS-1.2.2 both in user space and kernel space with my own preprocessing directives some thing like: #ifdef Ramana /* my code is here */ #endif. Now I want to enable my code during the compilation of OVS-1.2.2. This can be done by defining #define ramana in the he