Re: MPLS

2013-04-02 Thread Sepherosa Ziehau
On Tue, Apr 2, 2013 at 9:01 PM, Sami Halabi wrote: >>At least, the per-CPU netisr and other related per-CPU network stuffs >>(e.g. routing table) work quite well as we have _expected_ (the >>measured bi-directional IPv4 forwarding performance w/ fastforwarding >>is 5.6Mpps+, w/o fastforwarding 4.6

Re: Is it possible to slow down the network interface?

2013-04-02 Thread Jason Hellenthal
Bandwidth limiting via pf or ipfw ? ipfw may be more forward to use since its usually easier to comprehend the syntax and type it directly on the command line. -- Jason Hellenthal JJH448-ARIN - (2^(N-1)) On Apr 2, 2013, at 19:25, Yuri wrote: > For the testing purposes, I would like to b

Re: Is it possible to slow down the network interface?

2013-04-02 Thread Paul A. Procacci
On Tue, Apr 02, 2013 at 04:25:58PM -0700, Yuri wrote: > For the testing purposes, I would like to be able to control the maximum > speed of the interface. ipfw (pf too?) can artifically control speeds via dummynet. There are man pages describing all of the above and should be a good starting plac

Re: Is it possible to slow down the network interface?

2013-04-02 Thread Alfred Perlstein
On 4/2/13 4:25 PM, Yuri wrote: For the testing purposes, I would like to be able to control the maximum speed of the interface. There is this command 'ifconfig re0 media 10baseT/UTP' that is supposed to lower the speed to 10Mbps. However, it makes interface unusable on my system. All connection

Is it possible to slow down the network interface?

2013-04-02 Thread Yuri
For the testing purposes, I would like to be able to control the maximum speed of the interface. There is this command 'ifconfig re0 media 10baseT/UTP' that is supposed to lower the speed to 10Mbps. However, it makes interface unusable on my system. All connections are broken, even the router ha

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Nick Rogers
On Tue, Apr 2, 2013 at 3:39 PM, Adrian Chadd wrote: > Yes: > > * you need to add it to conf/options - see if there's an opt_igb.h to > add it to, otherwise you'll need to add one; > * Make sure the driver code includes opt_igb.h; > * Then make sure you make kernel modules using either make buildke

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Adrian Chadd
Yes: * you need to add it to conf/options - see if there's an opt_igb.h to add it to, otherwise you'll need to add one; * Make sure the driver code includes opt_igb.h; * Then make sure you make kernel modules using either make buildkernel KERNCONF=X, or you set the environment appropriately so the

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Nick Rogers
On Tue, Apr 2, 2013 at 1:59 PM, Karim Fodil-Lemelin wrote: > Hi Nick, > > Thanks for the testing, I am glad I could help. Please note that by setting: > > > static int igb_num_queues = 1; > > You are effectively only using 1 TX queue from the hardware (instead of 4 or > 8) so this might not be app

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Karim Fodil-Lemelin
Hi Nick, Thanks for the testing, I am glad I could help. Please note that by setting: static int igb_num_queues = 1; You are effectively only using 1 TX queue from the hardware (instead of 4 or 8) so this might not be applicable to a generic kernel without ALTQ. Best regards, Karim. On 02/

Small patch in OFED/sdp

2013-04-02 Thread Vijay Singh
Hi, this is based on the the understanding that the SS_NBIO is a socket state, and not a state of the socket buffer. F9@[/u/vijay/bsd/CODE/cur/sys/ofed/drivers/infiniband/ulp/sdp]# svn diff Index: sdp_main.c === --- sdp_main.c (revis

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Nick Rogers
On Tue, Apr 2, 2013 at 9:17 AM, Nick Rogers wrote: > On Tue, Apr 2, 2013 at 7:47 AM, Karim Fodil-Lemelin > wrote: >> Hi Nick, >> >> Unfortunately I do not have a FBSD 9 box around where I can compile and test >> this so bear with me as this is pretty much straight out of looking at the >> source

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Nick Rogers
On Tue, Apr 2, 2013 at 7:47 AM, Karim Fodil-Lemelin wrote: > Hi Nick, > > Unfortunately I do not have a FBSD 9 box around where I can compile and test > this so bear with me as this is pretty much straight out of looking at the > source code directly (i.e it might not even compile). > > But if you

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Nick Rogers
On Tue, Apr 2, 2013 at 7:20 AM, Karim Fodil-Lemelin wrote: > Hi Nick, > > You need to set the ALTQF_READY flag inside the igb driver. Make sure you > have something like this in if_igb.c: > > ifp->if_start = igb_start; > IFQ_SET_MAXLEN(&ifp->if_snd, adapter->num_tx_desc - 1); > ifp->if

stop

2013-04-02 Thread Jovan Ross
please stop emailing me > From: freebsd-net-requ...@freebsd.org > Subject: freebsd-net Digest, Vol 522, Issue 2 > To: freebsd-net@freebsd.org > Date: Tue, 2 Apr 2013 12:00:02 + > > Send freebsd-net mailing list submissions to > freebsd-net@freebsd.org > > To subscribe or unsubscribe vi

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Karim Fodil-Lemelin
Hi Nick, Unfortunately I do not have a FBSD 9 box around where I can compile and test this so bear with me as this is pretty much straight out of looking at the source code directly (i.e it might not even compile). But if your desperate please try the following (untested) patch (applied to s

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Karim Fodil-Lemelin
Hi Nick, You need to set the ALTQF_READY flag inside the igb driver. Make sure you have something like this in if_igb.c: ifp->if_start = igb_start; IFQ_SET_MAXLEN(&ifp->if_snd, adapter->num_tx_desc - 1); ifp->if_snd.ifq_drv_maxlen = adapter->num_tx_desc - 1; IFQ_SET_READY(&ifp-

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Nick Rogers
On Tuesday, April 2, 2013, Karim Fodil-Lemelin wrote: > Hi Nick, > > Can you verify that you have at least one of those options in your kernel > config file: > > ALTQ_CBQ > ALTQ_PRIQ > ALTQ_HFSC Yes I have hfsc included in the kernel. I have other machines using altq with em(4) interfaces and si

Re: igb and ALTQ in 9.1-rc3

2013-04-02 Thread Karim Fodil-Lemelin
Hi Nick, Can you verify that you have at least one of those options in your kernel config file: ALTQ_CBQ ALTQ_PRIQ ALTQ_HFSC Regards, Karim. On 01/04/2013 8:22 PM, Nick Rogers wrote: On Mon, Apr 1, 2013 at 8:44 AM, Karim Fodil-Lemelin wrote: Hi Jack, I think this would help M. Rogers ca

Re: MPLS

2013-04-02 Thread Sami Halabi
>At least, the per-CPU netisr and other related per-CPU network stuffs >(e.g. routing table) work quite well as we have _expected_ (the >measured bi-directional IPv4 forwarding performance w/ fastforwarding >is 5.6Mpps+, w/o fastforwarding 4.6Mpps+ are you talking about the work Luigi did with Netm

SFP/SFP+ , PCI Express Gigabit Ethernet NIC Card supplier, 10G NIC, Server Adapter Intel chipsets

2013-04-02 Thread Jean
Hello, I am jean and very glad to know you from Google website .Checked your website and maybe your customer need our products so Write to you and talk about whether we could cooperate with each other in the further . we are the manufacturer of PCI Express 1G &10G Ethernet NIC Card(Server A

Sea Water Electrolyzer for Electro-Chlorination

2013-04-02 Thread nl
[1]If you can't view this mail click here.. [2] 201721370email.jpg __ [3]Unsubscribeme! [4]Update Email Address! Thi