Re: i386 compile sys/dev/ie

2011-12-28 Thread Sergey Kandaurov
On 28 December 2011 10:58, Bruce Evans wrote: > On Wed, 28 Dec 2011, Bruce Evans wrote: > >> On Wed, 28 Dec 2011, Sergey Kandaurov wrote: > > >>> These were used in probe routine and are left from the newbus rewrite. >>> I hacked ie a bit to build cleanly. [Not sure if I did this correctly.] >> >>

Re: Transitioning if_addr_lock to an rwlock

2011-12-28 Thread Ermal Luçi
2011/12/27 Gleb Smirnoff : > On Tue, Dec 27, 2011 at 11:29:02AM +0100, Ermal Lu?i wrote: > E> 2011/12/27 Gleb Smirnoff : > E> > On Thu, Dec 22, 2011 at 11:30:01AM -0500, John Baldwin wrote: > E> > J> You can find the patch for 8.x at > E> > J> http://www.freebsd.org/~jhb/patches/if_addr_rwlock.patc

Re: Firewall Profiling.

2011-12-28 Thread Luigi Rizzo
On Wed, Dec 28, 2011 at 10:26:44AM +0400, Lev Serebryakov wrote: > Hello, Luigi. > You wrote 27 ??? 2011 ?., 18:26:00: > > > plans, yes - not sure how long it will take. I have compiled > > ipfw+dummynet as a standalone module (outside the kernel) > > but have not yet hooked the code to netmap

Re: ppp.conf "set speed" && UMTS

2011-12-28 Thread Aleksandr Rybalko
On Tue, 27 Dec 2011 13:22:51 +0100 Matthias Apitz wrote: >> >> Hello, >> >> I'm using PPP with an USB UMTS stick (Huawei E1750). The speed for >> upload and download can be measured with, for example, pages like: >> http://www.speedtest.net/ >> the results vary of course a bit, but usually they

Re: Compiling only "network" part of the kernel

2011-12-28 Thread Aleksandr Rybalko
On Tue, 27 Dec 2011 11:53:23 +0530 Rajneesh Kumar wrote: >> Hi list, >> >> During my development, I want to check if my modules compile >> successfully or not. I am only changing the ARP portion and whenever >> I compile my kernel, it takes around 20mins and compiles all >> different modules als

Re: Firewall Profiling.

2011-12-28 Thread Luigi Rizzo
On Wed, Dec 28, 2011 at 10:28:44AM +0400, Lev Serebryakov wrote: > Hello, Adrian. > You wrote 28 ??? 2011 ?., 10:04:13: > > > Maybe someone should write one and open source it this time.. :) > In presence of LLVM in the base, it looks, that we should generate > native code from IPFW bytecode

Re: ppp.conf "set speed" && UMTS

2011-12-28 Thread Matthias Apitz
El día Wednesday, December 28, 2011 a las 12:06:11PM +0200, Aleksandr Rybalko escribió: > >> how those values fit with the speed of the device /dev/cuaU0.0 which > >> I set in ppp.conf to the maximum value as > >> > >> set speed 921600 > >> > >> and as well in /usr/include/sys/_termios.h I don

Re: Firewall Profiling.

2011-12-28 Thread Adrian Chadd
.. the idea was just to take the rules and generate a kld to load. There's no need to overly complicate things! Adrian ___ freebsd-net@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-net To unsubscribe, send any mail to "fre

Netgraph VLAN in VLAN (q-in-q)

2011-12-28 Thread Patrick Tracanelli
Hello, I need to setup a typical q-in-q environment, here's what I am working on: ngctl mkpeer em2: vlan lower downstream ngctl name em2:lower vlanL1 ngctl connect em2: vlanL1: upper nomatch ngctl mkpeer vlanL1: eiface vlan2589 ether ngctl msg vlanL1: addfilter '{ vlan=2589 hook="vlan2589" }' #

Re: Firewall Profiling.

2011-12-28 Thread Lev Serebryakov
Hello, Luigi. You wrote 28 декабря 2011 г., 14:42:51: > There is a problem here. You have to trust the native code > before allowing its execution in the kernel. So either you root could load any KLD. So, I think, we could trust any code "uploaded" via setsocopt()... Yes, it looks dangerous, but

RE: Netgraph VLAN in VLAN (q-in-q)

2011-12-28 Thread rozhuk . im
Hi! If you need custom encap tag, use this: http://www.freebsd.org/cgi/query-pr.cgi?pr=161908 Scheme: ng_ether <-> ng_vlan(outer/metro tag) <-> ng_vlan(inner/customer tag) <-> ng_eiface > -Original Message- > From: owner-freebsd-...@freebsd.org [mailto:owner-freebsd- > n...@freebsd.or

Re: Netgraph VLAN in VLAN (q-in-q)

2011-12-28 Thread Adrian Chadd
On 28 December 2011 11:37, wrote: > Hi! > > > If you need custom encap tag, use this: > http://www.freebsd.org/cgi/query-pr.cgi?pr=161908 > > Scheme: ng_ether <-> ng_vlan(outer/metro tag) <-> ng_vlan(inner/customer > tag) <-> ng_eiface Hm, have you found someone to review this and commit it to F